Viewing 15 posts - 5,041 through 5,055 (of 59,068 total)
Phil:
The issue is that when I try to import *.xlsx files using either SSIS / SSMS (Import Data option), I get the error "Microsoft.ACE.OLEDB.12.0 Provider Is Not Registered" /...
June 22, 2021 at 1:17 pm
thank you for support
according post on multi forum
it will not repeated
sorry
To be honest, I don't really have a problem with people posting the same problem on multiple forums. After...
June 21, 2021 at 10:40 pm
To be honest, I had come to the same conclusion and wanted to see what the reaction would be with a mostly code only response rather than the uncoded suggestion...
June 21, 2021 at 9:00 pm
Do you understand how the following works?
SELECT *
FROM [dbo].[checkportions]
WHERE GPNSignature LIKE PortionKey+'[^0-9]%'
;
Well do ya? Enquiring minds want to know! 😀
June 21, 2021 at 6:40 pm
I have saved the execution plans from enterprise and standard edition.
I've probably missed them. Which post did you attach them to?
June 21, 2021 at 6:37 pm
Sure. Get rid of the UNION ALL and change the second part of that to an INSERT/SELECT.
June 21, 2021 at 2:31 pm
Jeff, Hi
try this instead
but in case you don't read newspapers either (too much bad news) the article was entitled
"Fear over freedom: Here's what the doom-laden government graphs didn't...
June 21, 2021 at 2:27 pm
The PIVOT in the second part of your dynamic query creates integers for the count and that is what is being evaluated first in the creation of the table by...
June 21, 2021 at 2:20 pm
I'm going to suggest that before you do anything else that you upgrade your new 2017 (RTM) server to the latest CU. There were quite a few nasty little performance...
June 21, 2021 at 1:53 pm
Do you understand how the following works?
SELECT *
FROM [dbo].[checkportions]
WHERE GPNSignature LIKE PortionKey+'[^0-9]%'
;
I'll also state that if this type of thing has...
June 21, 2021 at 1:47 pm
Thanks - that's perfect!
The reason I made the suggestion above is because the code that you think is perfect is doing 10 table scans on your test data. Your...
June 21, 2021 at 1:34 pm
I would actually be seriously concerned about this. There are a whole lot of things not being considered and I'm thinking it'll be pretty easy, because of missing data, for...
June 21, 2021 at 4:40 am
Thanks - that's perfect!
I don't have the time to try it out tonight even with the great test data posted but look at the STRING_AGG function again. It does...
June 21, 2021 at 4:28 am
As you point out, implicit conversions on table columns (example, table column is VARCHAR(), lookup or join value is NVARCHAR()) is really bad especially for blocking. That, of course, is...
June 21, 2021 at 4:10 am
Heh... it's also how people interpret things. Remember the old joke about bananas?
After a 2 year study, it's been found that people eat more bananas than monkeys.
It must...
June 20, 2021 at 7:43 pm
Viewing 15 posts - 5,041 through 5,055 (of 59,068 total)