Viewing 4 posts - 1 through 4 (of 4 total)
What are you trying to achieve? In a sql script, you have local variables that you can use if writing a stored procedure.
August 17, 2004 at 9:02 am
The dts should be set up this way:
Connection1--->Connection2--->ActiveX--->Send Mail Task
And this is what should be in the ActiveX Script:
Function Main()
dim conn, rs
set conn = CreateObject("ADODB.Connection")
set rs = CreateObject("ADODB.Recordset")
DSN1 = "Provider=sqloledb;"...
August 17, 2004 at 8:57 am
If I understand what you're asking:
You want to be able to manipulate a Date global Variable to where you can enter in the date (if the date isn't coming from...
August 17, 2004 at 5:54 am
This would be a good candidate for an ActiveX Script:
http://www.sqldts.com/default.aspx?235
Also, you want to put the number of records in a global variable and reference that global variable in the...
August 17, 2004 at 5:42 am
Viewing 4 posts - 1 through 4 (of 4 total)