Viewing 15 posts - 11,461 through 11,475 (of 13,871 total)
Good luck and happy coding! 🙂
April 20, 2011 at 7:01 am
If your data looks like this (for example):
ID, Text, Date
1, Good record, 2011-01-01
2, Bad rec
ord, 2011-02-02
3, Another good record, 2011-01-3
4, A very bad
bad
bad
record, 2011-04-04
You are going to have to pre-process...
April 20, 2011 at 6:16 am
There is another way.
Create an Excel spreadsheet which contains only field headings/formatting, but no data. This is your template - put it on a network share somewhere.
Then, rather than deleting...
April 20, 2011 at 4:49 am
I just read your original post again and maybe I misunderstood what you are doing.
Are you trying to export to a flat file or import from a flat file?
If you...
April 20, 2011 at 4:45 am
Then you are up a certain creek and short on paddles.
As I mentioned, how can SSIS distinguish between an embedded CRLF and an end-of-row CRLF?
April 20, 2011 at 3:33 am
Nice solution Jeff - except the priority is supposed to be 1,3,2,4 not 1,2,3,4 according to the orig post, so simple mod required.
--Edit, I was wrong. In the case where...
April 20, 2011 at 3:08 am
Does the comments column have a text delimiter? I mean, is it surrounded by quotes, perhaps?
Without this, I cannot see how SSIS could ever distinguish between a new row (CRLF)...
April 20, 2011 at 2:38 am
sqlsponge2 (4/19/2011)
I have an SSIS package that is running that is creating an output file that is to big to read in on a third party system. I am...
April 19, 2011 at 10:34 am
--Edit
What does the package do?
If you put a script task as the very first task in the script (and write a log file / database entry) at least you will...
April 19, 2011 at 7:39 am
Jeff Moden (4/18/2011)
Lisset (4/18/2011)
April 19, 2011 at 2:16 am
You're kidding, right?
Sentence 1 from the link:
The dtexec command prompt utility is used to configure and execute SQL Server Integration Services packages.
How were you going to run the package...
April 18, 2011 at 2:47 pm
Have a look at the on-line help here.
April 18, 2011 at 2:40 pm
PSB (4/18/2011)
User::FileId is a variable that holds the FileID of the file loaded.
And presumably an integer (given that you are performing maths on it)?
In which case, why not something like:
...
ABCD_Call_ID...
April 18, 2011 at 10:32 am
By the way, that query syntax is a little unusual. What does @[User::_FileID] contain?
April 18, 2011 at 10:13 am
Create an ExecuteSQL task and use an Expression to define the SQL to be executed - you'll be able to build the expression to include your variables as required.
April 18, 2011 at 10:11 am
Viewing 15 posts - 11,461 through 11,475 (of 13,871 total)