Viewing 12 posts - 1 through 12 (of 12 total)
Short and Sweet
Give a client the ability to go to web page.
Click create Report. Then be able to drag and drop Tables/fields to create reports.
I do understand we could use...
November 18, 2008 at 8:49 am
Here is the answer I thinks this makes me the expert now!!
Try
Dim MySQLString As String = Dts.Variables("AdjustDescription").Value.ToString
...
November 14, 2008 at 1:56 pm
Just tried this jack still getting errors.
Am I the first to execute a update statement from Script?
There is documention out there but its all over the place.
Some person does...
November 14, 2008 at 8:18 am
Made a couple of changes Jack.
I changed the index of the Dts.Connections(0).
From
Dim connName As String = Dts.Connections(0).Name
To
Dim connName As String = Dts.Connections(1).Name
From
Dim conn As Odbc.OdbcConnection = CType(Dts.Connections(1).AcquireConnection(Nothing),...
November 14, 2008 at 7:55 am
Hey Jack Something I just noticed?
You declare/Dim ConnName but never use it??
Are we missing something?
November 14, 2008 at 7:48 am
Awesome that fixed those issues.
Now It is blowing chunks on:
Dim conn As Odbc.OdbcConnection = CType(Dts.Connections(0).AcquireConnection(Nothing), Odbc.OdbcConnection)
Says:
DTS Script Task RunTime Error
Unable to cast COM object of type 'System.__ComObject' to class...
November 14, 2008 at 7:07 am
Jack Still need your help come on man its Friday we can it!!
Michael
November 14, 2008 at 6:22 am
Jack first thanks for your help.
Still have an issue on the following
If conn.Status <> Open Then
conn.Open()
End If
da.ExecuteNonQuery(sMsg)
I get blue line under conn.Status when I hover...
November 13, 2008 at 3:01 pm
Is this correct don't seam to like it?
Try
Dim MySQLString As...
November 13, 2008 at 2:30 pm
The was great into.!!!!!!!!!
Need a little though. I have doing same thing except I need to add a where clause to SQL in the Excute SQL Task!
How does that work?
I...
November 13, 2008 at 8:14 am
Man this is driving me crazy.
Ok I added a Script under a Flat File Source
Now what I need to do in this Script is get the file Name Strip...
July 17, 2008 at 2:29 pm
Ok I still need help ASAP!
I have the foreach loop container, set to For Each file in the directory your files will be stored in!
I create a Variable to hold...
July 17, 2008 at 1:36 pm
Viewing 12 posts - 1 through 12 (of 12 total)