Viewing 15 posts - 3,331 through 3,345 (of 13,874 total)
That's a much better solution, thanks John. <Phil heads for coffee break>
September 23, 2019 at 12:54 pm
There is [TABLE_SCHEMA], [TABLE_NAME], [COLUMN_NAME], [datatype] is the pk
You mean this column?
[datatype] [nvarchar](151) NULL,
Seems an odd choice. Also, this column is nullable and therefore cannot be a PK.
September 23, 2019 at 12:45 pm
Here's a long-winded way - nothing better comes to mind right now.
Please provide set-up data in future - you'll find that people are more willing to help if you do...
September 23, 2019 at 12:42 pm
I agree, and no setting that I can think of right now. Just goes to emphasize how important it is to get your pipeline data types in order.
And surely, if...
September 14, 2019 at 12:31 am
Using serializable should do the trick in your example, I agree.
September 13, 2019 at 6:54 pm
OK, I might know what's happening.
Your screenshots are for the destination, not the source.
So your column comes in as string(100), goes through the SSIS pipeline unhindered and then out to...
September 13, 2019 at 6:50 pm
If you add a data viewer after the source component in the DF, you should be able to verify whether the data has already been truncated (and therefore whether SSIS...
September 13, 2019 at 5:09 pm
Is the data which you provided the desired output, or is it the base data?
Whichever it is, can you also provide the other part?
September 13, 2019 at 2:17 pm
Hi Phil
It’s a 3rd Party DB/App, I cannot change the tables.
Apologies for not taking the time to read your original post thoroughly enough!
Can you not emulate exactly what the...
September 13, 2019 at 1:34 pm
Why not use an IDENTITY column for this?
Or create a SEQUENCE and use that.
September 13, 2019 at 12:45 am
What are you displaying this in? Excel/SSRS and similar tools offer formatting options to take care of this for you.
SSMS is a query tool, not a presentation tool.
September 13, 2019 at 12:43 am
Is this what you're trying to do?
INSERT #RailCarCycle
(
RailcarID
,StartDate
,StatusID
)
SELECT rccy.RailcarID
,rccy.LoadDate
...
September 12, 2019 at 10:04 pm
Not sure, how would that help in mapping a remote share? Any examples would be helpful
My response was based on this comment by you:
I do have a work around,...
September 12, 2019 at 12:47 pm
I do have a work around, from server S3 i am using a execute SQL task and passing net use along with user name and password, there on all the...
September 12, 2019 at 3:22 am
Viewing 15 posts - 3,331 through 3,345 (of 13,874 total)