If you are just passing data between 2 databases and you're company has access to both then you can just grant privlidges from one to the other
http://stackoverflow.com/questions/153988/how-can-i-copy-data-records-between-two-instances-of-an-sqlserver-databaseIf your production SQL server and test SQL server can talk, you could just do in with a SQL insert statement.
first run the following on your test server: Execute sp_addlinkedserver PRODUCTION_SERVER_NAME
Then just create the insert statement:
INSERT INTO [PRODUCTION_SERVER_NAME].D
ATABASE_NA
ME.dbo.TAB
LE_NAME (Names_of_Columns_to_be_in
serted) SELECT Names_of_Columns_to_be_ins
erted FROM TABLE_NAME