Viewing 15 posts - 76 through 90 (of 223 total)
Yes thats what I want to do, but how to I make One SSIS Package call another?
March 23, 2009 at 2:45 am
Thanks very much for the detailed guide!!!
Error
Error: 0xC001F009 at Package4: The type of the value being
assigned to variable "User::Date" differs from the current variable type. Variables may not change...
March 23, 2009 at 2:44 am
Thanks,
I am a bit new to SSIS but I have managed to do:
- create a variable
- create an 'Execute SQL Task' that will contain the query below
SELECT message...
March 20, 2009 at 4:30 am
thanks for your time, I seem to be getting an error on the SCRIPT:
Error 30456: 'IntDataTypeDate_isNull' is not a member of the ScriptComponent_035fc3ff0ed01a2264ac......
March 20, 2009 at 4:12 am
What im doing in the SSIS:
Run_Date(INT) --DataConversion--> Run_Date(DT_STR) --DataConversion--> Run_Date(DT_Date) --INSERT INTO TABLE--> FAILS
Error:
It fails on the last DataConversion, with the error:
Error: 0xC02020C5 at Dealbook Job History, Data Conversion 1...
March 20, 2009 at 3:59 am
Why are you converting it to a string just to convert it back to an int?
What do you mean?
The SOURCES table stores the run_date as INT
In the destination table...
March 20, 2009 at 2:16 am
Thansk, you guys have been very helpful.
the problem is, the source table sysjobhsitory has the run_date set as INT.
In my SSIS I converted it to a string first, then into...
March 19, 2009 at 11:20 am
Right slightly lost now.....
Does this mean I have to go back to the source change the import type from INT to Date?
The Source data is coming from the system database...
March 19, 2009 at 10:51 am
Hi Lynn,
Its as the in of the SP:
INSERT INTO @Jobs_failed
select j.name, jh.message, jh.run_date
from jobs j
join DealbookJobHistory jh
on j.job_id = jh.job_id
WHERE jh.message like '%Failed%'
and jh.step_id = 1
March 19, 2009 at 10:36 am
Thanks, what does the following line do?
JOIN (SELECT job_id, MAX(curr_date) curr_date
March 19, 2009 at 8:41 am
Thanks buddy, very helpful!!
Would this be a SP?
As I said, the jobs & job_hist tables will be populated by my SSIS so im just intested in exporting the data from...
March 19, 2009 at 7:42 am
Thanks Flo,
Can you brake that code down so I can understand it?
I can see your doing an insert in Jobs an Job_hist, this insert is already being odown via my...
March 19, 2009 at 7:17 am
To recap:
This is what I want:
Source Table
Date Column - 20090308 (int)
Convert to:
Destination Table
Date Column - 2009-03-08 (Date)
I have set up a Data flow which:
1. picks the data up from...
March 19, 2009 at 5:16 am
Thanks but i know nothing about Microsoft Visual Basic .NET
March 19, 2009 at 2:19 am
Im getting the following error:
Incorrect syntax near ' ' -
March 18, 2009 at 9:59 am
Viewing 15 posts - 76 through 90 (of 223 total)