Viewing 12 posts - 1 through 12 (of 12 total)
I suggest you try using the Export Column component. You will need to construct a single Derived Column of type Text containing the output rows + CR/LF delimiters, another Derived...
November 23, 2007 at 7:01 pm
P.S. You will have to include the escape sequence for Carriage Return, Line Feed "\ r \ n" [no spaces - I have to include them or the sequence disappears...
October 5, 2007 at 8:23 pm
You can use the Export Column component to do this. You will need to construct a single Text Derived Column containing the Comma-Separated values, and use the Number column...
October 5, 2007 at 8:14 pm
You can use escape sequence literals within SSIS expressions - e.g. \'n' for New line, \r for Carriage return. [Ignore the quotes when coding in SSIS - I had to...
October 1, 2007 at 5:44 am
Hi Daniel,
Are you using SQL Server Standard edition ? Per BOL "In SQL Server 2000 Enterprise Edition, the query optimizer will automatically consider the indexed view. To use an indexed...
July 28, 2006 at 3:29 am
Since the copy is working fine when run on it's own, or when run manually from the main package, the first place I would be looking is the global variables...
July 16, 2006 at 1:54 am
Not sure if it is the whole problem but it looks like you are not passing the parameters to dtsrun correctly. The correct syntax is:
/A global_variable_name:typeid=value [where typeid = 8...
July 1, 2006 at 7:31 pm
There is a list of DTS documentation products and other useful DTS tools at http://www.sqldts.com/default.aspx?401
July 1, 2006 at 7:11 pm
You still have a potential problem with the Global Variable setting - hence your instruction:
' **** IMPORTANT ****
' Before promoting a DTS from DEV to any other environment you MUST...
June 12, 2006 at 6:25 am
Try DTSGlobalVariables.Parent.Connections("[Put the Connection Name here]").ConnectionProperties("[Put the Property Name Here]").Value
I think this is what you are looking for
May 27, 2006 at 2:51 pm
There is a possible solution in the Forum article entitled
DTS error when attempting to import from MS Access into SQL Server
posted 10/5/2005
by "Chris":
as a workaround, I took the...
May 26, 2006 at 8:14 pm
You could also try avoiding the update altogether by importing your SAS data into a staging table, then having a second transformation that inserts the joined data into Claimdata i.e...
February 11, 2006 at 11:22 pm
Viewing 12 posts - 1 through 12 (of 12 total)