Viewing 15 posts - 1,051 through 1,065 (of 2,645 total)
I've not yet moved from SQL 2012 to 2019 but in previous database upgrades the SSIS packages have to be rewritten or at least recompiled in Visual Studio.
I'm interested to...
April 13, 2020 at 2:41 pm
" it returns a null value which ado.net doesnt like"
Really!, there is a database driver that doesn't handle nulls?!
April 13, 2020 at 2:05 pm
You should check the which index, on the table that has this column, is being used (from the execution plan), then add the column you have added to the INCLUDE...
April 10, 2020 at 12:49 pm
The first thing you should do it look at differences in the execution plans.
Did you just add the column to the rows that are being selected and not add it...
April 10, 2020 at 10:53 am
Ralph Kimball has a method of not having any nulls in dimension tables. Instead, on the dimension table there are rows with negative keys:...
April 9, 2020 at 2:33 pm
Ralph Kimball has a method of not having any nulls in dimension tables. Instead, on the dimension table there are rows with negative keys: -1 for...
April 9, 2020 at 2:10 pm
Ralph Kimball has a method of not having any nulls in dimension tables. Instead, on the dimension table there are rows with negative keys: -1 for unknown, -2...
April 9, 2020 at 11:14 am
Ralph Kimball has a method of not having any nulls in dimension tables. Instead, on the dimension table there are rows with negative keys: -1 for unknown, -2 for not...
April 8, 2020 at 8:32 pm
I guess I need someone to give me execute permission on that function?
Yes, that's what you need to ask for.
April 6, 2020 at 4:17 pm
Tava,
Can you supply some more details of the processing involved?
April 6, 2020 at 10:19 am
SELECT RIGHT('00000000000000' + convert(varchar,@qtramt1),14)
April 4, 2020 at 12:16 pm
If you have integers or other number types you might need to convert them to varchar first or they will get converted to zero.
April 2, 2020 at 4:26 pm
Just noticed this when I was putting this on a new instance, but in the .sql
file the WITH
starts with a leading ;
, which actually breaks the DDL...
March 30, 2020 at 10:00 pm
;with cte as
(
select ROW_NUMBER() OVER (ORDER BY x.dateofreading) RowNum,
*
...
March 30, 2020 at 5:21 pm
delete x
from @staging_account x
where not exists(select *
...
March 30, 2020 at 3:11 pm
Viewing 15 posts - 1,051 through 1,065 (of 2,645 total)