Viewing 15 posts - 5,071 through 5,085 (of 22,211 total)
What is running in an automated fashion every 30 minutes on the system? 3rd party backup software? Something? Kevin has a pretty good order for trying to figure out what's...
February 24, 2016 at 3:29 pm
Nothing is ever 100%, but no, in most cases you're only going to see some additional I/O, CPU & memory during a stats update. It doesn't put locks on the...
February 24, 2016 at 3:27 pm
Jeff Moden (2/24/2016)
SQLRNNR (2/24/2016)
GilaMonster (2/24/2016)
SQLRNNR (2/24/2016)
GilaMonster (2/24/2016)
jasona.work (2/24/2016)
/Me leans back, grabs bucket of popcorn
Sure sounds like Gail answered the original question, yet for some reason the OP decided to focus...
February 24, 2016 at 3:19 pm
You're not actually referencing partitions. Here's a good article on setting [/url]up sliding window partitions, which is almost what you're describing. The thing about partitions and partitioning is, that you're...
February 24, 2016 at 11:50 am
I've been speaking publicly for 10 years and I still get nervous and, depending on who is in the audience, I can be intimidated. However, you just keep going. Remember...
February 24, 2016 at 11:35 am
spaghettidba (2/24/2016)
Actually, I never perform cache analysis in production.I usually dump the whole cache to a table in my local sql server and start from there.
Good plan. And, you...
February 24, 2016 at 7:28 am
It's not magic. It has to be something. Either a SQL login that he has the password for, or he's in a group that's in a group that has access....
February 24, 2016 at 6:50 am
Redgate software makes a tool called SQL Compare that will compare between SVN (TFS, Git, etc.) directly and your database, or a set of .SQL files and the database (or...
February 24, 2016 at 4:01 am
You might find that you identify certain tables or certain indexes that need more frequent statistics updates. When you do, you might want to schedule updates on those specific objects,...
February 24, 2016 at 3:58 am
Thanks.
I should add though, that queries like this can be somewhat expensive. I wouldn't recommend running them under load on a production system.
February 24, 2016 at 3:51 am
Look for A/D groups that do have access that he belongs to.
February 23, 2016 at 3:14 pm
if you really need to know exactly how many queries are run against the database, you need to set that up ahead of time. With SQL Server 2012 or better,...
February 23, 2016 at 3:13 pm
Alan.B (2/23/2016)
February 23, 2016 at 12:40 pm
This will get you started. You just have to look at the right properties to only see the indexes
WITH XMLNAMESPACES(DEFAULT N'http://schemas.microsoft.com/sqlserver/2004/07/showplan'),
QueryPlans AS
(
SELECT RelOp.pln.value(N'@PhysicalOp', N'varchar(50)') AS OperatorName,
RelOp.pln.value(N'@NodeId',N'integer') AS NodeId,
RelOp.pln.value(N'@EstimateCPU', N'decimal(10,9)') AS...
February 23, 2016 at 11:17 am
Viewing 15 posts - 5,071 through 5,085 (of 22,211 total)