Viewing 15 posts - 91 through 105 (of 5,101 total)
I, personally, tend to use the expressions on properties of the connection manager, rather than the tool you are using there.
January 31, 2023 at 5:09 pm
Did you do as the error suggested? What were your findings? We can't see the expression, or the data types, so you need to give more information here.
January 30, 2023 at 5:07 pm
So you're trying to dynamically get the columns from the XML and (presumably) dynamically insert that into the appropriate columns? Then you are going to need dynamic SQL; you can't...
January 30, 2023 at 4:26 pm
Does your XML always have the same nodes?
January 30, 2023 at 4:07 pm
Unfortunately, I can't run the above, it initially gives an error about the scalar variable @MLID
not being declared (more on that later), and then if I do define it,...
January 30, 2023 at 3:24 pm
Design your tables to be appropriate for the data you need to store. If you need to store things like names, addresses, DOB, and passport Numbers, create all those columns...
January 27, 2023 at 12:05 pm
The project that I am designing in my ssis project requires me to constantly change my tables and their column types. Its a big project so when I...
January 27, 2023 at 11:19 am
Then the code page needs to be 65001. The data imports fine with me with that setting:
January 27, 2023 at 10:15 am
What encoding is the file saved in? UTF-16? UTF-8? Something else?
January 27, 2023 at 10:10 am
I can see you've got it set to "code page 1252" there; that's a strong suggestion the file is being read as a DT_STR not a DT_WSTR.
January 27, 2023 at 9:58 am
Seems you are using a varchar
somewhere, or you've defined the column as a DT_STR rather than a DT_WSTR in your SSIS task.
January 27, 2023 at 9:21 am
For reference, there has already been some troubleshooting on this over on Stack Overflow, where there is some additional information in the comments.
January 26, 2023 at 12:43 pm
The fact that you're using a loop sounds like there are other problems too. T-SQL is a set-based language and so excels at set-based solutions. Conversely, it doesn't perform well...
January 23, 2023 at 1:36 pm
Why do you want to reseed the value? You only DELETE
the rows with a ID
of 1
, 3
, and 5
. If you reseed the IDENTITY
(so that the next...
January 23, 2023 at 12:58 pm
Also, for those interested, this error occurs at compile/parsing rather than at execution. Take the following:
SELECT 1/0;
SELECT CASE WHEN 1 = 0 THEN NULL END;
You might expect...
January 23, 2023 at 12:26 pm
Viewing 15 posts - 91 through 105 (of 5,101 total)