Viewing 10 posts - 1 through 10 (of 10 total)
Another option is to execute the data flow task without any conversions, then execute an update afterwards, to update the data as such:
update MYTABLE set [DATE_FIELD] = CONVERT(VARCHAR(12), [DATE_FIELD], 107)...
April 28, 2009 at 11:34 am
The connection was set up with the gui through the new connections option of the "(connect to server and Get databases)" Execute sql task. You can specify the local...
April 25, 2009 at 10:56 am
It is nice to know someone else out there is working on something similar to what I am working on. Please see my sample attached. I hope it...
April 24, 2009 at 6:39 am
Not sure if this is what you are looking for, but I have used this method to create memory tables to temporarily store data.
declare @dbs as varchar(100)
declare @recmodeltbl...
April 24, 2009 at 6:12 am
You cannot use dynamic queries with openrowset. You will need to create the entire statement using a variable and then execute the variable. below are two examples:
SAMPLE 1
--------------------------------------------------------------------------------------
declare...
April 24, 2009 at 6:00 am
Try changing the datatype for batchid from string to int64.
April 24, 2009 at 5:39 am
I wound up using:
Dim strConnect As String
strConnect = "Data Source=" + Dts.Variables("User::currentserver").Value.ToString + ";Provider=SQLNCLI.1;Integrated...
April 15, 2009 at 6:58 am
Can you elaborate on how to do this please? I have a similar issue, and I just recently started using SSIS.
April 14, 2009 at 12:00 pm
Viewing 10 posts - 1 through 10 (of 10 total)