Viewing 15 posts - 106 through 120 (of 130 total)
I think you wont have any problems but of course always is good to have a backup of you DTS pkg.
Here is a good article about transfering DTS pkgs...you should...
January 16, 2003 at 9:03 am
kjackson in the msdb database you can find all information for a pkg.
Inside the pkg right click under properties also you can see some information Pkg GUID and version.
JFB
December 30, 2002 at 2:56 pm
Yes Borisbase, you need to create multiple conections and run it in parallel.
Johnny
December 27, 2002 at 12:32 pm
It's not a problem to rename tasks and steps but I think will be tedious to rename objects for a pkg with 30 o more steps...
Just an opinion.
Johnny
December 16, 2002 at 12:24 pm
Just for information in DTSStep_DTSActiveScriptTask_1 is a propertie ExecutionTime make sure is zero.
Johnny...
December 13, 2002 at 10:08 am
Make sure you clean the objectc at the end before start using again.
Check this example
http://www.databasejournal.com/img/spExecutePKG.sql
Johnny...
December 12, 2002 at 9:07 am
This is what I found
Johnny....
The ActiveX Scripting Host, used by all tasks that have ActiveX script capability, may become unregistered. This can lead to one of the errors below:
"ActiveX Scripting...
December 12, 2002 at 8:51 am
Inside the pkg--> mouse right click -->Disconnected Edit-->Here is all the properties for the connection and for the steps, inside each connection you can find the time out propertie.
Johnny...
December 12, 2002 at 8:46 am
December 2, 2002 at 8:31 pm
Here you have more resource in how to execute a pkg from ASP
http://www.sqldts.com/default.aspx?6,104,207,7,1
Have fun!!
Johnny
November 21, 2002 at 2:16 pm
You can call pkg from a main pkg using activeXscrip
Johnny...
'**********************************************************************
' Visual Basic ActiveX Script
'************************************************************************
Function Main()
Dim oPkg
Set oPkg = CreateObject ("DTS.Package")
oPkg.LoadFromSQLServer "sqlServerName", "sa", "pwd", , , , , "Child Pkg"
oPkg.Execute
oPkg.Uninitialize()
Set...
November 19, 2002 at 3:34 pm
Schedule a Pkg is an issue
http://support.microsoft.com/default.aspx?scid=kb;EN-US;Q269074
Also make sure you SQLagent has an administrator permission.
Johnny...
November 19, 2002 at 3:26 pm
Yes, you can using the File Transfer Protocol Task or http://FTP.exe(check BOL for how to use FTP).
Johnny..
November 19, 2002 at 3:21 pm
After you have the connection, here is an example in how to import range from excel using DTS
http://www.sqldts.com/default.aspx?6,101,243,0,1
Johnny...
November 18, 2002 at 9:36 am
Ok now I see what are you trying to do.
To track that you need to create a ActiveXscript task after the FTP task to check if files exist in the...
November 8, 2002 at 11:00 am
Viewing 15 posts - 106 through 120 (of 130 total)