在 SQL Server 2012 中是否有生成 "create table with index" 脚本的内置工具?
Is there a built-in tool to generate "create table with index" script in SQL Server 2012?
我想根据我的 SQL Server 2012 中现有的 table 重新创建一个空的 table,table 使用大量索引进行了优化,但是我可以'找到重建这些索引的任何选项。菜单选项 Script Table as --> DROP And CREATE To
只会创建 table 结构本身。
有什么办法可以解决我的问题吗?我很难手动构建这些索引。
连同 Table 结构需要索引
然后
转到 ->
SQLSERVER --> Tools --> Options
-->
SQL Server Object Explorer-->Scripting/Script Indexes
或
转到 --> 生成脚本 --> 它将给出 Table 带索引的脚本
-- set to "True"
我想根据我的 SQL Server 2012 中现有的 table 重新创建一个空的 table,table 使用大量索引进行了优化,但是我可以'找到重建这些索引的任何选项。菜单选项 Script Table as --> DROP And CREATE To
只会创建 table 结构本身。
有什么办法可以解决我的问题吗?我很难手动构建这些索引。
连同 Table 结构需要索引
然后
转到 ->
SQLSERVER --> Tools --> Options
-->
SQL Server Object Explorer-->Scripting/Script Indexes
或
转到 --> 生成脚本 --> 它将给出 Table 带索引的脚本
-- set to "True"