Viewing 15 posts - 721 through 735 (of 2,904 total)
To add to what Phil said, my understanding is that ADS (Azure Data Studio) is more of a "development" tool and SSMS is more of a "management and administration" tool.
Deploying...
December 20, 2021 at 7:13 pm
My opinion - VERY. In general, what you are going to be doing the most of in SQL is NOT going to be CPU heavy operations but memory and disk...
December 19, 2021 at 9:05 pm
I MAY be mistaken on this, but I think that an i9 is a desktop processor not a server processor. Generally, you would want to have SQL Server running on...
December 19, 2021 at 2:15 pm
Ah yes, that's much easier to read now, on my brand new 20-metre-wide screen.
You just need to make your font smaller if it doesn't fit 😛
BUT even if you...
December 17, 2021 at 2:46 pm
That is VERY hard to read and consume... But stripping out everything prior to the line of *'s, fixing a bad piece of formatting, and running it through a SQL...
December 17, 2021 at 2:39 pm
To add to what Phil is saying - I would try it out and see what happens. Basically, run your code and then either SELECT or PRINT @Where to see...
December 16, 2021 at 5:37 pm
Looks like you changed the post after ratbak replied?
What I would recommend is rather than executing the dynamic SQL, print it so you can see exactly what will be run...
December 16, 2021 at 5:36 pm
A few ways I can think of to fix this. I think the BEST solution to fix it is to change the SQL Server Agent service to be an AD...
December 16, 2021 at 4:07 pm
Wouldn't that be related to parameter sniffing in the scenario I gave vs function in a WHERE clause in the OP? And if so, the performance could tank due to...
December 15, 2021 at 7:37 pm
Without seeing any of your data or datatypes, I am really just guessing, but I would be willing to bet that it is related to your group by statement on...
December 15, 2021 at 7:16 pm
Offhand, the best way I have found to search for it is to use SQL Search OR to script out all of the jobs and do a search in those. ...
December 15, 2021 at 7:09 pm
Yeah, I wasn't saying it was "good", it is just what it was doing. I prefer the "WHERE (A=@a) OR (@a IS NULL)" approach myself... and depending on how often...
December 15, 2021 at 6:57 pm
if @Parameter3 is null, then use table1.id2.
December 15, 2021 at 6:05 pm
My first step would be to load up the execution plan on both systems and make sure they look similar, if not identical.
Next, I would check for blocking while your...
December 15, 2021 at 5:48 pm
Viewing 15 posts - 721 through 735 (of 2,904 total)