About 1,120,000 results
Open links in new tab
  1. sql - Copy data into another table - Stack Overflow

    How to copy/append data from one table into another table with same schema in SQL Server? Edit: let's say there is a query select * into table1 from table2 where 1=1 which creates table1 wi...

  2. Copy tables from one database to another in SQL Server

    Dec 8, 2013 · 550 SQL Server Management Studio's "Import Data" task (right-click on the DB name, then tasks) will do most of this for you. Run it from the database you want to copy the data into. If the …

  3. Export table data from one SQL Server to another

    Jun 13, 2012 · If you don't have permission to link servers, here are the steps to import a table from one server to another using Sql Server Import/Export Wizard: Right click on the source database you …

  4. sql - Oracle copy data to another table - Stack Overflow

    In the Oracle, I copy data from a backup to a new table, it doesn't work. what is the correct syntax ? Thanks select CODE, MESSAGE into EXCEPTION_CODES (CODE, MESSAGE) from …

  5. sql - Copy data from one column to other column (which is in a ...

    Jul 29, 2010 · To copy data from one table to another 1.Open the table with columns you want to copy and the one you want to copy into by right-clicking the tables, and then clicking Design.

  6. Transfer data from one database to another database

    Apr 5, 2012 · How to fetch the data from one database and insert in to another database table? I can't to do this. Please help me in transferring data from one to another.

  7. How to copy a huge table data into another table in SQL Server

    19 If you are copying into a new table, the quickest way is probably what you have in your question, unless your rows are very large. If your rows are very large, you may want to use the bulk insert …

  8. How to copy data from one table to another new table in MySQL?

    Sep 20, 2011 · I want to copy data from one table to another in MySQL. Table 1 (Existing table): aid st_id from_uid to_gid to_uid created changed subject message link Table 2 (New Table) st_id uid …

  9. sql - Copy Data from a table in one Database to another separate ...

    Basically I have a two databases on SQL Server 2005. I want to take the table data from one database and copy it to another database's table. I tried this: SELECT * INTO dbo.DB1.TempTable FROM d...

  10. Move SQL data from one table to another - Stack Overflow

    Aug 10, 2018 · I was wondering if it is possible to move all rows of data from one table to another, that match a certain query? For example, I need to move all table rows from Table1 to Table2 where their …