Viewing 15 posts - 151 through 165 (of 212 total)
Just use the Err object.
Err.Number
Err.Description
March 19, 2007 at 11:34 am
Don't specify the file name in the FTP site address.
February 23, 2007 at 12:29 pm
Sure, use an Execute SQL Task to execute an ALTER TABLE command.
January 29, 2007 at 5:37 pm
January 26, 2007 at 5:20 pm
2 options.
1) Change the data type of the global variable from Int to Integer.
2) Replace your code with this:
intExpectedFileCount = CInt(DTSGlobalVariables("ExpectedFileCount"))
January 26, 2007 at 3:22 pm
A quick search for MDAC on microsoft.com will get you this:
January 25, 2007 at 4:47 pm
Have you tried reinstalling the latest version of MDAC?
January 25, 2007 at 3:10 pm
When, exactly, do you get this error? Opening the package, running it, or trying to save it?
January 25, 2007 at 10:52 am
I just used an FTP task to download a .zip file without any problems.
Maybe the user id you login to the ftp site with doesn't have permission to access the...
January 25, 2007 at 10:47 am
Yes it is. You don't need Access on the SQL server either.
January 17, 2007 at 11:16 am
If you right-clicked on the package to schedule it, the DTSRUN command in your job contains version information. The DTSRUN command will start out as "DTSRun /~Z" with a bunch...
January 16, 2007 at 4:27 pm
You don't need DTS for this if the data is already in a SQL table.
A simple answer is to execute an UPDATE statement in Query Analyzer:
UPDATE YourTable
SET YourFieldName = REPLACE(YourFieldName,...
January 16, 2007 at 10:23 am
Try deleting all instances of the existing SQL connection object in your package and adding a new connection back.
January 11, 2007 at 5:59 pm
I believe it uses port 21.
I've had many problems with the FTP task which led me to use an Active X script task to execute shell commands to http://FTP. ...
January 11, 2007 at 3:47 pm
Are you executing these packages manually? If so, has the account you've logged on to your network been granted access to the database on the new server?
January 11, 2007 at 3:34 pm
Viewing 15 posts - 151 through 165 (of 212 total)