Viewing 15 posts - 106 through 120 (of 5,111 total)
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
But what about this? It returns null in both cases....
declare @t int
select case when @t is null then @t else null end
The error specifically states it can't be a...
January 23, 2023 at 9:52 am
Also, to support Thom on his claim that 3 and 4 part naming has been deprecated, take a look at the following article written by a really smart fellow...
January 23, 2023 at 9:01 am
I disagree about aliasing because I don't see the point except when a table is JOINed more than once in the same statement.
I used to be on this...
January 20, 2023 at 4:39 pm
3+ part naming for columns is (due to be) deprecated, so get out of the habit of their style. Instead, alias the object(s) in your FROM
and then qualify the...
January 20, 2023 at 4:26 pm
I think the topic is "bugged"... I got a notification of a response from Scott, and the forum shows they were the last to reply, but I don't see it......
January 20, 2023 at 4:22 pm
Viewing 15 posts - 106 through 120 (of 5,111 total)