Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个具有索引的数据库和没有索引的该数据库的相同副本。如何仅从原始数据库生成索引并将它们导入副本数据库?
你可以这样做
任务 -> 生成脚本 -> 选择特定的数据库对象 -> 表。 然后在高级中选择Indexes并取消选择其他人。 您还需要 select Include if NOT EXISTS,因此在执行脚本时 sql-server 不会创建已经存在的表。
Indexes
Include if NOT EXISTS