Viewing 15 posts - 1,036 through 1,050 (of 22,214 total)
Got an email from Degreed.com giving me recommendations for virtual training and … well, apparently there are urgent SQL courses I need to take today and ...
Well, what do...
December 29, 2021 at 5:10 pm
So, I work for Redgate, so any & all biases up front.
Nope.
Not for what you want. I've evaluated some of the SaaS monitoring tools that will monitor SQL Server. Frankly,...
December 22, 2021 at 12:45 pm
When I run the same query multiple times why does the CPU time fluctuate between 0 and 16ms in tracer, query cost and live data explorer? Also I have...
December 22, 2021 at 12:30 pm
You can use Extended Events to capture errors. This can include, if needed, the T-SQL statement or Object_ID of the query involved.
December 21, 2021 at 2:44 pm
I saw you posted this over on DBA.StackExchange. I like the one answer. There were also good comments. From the bytes received, it looks like each query returns different data?...
December 21, 2021 at 2:32 pm
Emphasis has to be on the fact that while this is called Profiler, it's just a front-end for Extended Events.
Nice write up.
December 21, 2021 at 1:22 am
Yeah, not a clue. Most of the time, I get very good behavior out of Azure. Obviously not the same as something running locally, but very much the same as...
December 17, 2021 at 4:38 pm
How's everybody? Wishing a good 2022
Thank you! I hope the same for you and yours.
December 17, 2021 at 4:37 pm
Performance is likely to improve. However, one thing, instead of putting all the code into a single query inside a procedure, create a wrapper procedure for all the IF ......
December 17, 2021 at 12:35 pm
That's an odd construct. NULLIF compares two values. If they're matching, it returns null. Otherwise, it returns the first value, in this case, @parameter. ISNULL checks the first...
December 16, 2021 at 1:37 pm
I would argue that every table should have a clustered index unless serious testing suggests otherwise. SQL Server is optimized around storing and retreiving data from clustered indexes. Heaps just...
December 16, 2021 at 1:32 pm
Not your router. Azure, by default, locks down your databases. You cannot connect to them without specifically allowing identified IP addresses. So, it's youre IP address that you need to...
December 15, 2021 at 3:37 pm
Hey Rod. First guess, have you poked a hole in the firewall so your account can get to the Azure database? That's the most common issue. You should be able...
December 15, 2021 at 1:10 pm
I'm with Ken. Temporal tables is probably the better solution. However, you also can look at setting up an UPDATE trigger as shown at the link. Be cautious and...
December 15, 2021 at 1:06 pm
Hi everyone
Thanks for the replies. If I include the execution plan then does the query come with it automatically or do I have to add the query separately?
Thank you
The...
December 14, 2021 at 5:26 pm
Viewing 15 posts - 1,036 through 1,050 (of 22,214 total)