About 676,000 results
Open links in new tab
  1. SQL Server 2012 copy database without data - Stack Overflow

    We have a SQL Server 2012 database with test data in it that we used to develop a website. We will shortly need to empty the database and import the real data, but we have changed the …

  2. Copy a SQL Server database with just the objects and no data ...

    Feb 3, 2021 · Hello, I need to make a copy of a large SQL 2014 Prod DB and restore it onto another server Test instance but without the data. (It's to large to do regular DB backup and …

  3. DBCC CLONEDATABASE (Transact-SQL) - SQL Server | Microsoft …

    The following example creates a schema-only clone of the AdventureWorks2022 database without statistics and Query Store data that is verified (SQL Server 2016 (13.x) Service Pack 2 …

  4. Use the Copy Database Wizard - SQL Server | Microsoft Learn

    Jun 16, 2025 · Applies to: SQL Server The Copy Database Wizard moves or copies databases and certain server objects easily from one instance of SQL Server to another instance, with no …

  5. Copy a Azure SQL DB with just the objects and no data

    Sep 26, 2023 · How can we copy the objects of an Azure SQL Database from one tenant to another tenant without copying the data, just the structure? I was able to copy the database …

  6. sql - Copy Database from server to local DB (I need copy only …

    Jul 16, 2020 · Copy Database from server to local DB (I need copy only structure, without data) Asked 5 years, 3 months ago Modified 5 years, 3 months ago Viewed 2k times

  7. sql server - How to copy a database using scripts only, no bak, no …

    Oct 26, 2017 · a) create an empty database with a filestream filegroup on the customer's server b) with a script, create the schema (at least tables, views, sp, sf) on the copied DB c) with a script …

  8. MS SQL 2008 - Create a copy of the database without the data

    Oct 12, 2010 · In MS SQL Server 2008 R2, how do I create a new database based on the schema of the old one, but without copying any of the data along with it? I am using SQL Server …

  9. Create clone copy of table without data in SQL Server

    Dec 3, 2017 · How can I create clone copy of table without data? Because I just want to copy a definition of table not data. I tried below but it is copying data as well Select * into …

  10. SQL Server - Create a copy of a database table and place it in the …

    Mar 15, 2013 · 206 I have a table ABC in a database DB. I want to create copies of ABC with names ABC_1, ABC_2, ABC_3 in the same DB. How can I do that using either Management …