SQL作业:如何开始?
任何人都可以帮助我在 SQL Server 代理(SQL 2008)中创建一个 SQL 作业,该作业将在特定的时间间隔(例如:每日)运行,并从状态 = 1 的表中选择记录(选择学生的姓名、年龄)和传递到另一个接受学生姓名和年龄的存储过程
Can anyone help me to create an SQL job in SQL server Agent (SQL 2008) ,which will run in a purticular time interval(Ex: Daily) and select records from a table with status=1 (select name,age from student)and pass to another stored procedure which accepts student name and age
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是我将采取的方法:
创建脚本
将脚本保存在 SQL 文件中以供进一步参考。
在 SQL Server 代理中
Here is the approach I would take:
Create the script
Save the script in a SQL file for further reference.
In SQL Server Agent