自动创建 SQL Server 作业
我正在编写 SQL Server 部署脚本,它会在特定的 SQL Server 服务器/实例上自动创建 SQL Server 作业。 我发现我可以通过使用 script job as => 来提取可用于自动创建 SQL Server 作业的 sql 语句。 创建至。
我的困惑是,我发现数据库名称和所有者帐户名称被硬编码在生成的 SQL 脚本中。 当我使用sqlcmd在另一台计算机上执行sql脚本来执行部署时,数据库名称和所有者帐户名称可能不同,因此我需要一种方法将数据库名称和所有者帐户名称传递给SQL Server作业创建脚本并让脚本使用提供的数据库名称和所有者帐户名称(硬编码的除外)。
有什么想法如何做到这一点吗?
I am writing SQL Server deployment scripts which create SQL Server job automatically on a specific SQL Server server/instance. I have found that I can extract the sql statement which can be used to create SQL Server job automatically by using script job as => Create To.
My confusion is that, I find the database name and Owner account name are hardcoded in the sql scripts generated. When I am using sqlcmd to execute the sql scripts on another computer to perform deployment, the database name and Owner account name may be different, so I need a way to pass the database name and Owner account name to the SQL Server job creation script and let the script use the provided database name and Owner account name (other than hard coded ones).
Any ideas how to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
我什至做得更好...创建一个不带参数的存储过程,并在存储过程内部执行以下操作:
然后将 @servername 分配给 sp_add_jobserver 的 server_name 参数,如下所示:
为了创建创建 sql 作业的存储过程,首先使用 sql Management Studio 创建它,然后右键单击该作业并执行“删除并创建”...
I even got it better ...Create a stored procedure without a parameter and inside of the stored proc do :
Then assign @servername to the server_name parameter of sp_add_jobserver as in below:
In order to create stored proc that creates a sql job, first create it using the sql management studio and then right click on the job and do Drop and Create....
我今天遇到了同样的问题,解决方法很简单
执行以下
创建一个存储过程,该存储过程使用参数 @serverName nvarchar(128) 创建作业
现在很简单,您可以使用以下命令获取服务器名称
执行存储过程来创建作业来获取服务器名称
就是这样。
我正在使用 Visual Studio 数据库项目,并且在部署后脚本中执行了步骤 2 和 3
I was coming across the same problem today and how I tackle it is so simple
Do the following
Create a stored proc that creates the job with parameter @serverName nvarchar(128)
Now easy, you can get the server name using the following
Execute the stored proc to create your job
That is it.
I am using visual studio db project and I did steps 2 and 3 int the postdeployment script
除了上面 BrianD 的回答之外,您可以在 sqlcmd 级别定义变量(实际上更像预处理器宏而不是变量); 它们用括号括起来,并带有前导 $ 符号:
这允许您使用 -v 开关将命令行上的信息传递给 sqlcmd:
Futher to BrianD's answer above, you can define variables (actually more like preprocessor macros than variables) at the sqlcmd level; these are enclosed in parentheses with a leading $ sign:
This allows you to pass the information on the command line to sqlcmd with the -v switch:
使用 BrainD 的示例,我想指出他使用变量的想法很好,但是,使用动态 SQL 将它们传递给存储过程肯定不是正确的方法。 相反,使用存储过程的参数将变量直接传递到需要它们的地方。
Using the example from BrainD I'd like to point out that his idea of using variables is just fine, however, passing them to the stored procedures using dymanic SQL most certainly isn't the right approach. Rather, use the parameters of the stored procedures to directly pass the variables directly to where they are needed.
您需要动态创建作业脚本然后执行它。
您可以尝试类似以下的操作,或者将其更改为带有作业所有者和数据库名称的输入参数的存储过程。
希望这能让您朝着正确的方向前进。 如果您需要更多帮助,请告诉我。
You would need to dynamically create the job script and then execute it.
You could try something like the following or change this to a stored proc with input parameters for the job owner and database name.
Hopefully this will get you going in the right direction. If you need more help let me know.