Can i copy data from one database table to another already existing database table sql server?

Azuraith

So i have 2 very similar databases, they are identical except for the data that exists in the tables. I want to copy the data from the EQUIP_MODEL table that exists in the PILOT database to the EQUIP_MODEL table that exists in the DOMAIN database.

Is this even possible? or do i have to do manual inserts for all the data?

Pரதீப்

You can use fully qualified names in Insert statement

INSERT INTO DOMAIN.SCHEMANAME.EQUIP_MODEL (col1,col2,col3...)
SELECT col1,col2,col3.. FROM PILOT.SCHEMANAME.EQUIP_MODEL

To get the foreign key values (not the exact code you have to alter based on column name and mapping)

INSERT INTO DOMAIN.SCHEMANAME.EQUIP_MODEL
            (id,col2,col3)
SELECT sp.id,
       col2,
       col3
FROM   PILOT.SCHEMANAME.EQUIP_MODEL em
       JOIN PILOT.SCHEMANAME.Prent_table p
         ON em.id = p.id
       JOIN DOMAIN.SCHEMANAME.parent_table sp
         ON sp.somename_number_col = p.somename_number_col 

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

how to copy only data from one database table to another database existing table in sql server

From Dev

PostgreSQL - copy data from one table, database, server to another table, another database, server

From Dev

Copy table data from one database to another

From Dev

Copy table data from one database to another

From Dev

copy data from one table to another table in another database

From Dev

Copy table from one database to another database

From Dev

Copy data from table and insert in different SQL Server database

From Dev

Bulk insert in SQL Server database from one table to another

From Dev

How can I copy one column to from one table to another in SQL Server

From Dev

How to copy data from one table into another in Microsoft SQL Server

From Dev

SQL Server Copy Random data from one table to another

From Dev

How to transfer data from one table of a database to a table in another database

From Dev

How to transfer data from one table of a database to a table in another database

From Dev

Insert Data from one table to another leaving the already existing rows

From Dev

Copy Data from a table in one Database to a wordpress database

From Dev

Copy rows of data from one table to another table in same database using pgadmin

From Dev

Why Database table did not update even I copy all files of that table from another server?

From Dev

How to copy data from one database/table to another Remote one by it's Ip

From Dev

How can I parse data from one column in a table and put the result into another with SQL Server?

From Dev

How do i copy data from one table to another table?

From Dev

How do i copy data from one table to another table?

From Dev

copy data from one table to another @mysql database every 5 secs

From Dev

Copy records from one database to another (Teradata to SQL Server)

From Dev

Copy Data from one table to another table

From Dev

Copy column from one database to another and insert data depends on condition in SQL Server

From Dev

Copy a table with data from one MySQL server to another

From Dev

Insert records from one table to another without violating any constraint in SQL Server database

From Dev

how to copy data from multiple rows of one table to another in sql server?

From Dev

Move data from one table to another in the same Database

Related Related

  1. 1

    how to copy only data from one database table to another database existing table in sql server

  2. 2

    PostgreSQL - copy data from one table, database, server to another table, another database, server

  3. 3

    Copy table data from one database to another

  4. 4

    Copy table data from one database to another

  5. 5

    copy data from one table to another table in another database

  6. 6

    Copy table from one database to another database

  7. 7

    Copy data from table and insert in different SQL Server database

  8. 8

    Bulk insert in SQL Server database from one table to another

  9. 9

    How can I copy one column to from one table to another in SQL Server

  10. 10

    How to copy data from one table into another in Microsoft SQL Server

  11. 11

    SQL Server Copy Random data from one table to another

  12. 12

    How to transfer data from one table of a database to a table in another database

  13. 13

    How to transfer data from one table of a database to a table in another database

  14. 14

    Insert Data from one table to another leaving the already existing rows

  15. 15

    Copy Data from a table in one Database to a wordpress database

  16. 16

    Copy rows of data from one table to another table in same database using pgadmin

  17. 17

    Why Database table did not update even I copy all files of that table from another server?

  18. 18

    How to copy data from one database/table to another Remote one by it's Ip

  19. 19

    How can I parse data from one column in a table and put the result into another with SQL Server?

  20. 20

    How do i copy data from one table to another table?

  21. 21

    How do i copy data from one table to another table?

  22. 22

    copy data from one table to another @mysql database every 5 secs

  23. 23

    Copy records from one database to another (Teradata to SQL Server)

  24. 24

    Copy Data from one table to another table

  25. 25

    Copy column from one database to another and insert data depends on condition in SQL Server

  26. 26

    Copy a table with data from one MySQL server to another

  27. 27

    Insert records from one table to another without violating any constraint in SQL Server database

  28. 28

    how to copy data from multiple rows of one table to another in sql server?

  29. 29

    Move data from one table to another in the same Database

HotTag

Archive