Viewing 15 posts - 286 through 300 (of 2,646 total)
but do investigate all performance issues with 2022 before upgrading - many reporting 20 to 40% slower queries.
February 18, 2024 at 12:01 pm
SQL 2022 will give you batch mode execution plans on indexes that are not columnstore, even if batch mode execution plans are slower.
Did you look at the execution...
February 12, 2024 at 5:09 pm
VS2022 is (or has) a 64 bit version - this is a first - all prior versions were 32bit. so you need to check what version you did install (64...
February 9, 2024 at 1:41 pm
requires SSIS_ADMIN - which grants why too much power and can allow a user to elevate itself to sysadmin
February 7, 2024 at 4:36 pm
Thanks for your response - for sure it's encouraging .
following are the details
Table schema as follows :
Note : its Partitioned on column - Col_ID ( have to modify the...
February 6, 2024 at 9:19 am
on this case you don't need the third argument so just remove it (as well as the t2.ordinal from the select) and it should work as you intended.
you may need...
January 30, 2024 at 2:26 pm
DROP TABLE if exists #testdata;
--=============================
--Create test data table & Data
--=============================
CREATE TABLE #testdata
(
[freetext] varchar (200)NOT NULL,
)
;
insert into #testdata
select *
from (values ('abcd ksks -...
January 30, 2024 at 1:14 pm
this is not a Postgres site - you better off asking here https://www.postgresql.org/community/
January 29, 2024 at 1:40 pm
if it is a script you are generating from another system I advise you to do blocks of inserts each inserting a good chunk of rows using VALUES as per...
January 20, 2024 at 5:37 pm
do also note that having CDC on the db means that those transactions will be kept on the LOG even if db is in simple recovery until they are processed...
January 16, 2024 at 7:46 pm
I would try and break it down into 2 (maybe 3) sql blocks by moving some of the "good plan joins" - those which have INNER joins - to a...
January 14, 2024 at 4:27 pm
it can be answered - but its a tricky (misleading) question as it is trying to divert the question to a particular aspect, while the important point is another.
January 10, 2024 at 9:16 am
well... what Phil posted will remove the message - but the other way you may be using the isnull will not
so if you do the alternative to Phil's. where you...
January 7, 2024 at 7:48 pm
and it takes 100 seconds to return 5.5 million rows TO WHAT CLIENT?? - if SSMS then the issue is likely not the query, neither the server but the simple...
January 2, 2024 at 4:30 pm
this might not be accurate in all cases, especially if the UTC offset has a non-numeric component (such as '+05:30').
the correct answer always works correctly - and it is...
January 1, 2024 at 4:26 pm
Viewing 15 posts - 286 through 300 (of 2,646 total)