Viewing 15 posts - 2,461 through 2,475 (of 22,202 total)
Looks like an issue with how the application is configured and/or coded. Go to Bingle and look up "sql server connection pool" and ensure that your app is doing this.
July 9, 2019 at 11:31 am
Second, and enthusiastic, vote for sp_whoisactive.
And yes, there are Dynamic Management Views (DMVs) that are specific for locking and blocking. Microsoft has an article on how you can query...
July 9, 2019 at 11:29 am
I don't have an answer, only some questions.
Have you looked at the wait statistics? Specifically for the queries involved? What are they waiting on (yeah, obviously the buffer latch, but...
July 9, 2019 at 11:24 am
You are dealing with two distinct approaches to querying. The first, parameterized queries, involves what is called parameter sniffing. The process gets the values from the parameters and uses those...
July 9, 2019 at 11:19 am
What you're doing is a correlated sub-query in what is effectively the SELECT list and that query is returning more than one value. As the error says, you can't do...
July 9, 2019 at 11:12 am
None that I'm aware of. I'd suggest testing on a few disparate data sets, and generate a local one. The compression is consistent, but as you say, very dependent on...
July 9, 2019 at 11:09 am
I'd recommend doing a node in AWS and one in Azure. If you have the money for only one site, I would recommend AWS. AWS will be more...
July 8, 2019 at 11:23 am
July 8, 2019 at 11:20 am
Azure SQL Database is a platform as a service offering. You get a database. Under the covers, it's just SQL Server (a special version of SQL Server) running on Microsoft's...
July 3, 2019 at 11:30 am
If you're looking at a default setting for MaxDOP, good chance you also have a default setting for Cost Threshold for Parallelism. In addition to changing your MaxDOP setting, which...
July 3, 2019 at 11:26 am
Strong recommendation, get a copy of my book in the link below. It'll show you have to capture more information about your queries (you should use Extended events to capture...
July 3, 2019 at 11:16 am
CXPacket waits (prior to SQL Server 2016 sp1 and above) just mean that parallelism is occurring on your system. Look to other wait types to see what issues are happening.
Yeah,...
July 3, 2019 at 11:12 am
In addition to the infrastructure suggestions, tune the queries. Ensure appropriate indexes. Keep statistics up to date. Ensure an appropriate data infrastructure. These are very common issues in and around...
July 2, 2019 at 11:23 am
You want to get yourself familiar with AZCopy. That's the tool that will help.
July 2, 2019 at 11:21 am
Just a note, the only reason that CAST is not causing a scan in this scenario is because the column is a DATE column (or maybe DATETIME), so the optimizer...
July 2, 2019 at 11:19 am
Viewing 15 posts - 2,461 through 2,475 (of 22,202 total)