Viewing 15 posts - 12,121 through 12,135 (of 13,870 total)
In the part where you specify what the field will contain, just add some literal text as your expression, eg
"Server1"
This will then be available to you in the data pipeline,...
April 30, 2010 at 8:20 am
Hey, you're not that new! I told you how to add derived columns yesterday - see here
http://www.sqlservercentral.com/Forums/Topic912502-148-1.aspx
Phil
April 30, 2010 at 8:11 am
Have you tried debugging the Script Task to see whether that gives you any clues about what is happening?
April 29, 2010 at 10:27 am
So what do Email_Start and Email_Success do?
April 29, 2010 at 10:07 am
Surely your e-mail task needs to be outside of the Sequence container, after the Collect All Errors task?
April 29, 2010 at 9:51 am
Great stuff - glad to help & thanks for posting back.
April 29, 2010 at 9:37 am
Or derive a string in the universal format YYYY-MM-DD hh:mm:ss and just pump that straight into your SQL date field.
April 29, 2010 at 9:34 am
When you double-click on a dataflow transformation, a new window opens. In this window, you will see boxes representing your source and target.
Drag a Derived Column transformation on to this...
April 29, 2010 at 9:21 am
🙂 no problem. Put this between your source and destination, as part of the dataflow.
April 29, 2010 at 8:53 am
Here's your Derived Column formula:
SUBSTRING([Column 1],7,4) + "-" + SUBSTRING([Column 1],1,2) + "-" + SUBSTRING([Column 1],4,2) + SUBSTRING([Column 1],11,13)
This will create a new column with data type Unicode String. You...
April 29, 2010 at 8:40 am
Yes there is. You can fire the date into a derived column transformation where you can add a new column which 'derives' a proper date from your date text.
What format...
April 29, 2010 at 12:51 am
What is the source of your data?
April 29, 2010 at 12:46 am
We need to understand a bit more about the logical flow of your package, I think.
You can easily check out your Script Main suspicion - just try changing it to...
April 29, 2010 at 12:43 am
There was a suggestion earlier in the thread that you just run the job frequently - every 5 minutes maybe - and process a file if it exists, otherwise exit....
April 29, 2010 at 12:33 am
Welsh Corgi (4/28/2010)
I did not believe that what I wanted to do could be accomplished.
Thank very much for you replies.
But did you have so say the period comment?
"This means that...
April 28, 2010 at 3:30 pm
Viewing 15 posts - 12,121 through 12,135 (of 13,870 total)