I want to copy data from one server to another and not sure how to do that (I already have the right tables, created using Script Table As > Create To > New Query).
Maybe:
SELECT * FROM OPENDATASOURCE('SQLNCLI','Data Source=192.168.10.1\dbName;')
Or:
exec sp_addlinkedserver @server = '192.168.10.1'
SELECT * FROM [192.168.10.1].[dbo].[myTableName]
Is IP address (and of-course username & password..) enough ?
Query againsts on linked server