Viewing 15 posts - 586 through 600 (of 2,694 total)
Have you tried pasting it into ChatGPT? It will explain it.
just created a login and tried it. It gave some good layman explaination. Once thing, I wanted to ask,...
April 8, 2023 at 6:44 pm
what else is the code doing e.g. the full code of sp_crm_lead_account_matching?
Your call has other parameters and you are using output variables that are not used on the query you...
April 8, 2023 at 6:26 pm
without even knowing which CRM vendor this is I would suggest the following
April 8, 2023 at 1:48 pm
will this give you what you need? https://www.sqlservercentral.com/scripts/script-db-level-permissions-v4-3
April 8, 2023 at 10:25 am
Intellisense telling you it thinks there is an error isn't the same as having an error.
so do you GET an error when you execute the code?
does the index not get...
April 8, 2023 at 8:00 am
recommendation from microsoft is CU - so go that route
April 7, 2023 at 7:22 pm
something along these lines - it assumes that none of the duplicates already contain a row that is 1 hour ahead
if object_id('tempdb..#keys') is not null
... April 4, 2023 at 7:18 pm
if the proc is running then using sp_whoisactive MAY give you the current explain plan - to got it the command would be
exec sp_whoisactive @get_plans = 1 -- or =...
April 4, 2023 at 10:48 am
you need to install IBM's odbc driver for I series - see https://www.ibm.com/docs/en/i/7.2?topic=oa-set-up-your-system-i-access-odbc-driver
with it you can use SSIS or C#/Powershell to connect to your as400 and then load data onto...
April 3, 2023 at 7:56 pm
Ring knocker here. I have 25+ years of SQL Server experience, you should listen to what I have to say. 😉
One a personal note, continuous learner here as there...
April 3, 2023 at 4:48 pm
and speaking of blocking.
whoever did the code does not really understand what "SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;" and "with (nolock)" do.
apart from the fact that it allows you to...
March 30, 2023 at 8:26 am
I've just looked at one of our processes - a 16 Million rows file, 5.5GB in size, 50 columns (mix of char, date, ints) - loading from a NAS share...
March 29, 2023 at 5:07 pm
Thanks everyone. I passed on suggestions up the food chain but they decided to let it run, 7 hours later...........
7 hours for 7GB... they definitely doing something wrong (like...
March 29, 2023 at 11:53 am
splitting the file should be last resource after you try out the remaining options.
March 28, 2023 at 11:53 am
following "works" - but see comments
select t.objid
--, t.COMMENT
, times.*
, team.chg_ass_team
...
March 28, 2023 at 7:35 am
Viewing 15 posts - 586 through 600 (of 2,694 total)