Schedule Automatic SQL Script | SQL Server Performance Forums

SQL Server Performance Forum – Threads Archive

Schedule Automatic SQL Script

Hi All, I need to execute a SQL Script that fetches Data from one table in a database and Insert into a table in a different database. This needs to happen everymorning 10:00 AM automatically without the manual intervention. How do I Schedule this job to happen automatically? Kindly help me out. Thanks in Advance.
Manoj.
Use Enterprise Manger, drill down to Management, expand SQL Server Agent, click on Jobs… that’s where you should find any Jobs you’ve created. Also referhttp://www.databasejournal.com/features/mssql/article.php/2197881 this article for further information. Satya SKJ
Moderator
http://www.SQL-Server-Performance.Com/forum
This posting is provided “AS IS” with no rights for the sake of knowledge sharing.
Hi Satya, Thanks a lot for the help. I created a procedure and scheduled it in the same way you had given me. 1) Created a procedure
1) Right clicked on jobs
2) Clicked on New Job
4) Did a Job Step as "Exec <<database.dbo.PROCNAME>>"
5) Did a time schedule
and it worked. Thanks again. Manoj.
]]>