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.
我知道如何使用 SQL 管理生成脚本以在 SQL 中创建整个数据库。
我需要获得相同的脚本,但使用 T-SQL。
有人知道怎么做吗?
如果我没记错的话,那是 SQL IDE 的一个功能。要复制这一点,您必须自己进行大量反省。也许您使用过第三方工具?
要进行自省,您需要查看架构中的表和视图INFORMATION_SCHEMA以sys确定每个对象的功能,然后自己编写脚本。
INFORMATION_SCHEMA
sys
有一些帮助存储过程sp_helptext,您可以利用它们来简化这项工作。
sp_helptext