Viewing 7 posts - 1 through 7 (of 7 total)
Just noticed that include is different.
March 29, 2012 at 11:58 pm
Seems I was able to figure out the problem. Added MaximumErrorCount = 100 for Loop Container and it doesn't stop now.
February 21, 2012 at 12:04 am
steve block (7/22/2010)
Or you could Add a Precedence Constraint that on Failure branches your flow to harmless tasks.Steve
It doesn't work for me. I checked StopOnFailure = False. FTP task becomes...
February 20, 2012 at 11:35 pm
Edward C Smith (7/5/2007)
I read your post as I'm trying to do something similar. I have a large repository of what appear to be paradox table files from our...
December 3, 2011 at 10:52 pm
Here is the table:
IF OBJECT_ID('tBufOMIM') IS NULL
BEGIN
CREATE TABLE tBufOMIM (
NOINT NOT NULL PRIMARY KEY,
TIVARCHAR(MAX)NULL,
TXVARCHAR(MAX)NULL,
SAVARCHAR(MAX)NULL,
CSVARCHAR(MAX)NULL,
CNVARCHAR(MAX)NULL,
RFVARCHAR(MAX)NULL,
CDVARCHAR(MAX)NULL,
EDVARCHAR(MAX)NULL,
MNVARCHAR(MAX)NULL,
AVVARCHAR(MAX)NULL
)
PRINT 'Table tBufOMIM was created'
END
GO
Format file:
<BCPFORMAT xmlns="http://schemas.microsoft.com/sqlserver/2004/bulkload/format" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<RECORD>
<FIELD ID="1" xsi:type="CharTerm" TERMINATOR="*RECORD**FIELD* NO"/>
<FIELD...
October 3, 2011 at 11:11 pm
As it turned out, some fields can have null values. So, the correct sample will be:
*RECORD*
*FIELD* NO
1
*FIELD* TI
...
*FIELD* TX
...
*RECORD*
*FIELD* NO
2
*FIELD* TI
...
*FIELD* TX
...
*FIELD* CN
...
*THEEND*
I've tried to make a format file...
October 3, 2011 at 2:01 am
Viewing 7 posts - 1 through 7 (of 7 total)