Viewing 11 posts - 1 through 11 (of 11 total)
Yes... you can do it as shown below. Or, you can also use a Exec SQL task to do the count, and put the result into a global variable. You...
June 24, 2004 at 4:11 pm
Example for a "conditional" Data Transformation Task:
SELECT A,B,C,D
--This Query does not return any data
SELECT A,B,C,D
June 24, 2004 at 12:02 pm
What kind of task do you want to execute?
If the task can be completed with a T-SQL statement, then you can use a T-SQL IF statement to either execute...
June 24, 2004 at 11:45 am
Can't help you much with the dll registration. I did have a slightly similar problem last week. My prod server stopped talking to my Domain Controller. Since it couldn't see...
June 22, 2004 at 12:06 pm
I understand your situation now. I would suggest that you do not register the DLL's on your web server. Especially since it isn't working for you.
In your ASP page, create...
June 22, 2004 at 11:55 am
Well... try this article: http://www.sqldts.com/default.aspx?225
I'm not quite sure why you are trying to "install" dts on your web server. Do you want the packages to actually run on the...
June 22, 2004 at 11:32 am
Even doing this doesn't work?
EXEC master.dbo.xp_cmdshell 'dir c:\'
June 22, 2004 at 11:15 am
This is assuming that you have your package saved as a "Local Package" on the server.
When looking at the list of Local Packages, right click on the package and hit...
June 22, 2004 at 11:06 am
Are you specifying the entire path for the dll?
From redist.txt on the SQL Server Installation CD:
INSTALLATION NOTES FOR DATA TRANSFORMATION SERVICES (DTS)
---------------------------------------------------------
The following files must be registered using the regsvr32.exe...
June 22, 2004 at 10:46 am
Why are you trying to use xp_cmdshell to execute the package? You can schedule the DTS package as a job... and then just start the job (can do this with...
June 22, 2004 at 10:41 am
Use regsvr32.exe to register each of the DLL's.
June 22, 2004 at 10:35 am
Viewing 11 posts - 1 through 11 (of 11 total)