Viewing 10 posts - 76 through 85 (of 85 total)
currently how are you handling the footer records in 2005? Isn't the same logic working for 2012?
July 18, 2014 at 2:27 pm
Some time SSIS acts wiered. For these kind of problems, just deleted the dataflow and recreatea new one. 90% of the time the problem will be solved. If not need...
July 2, 2014 at 7:26 am
That's the crazy table with out the datecreated or modfied timestamp which brough me to this forum.
I am looking for both inserts and updates.
I am not particluar about the...
June 19, 2014 at 10:22 am
I am looking for some idea on how incremental loads can be handled in case of a failure in sql server or SSIS.
if the incremental load fails for a day...
June 19, 2014 at 10:05 am
For id 1 the the destination table is loaded fine till the startdate of 01012012.
suppose if the load fails after that for some reason and meanwhile the source table...
June 19, 2014 at 9:37 am
For this first you need to specify the variables in the ReadOnlyVariables or the ReadWrite Variables in the script task editor.Then in the Design script
Dim Variable1 As String =...
March 7, 2011 at 6:24 am
Really Nice Solution given at the link http://www.sqlservercentral.com/articles/comma+separated+list/71700/
WITH CTE AS
(
SELECT DISTINCT
empno
FROM #tab1
)
SELECT empno,
...
March 4, 2011 at 5:00 am
SELECT j.[name],
MAX(CAST(
STUFF(STUFF(CAST(jh.run_date as varchar),7,0,'-'),5,0,'-') + ' ' +
STUFF(STUFF(REPLACE(STR(jh.run_time,6,0),' ','0'),5,0,':'),3,0,':') as datetime)) AS [LastRun],
MAX(CAST(
STUFF(STUFF(CAST(sjs.next_run_date as varchar),7,0,'-'),5,0,'-') + ' ' +
STUFF(STUFF(REPLACE(STR(sjs.next_run_time,6,0),' ','0'),5,0,':'),3,0,':') as datetime)) AS [NextRun],
CASE jh.run_status WHEN 0 THEN...
September 1, 2010 at 5:17 am
Viewing 10 posts - 76 through 85 (of 85 total)