Viewing 15 posts - 3,151 through 3,165 (of 13,874 total)
As you did not provide detailed DDL, INSERT and desired results, I've had to guess. Does this help?
DROP TABLE IF EXISTS #t1;
CREATE TABLE #t1
(
...
November 21, 2019 at 1:34 pm
Is there a way around this?
Change the package / config so that the connection uses the credentials you want it to use.
November 20, 2019 at 8:39 pm
Are you certain that the SSIS package is executing in the context of the Windows user you are expecting?
Please check the All Executions report to verify this (look for the...
November 20, 2019 at 7:47 pm
Try running this on your sample data ... it performs the split for you:
SELECT m.ID
,REPLACE(REPLACE(REPLACE(ss.value, '"', ''), '[', ''), ']', '')
FROM...
November 20, 2019 at 3:51 pm
For info, here is the original code, formatted and pasted directly from VS:
IF
(
SELECT FormType = LTRIM(RTRIM(ISNULL(f1, '') + ISNULL(f2, '') + ISNULL(f3, '')))
...
November 20, 2019 at 1:37 pm
A Script Component source would be the way to go, in my opinion, not a Script Task.
It needs to read the file (just one row, based on your example) and...
November 19, 2019 at 7:13 pm
As Thom suggested, having | as both row and column delimiter is going to confuse the hell out of SSIS and I'd not expect you to have any success doing...
November 19, 2019 at 6:19 pm
My Row Delimeter is {CR}{LF}
Format - Delimited
Text Qualifier as None
Header RowDelimeter - {CR}{LF}
Header rows to skip 0
columns names in the first data row box is unchecked.
So now you see...
November 19, 2019 at 6:05 pm
That's more than four columns. What is your row delimiter?
--Edit: I seem to have regurgitated Thom's first few words almost verbatim, apologies! But these are critical questions
November 19, 2019 at 4:49 pm
You mentioned an UPDATE query, yet table 3 contains no data (and therefore no amount of UPDATE queries will help). Are you sure that your test data is up to...
November 19, 2019 at 1:34 pm
(38,0) default
I think not. You should really test things before posting them here. Using a precision of 0 causes immediate rounding to the nearest whole number.

November 18, 2019 at 4:44 pm
This example seems over-simplified, to the point of being impractical.
To implement this in the real world, I'd be looking to develop a standard BOM model ... see here, for...
November 16, 2019 at 4:55 pm
Is this a blog post, or do you have a question?
November 15, 2019 at 7:58 pm
I took this from https://regex101.com/:

The point being that the string which you are extracting does not even match the expression from which it was extracted. How...
November 15, 2019 at 2:13 pm
Viewing 15 posts - 3,151 through 3,165 (of 13,874 total)