Connect String to another server

  • I need to run a stored procedure to dump data from one server to another.

    How can I get the SQL Query Anallyzer to see this other server?

  • Hi,

     

    Create a linked server and execute the query using the  (linked server name).

    ex: select * form [192.168.1.14].databasename.dbo.tablename

    u can also use select * into tablename from [192.168.1.14].databasename.dbo.tablename

    from

    Killer

  • Created the linked server.

    Why do you recomend to use the raw IP address?

  • Hi,

    I had not recommended to use the ip address , i had given u an example

    u have to use the name of linked server.it may be ipaddress or anyother name

     

    from

    Killer

Viewing 4 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic. Login to reply