Results 1 to 4 of 4

Thread: SQL transfers between databases

  1. #1
    T Arrowood Guest

    SQL transfers between databases


    Is is possible to insert into a databse table values from a table having the same format that resides in another database/table ??

    I have tried :

    xx = database a (source), yy=database b (Target)

    select * into yy.dbo.target_Table from xx.dbo.source_table where.......

    this does not seem to work.. any suggestions ???

  2. #2
    Craig Guest

    SQL transfers between databases (reply)

    You would have to define each server to the other and use RPC. See books online for setup.


    ------------
    T Arrowood at 6/21/99 11:31:07 AM


    Is is possible to insert into a databse table values from a table having the same format that resides in another database/table ??

    I have tried :

    xx = database a (source), yy=database b (Target)

    select * into yy.dbo.target_Table from xx.dbo.source_table where.......

    this does not seem to work.. any suggestions ???

  3. #3
    SATYA Guest

    SQL transfers between databases (reply)

    if databases are in same server...

    insert into yy.dbo.target_Table from xx.dbo.source_table where.......




    ------------
    Craig at 6/21/99 1:02:30 PM

    You would have to define each server to the other and use RPC. See books online for setup.


    ------------
    T Arrowood at 6/21/99 11:31:07 AM


    Is is possible to insert into a databse table values from a table having the same format that resides in another database/table ??

    I have tried :

    xx = database a (source), yy=database b (Target)

    select * into yy.dbo.target_Table from xx.dbo.source_table where.......

    this does not seem to work.. any suggestions ???

  4. #4
    Ed Alexander Guest

    SQL transfers between databases (reply)

    If your databases are on the same server, you should be able to use:

    insert into db1..table1(field1, field2,.....)
    select field1, field2,...... from db2..table2


    If the databases are on separate servers, see help on RPC as stated in a previous reply.


    ------------
    T Arrowood at 6/21/99 11:31:07 AM


    Is is possible to insert into a databse table values from a table having the same format that resides in another database/table ??

    I have tried :

    xx = database a (source), yy=database b (Target)

    select * into yy.dbo.target_Table from xx.dbo.source_table where.......

    this does not seem to work.. any suggestions ???

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •