Viewing 15 posts - 5,056 through 5,070 (of 59,072 total)
Using drones in conjunction with satellites would also be a great way to check for the undergrowth problem, as well.
--Jeff Moden
Change is inevitable... Change for the better is not.
June 22, 2021 at 2:26 pm
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" /...
--Jeff Moden
Change is inevitable... Change for the better is not.
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...
--Jeff Moden
Change is inevitable... Change for the better is not.
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...
--Jeff Moden
Change is inevitable... Change for the better is not.
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! 😀
--Jeff Moden
Change is inevitable... Change for the better is not.
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?
--Jeff Moden
Change is inevitable... Change for the better is not.
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.
--Jeff Moden
Change is inevitable... Change for the better is not.
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...
--Jeff Moden
Change is inevitable... Change for the better is not.
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...
--Jeff Moden
Change is inevitable... Change for the better is not.
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...
--Jeff Moden
Change is inevitable... Change for the better is not.
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...
--Jeff Moden
Change is inevitable... Change for the better is not.
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...
--Jeff Moden
Change is inevitable... Change for the better is not.
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...
--Jeff Moden
Change is inevitable... Change for the better is not.
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...
--Jeff Moden
Change is inevitable... Change for the better is not.
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...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 21, 2021 at 4:10 am
Viewing 15 posts - 5,056 through 5,070 (of 59,072 total)