September 13, 2006 at 1:46 pm
This is my first attempt to setup a scheduled DTS package. I have figured out how to build the package, but I do not know how to schedule the package. I noticed that there is a "schedule" option in the DTS wizard but I also know about the SQL Server Agent for setting up "Jobs". Does anyone have a simple answer for this?
September 13, 2006 at 1:58 pm
They both work....
I'd use the dts option to schedule the job, then if needed I'd go edit the schedule with the agent (kess work that way). You'll understand once you see the generated code .
September 13, 2006 at 1:58 pm
Hi Steve,
As you said in your post, you need to select "schedule" option in the DTS and select the time for execution of your package. It will automatically create a job with the encrypted value for the DTS package. This can be viewed from the job properties(steps).
Hope this helps.
Thanks
Lucky
September 13, 2006 at 2:29 pm
Found it, works fine. Thanks for the help.
September 14, 2006 at 6:16 am
You can also right click the DTS package itself and choose Schedule Package - no need to open the DTS package.
It's in Enterprise Manager under Data Transformation Services, Local Packages.
(That's the initial package schedule creation. Go into SQL Server Agent Jobs to change the schedule, etc. )
September 15, 2006 at 10:03 am
Steve,
The right click schedule is great start to initially get the package scheduled. But to take advantage of all of DTSRUN's command options, say passing a global variable on the DTSRUN command, familiarity with DTSRUNUI.EXE would be very helpful. Also with a multi step job if the encrypted DTSRUN commands, if the steps are not documented carefully then 6 months later as the job is edited again figuring out which DTS package is being run in that encryted command may be frustrating.
A great feature of the DTSRUNUI utility is its ability to generate the DTSRUN command. Here is a an excellent article on how to generate a DTSRUN command. http://www.sqldts.com/default.aspx?301
Remember that the DTSRUN in the job step can usually use /E (Windows Authentication) since the DTSRUN is running on the SQL Server and as the user defined in the SQL Server service LogOn tab.
Norman
get DTS Package Search at http://www.gerasus.com/
April 27, 2007 at 6:45 am
Thanks for all the help and advice. I have what I need on this issue.
SR
Viewing 7 posts - 1 through 6 (of 6 total)
You must be logged in to reply to this topic. Login to reply