About 50 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. 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 …

  4. 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...

  5. 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 …

  6. 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 …

  7. Copy rows from one table to another, ignoring duplicates

    Again row3 has the same record but its 3 columns have the same data and remaining all are null. While inserting unique records from source table to destination table, how can I update the record with the …

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

    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 usern...

  9. sql - How can I copy data from one column to another in the same …

    Jun 10, 2011 · Is it possible to copy data from column A to column B for all records in a table in SQL?

  10. sql - Transfer data from one database to another database - Stack …

    Jul 11, 2020 · 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.