Backup SQL Schema Only?

后端 未结 4 951
自闭症患者
自闭症患者 2020-12-06 09:28

I need to create a backup of a SQL Server 2005 Database that\'s only the structure...no records, just the schema. Is there any way to do this?

EDIT: I\'m trying to c

相关标签:
4条回答
  • 2020-12-06 10:05

    Toad for SQL Server does this nicely, if you're considering a commercial product.

    0 讨论(0)
  • 2020-12-06 10:23

    Why not just use SQL Management Studio to create a complete script of your database and the objects?

    0 讨论(0)
  • 2020-12-06 10:25

    Use a 3 step process:

    1. Generate a script from the working database
    2. Create a new database from that script
    3. Create a backup of the new database
    0 讨论(0)
  • 2020-12-06 10:25

    I make heavy use of this tool:
    SQLBalance for MySQL

    Unfortunately; its windows only... but works like a charm to move databases around, data or no data, merge or compare.

    0 讨论(0)
提交回复
热议问题