Viewing 15 posts - 12,346 through 12,360 (of 13,870 total)
I'd be tempted to heed the error message and give the column a name:
SELECT '00' + CONVERT(VARCHAR(8),GETDATE(),112)+
' WEEKLY DATA FEED'+
REPLICATE(' ', 190) Col1
--etc etc
January 15, 2010 at 1:03 am
The word 'here' in my previous post is a hyperlink.
January 14, 2010 at 9:18 am
Good old Excel. First place to start might be with IMEX=1 in your connection string. See here for more info.
January 14, 2010 at 6:59 am
RonKyle (1/12/2010)
January 13, 2010 at 2:04 am
You cannot. There is no data pipeline at the control flow level, so a conditional split has no context in which to run.
What are you trying to do?
January 13, 2010 at 1:58 am
As SSIS is largely meta-data driven and you are not able to provide this meta-data - because it is not known in advance - you will find it difficult (now...
January 13, 2010 at 1:55 am
Yes it does. Give it a try and see how you get on.
January 13, 2010 at 1:42 am
In your example, there is no tab after char1, the 'code', yet the rest of the data has tabs delimiting the fields. So it's really not clear - it looks...
January 12, 2010 at 2:20 pm
susanaw007 (1/12/2010)
Thanks for the information. but i'm creating a package programmatically....
I don't see why that precludes the use of a query for the source, but I guess you have your...
January 12, 2010 at 4:04 am
Change your source from a table or view to a query and perform a CAST there ...
January 12, 2010 at 1:45 am
Welsh Corgi (1/11/2010)
I can't confirm that because the BO is out of town.
I have always been able to set standards for naming conventions and file formats but I...
January 11, 2010 at 1:11 pm
Why not just set a breakpoint or two and then run the package? You'll get into a full, interactive debugging session, much richer than writing out the odd result to...
January 11, 2010 at 1:00 pm
Use a combination of LEFT, CHARINDEX and SUBSTRING to split the field up.
January 11, 2010 at 12:56 pm
Viewing 15 posts - 12,346 through 12,360 (of 13,870 total)