Viewing 15 posts - 211 through 225 (of 2,568 total)
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
stop playing with copying the data and focus on getting the filtering correct.
maybe the column you are using isn't the right one to use - maybe it is only in...
December 18, 2023 at 1:56 pm
bump for 2nd page issue
December 18, 2023 at 11:45 am
your issue is that while you are checking the variables against @maxid on the loop, you aren't checking it on the where clause - so you can get up to...
December 17, 2023 at 3:58 pm
Viewing 15 posts - 211 through 225 (of 2,568 total)