Viewing 15 posts - 12,106 through 12,120 (of 13,874 total)
I'm sorry but I don't have the time to write all of that stuff out right now.
But - regarding the Resultset property - this is a property of your Execute...
May 6, 2010 at 8:18 am
It seems to me that you don't really know what is going wrong here - just 'something'.
If you hard code the parameter values, does the query work OK? Are you...
May 6, 2010 at 7:51 am
I'm afraid you threw me off the track when you called it a global variable.
VariableDispenser gives you access to package- or task-scoped variables - not locally declared variables within your...
May 6, 2010 at 4:28 am
Something like this, maybe:
Dim f As String
For Each f In System.IO.Directory.GetFiles(path)
System.IO.File.Delete(f)
Next f
May 5, 2010 at 12:57 pm
Sounds like your row delimiter may be set up incorrectly.
What appears at the end of every row of your source data?
May 5, 2010 at 9:45 am
You can assign values to variables within a Script Component if you use the VariableDispenser class.
See more here.
May 5, 2010 at 8:43 am
Please explain what you mean by "manually executed through SQL Server"
I guess you mean as part of a job. Are you logged in to SQL Server as the same user...
May 5, 2010 at 8:33 am
da-zero (5/5/2010)
DTS is the old version of SSIS. DTS uses .dts files, SSIS uses .DTSX files.
You can compare it with .xls for Excel 2003 and...
May 5, 2010 at 6:44 am
You cannot open dtsx files in DTS.
May 5, 2010 at 4:21 am
May 5, 2010 at 3:18 am
Use the connection you defined in Connection Manager in the Script Task - that is the way to work.
May 5, 2010 at 1:01 am
I am assuming that you tried creating a new connection using Connection Manager?
What happened when you selected New Connection / ODBC? Were you not able to see your system DSN...
May 5, 2010 at 12:40 am
Are you using a 64-bit machine by any chance?
May 5, 2010 at 12:12 am
Put a data viewer after your source to check that the 'bad' records make it into the pipeline OK. Look for 'special' characters - commas, quotes, empty fields/NULLs, tabs, CRs.
Maybe...
May 4, 2010 at 11:28 pm
Do your backups and restores using Execute SQL tasks.
After backing up on server 1 you'll need to transfer the file to server 2 before it is restored. I would probably...
May 4, 2010 at 11:08 am
Viewing 15 posts - 12,106 through 12,120 (of 13,874 total)