About 447,000 results
Open links in new tab
  1. SQL Server - Create a copy of a database table and place it in the …

    Mar 15, 2013 · 34 Copy Schema (Generate DDL) through SSMS UI In SSMS expand your database in Object Explorer, go to Tables, right click on the table you're interested in and …

  2. Duplicating a TABLE using Microsoft SQL Server Management

    Feb 23, 2020 · Need to duplicate a TABLE using Microsoft SQL Management Studio 2008 The TABLE needs to duplicate all table row (Primary Key) ID as well.

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

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

  5. t sql - Copying a table (and all of its data) from one server to ...

    Nov 24, 2023 · Server Name: destination server. Specify table copy or query: Copy data from one or more tables or views. Note that this will copy table as a Heap (columns and data are there, …

  6. sql - Fastest way to copy a table in mysql? - Stack Overflow

    I want to copy a table in MySQL. What is the fastest way? Like this? CREATE TABLE copy LIKE original; INSERT INTO copy SELECT * FROM original; or CREATE TABLE copy SELECT * …

  7. sql server - Copy complete structure of a table - Database ...

    May 17, 2012 · Using some methods, when you create a copy of a table you lose indexes, PK, FK, etc. For example in SQL Server I can say: select * into dbo.table2 from dbo.table1; This is …

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

  9. sql - Copy table from one database to another - Stack Overflow

    8 Another method that can be used to copy tables from the source database to the destination one is the SQL Server Export and Import wizard, which is available in SQL Server …

  10. sql - Copy table structure into new table - Stack Overflow

    Aug 3, 2009 · Is there a way to copy the structure of a table into a new table, without data, including all keys and constraints?