微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

sql-server – SQL Server中是否存在“包含文件”的概念?

我有一组需要按特定顺序运行的脚本.我想创建一个“主文件”,列出所有其他文件及其正确的顺序.基本上就像来自C或ASP / VBScript的包含文件.

解决方法

如果您使用的是 SQLCMD,则可以使用:r FileName包含单独的.sql文件.

:r FileName

Parses additional T-sql statements and sqlCMD commands from the file specified by FileName into the statement cache. FileName is read relative to the startup directory for Visual Studio. The file is read and executed after a batch terminator is encountered. You can issue multiple :r commands. The file can include any sqlCMD command,including the batch terminator that is defined in Tools,Options. You can use :r in a pre-deployment or post-deployment script to include other scripts.

原文地址:https://www.jb51.cc/mssql/79739.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐