Viewing 15 posts - 1,141 through 1,155 (of 1,192 total)
A few questions:
1) How busy is the server?
In my experience it's not all that unusual for signal waits as a percentage to be unusually high if a server's idle, since...
April 16, 2015 at 9:31 am
John Mitchell's approach (a job that periodically checks for new database mirrors) would be the way I would go if automatically changing that setting really were necessary, perhaps because of...
April 15, 2015 at 1:17 pm
Perry Whittle (4/15/2015)
try reading the log to see if there's any detail in there
This is probably your best option without any auditing in place. Of course, you'll need those log...
April 15, 2015 at 9:45 am
A nice article indeed, Alessandro!
It hit all the major points and required a significantly smaller investment of time and coffee than the white paper at https://msdn.microsoft.com/en-us/library/dn673537.aspx, which coincidentally enough I...
April 9, 2015 at 10:01 am
I would also point out that here the amount of memory involved is very ,very low. About 167 MB of total "memory" used, of which only 77 MB was in...
April 2, 2015 at 9:21 am
This is one query that should at least get the data as you want it.
It's pretty inefficient, as it requires a couple table scans, so you might want to look...
March 30, 2015 at 3:47 pm
That message is expected when a database in an AG is started up (on server restart or failover, for example).
If you see that when you are intentionally restarting a...
March 30, 2015 at 1:08 pm
The primary (sadly, pun intended) advantage of running a normal full backup is that you can leverage differential backups to cut down on backup time and resources used when you...
March 30, 2015 at 9:33 am
Koen Verbeeck (3/16/2015)
Can only create nonclustered columnstore index in SQL Server 2012
This makes it seem like you could only create nonclustered columnstore indexes in SQL 2012, but not in 2014....
March 16, 2015 at 8:46 am
You can also get some idea of what's been used by querying sys.dm_db_index_usage_stats. That includes information for the last scan, last seek, last lookup, and last update for each index...
March 11, 2015 at 12:46 pm
It does take an exclusive lock, but only while it is actually altering the database.
Once that's completed, it holds the S lock.
Cheers!
March 11, 2015 at 10:10 am
I would also check how you are confirming that the ALTER DATABASE command is actually being executed.
I tested your code to see if there were any strange quirks with...
March 9, 2015 at 9:15 am
Just to point out something for the more paranoid of us, I believe Luis' solution assumes that all rows with the same MEMBER_ID use consecutive IDs with no gaps.
If there...
February 27, 2015 at 11:44 am
@mbhandari: Glad we could help!
Life got pesky, so it took me longer than I wanted to post the comparison of the IF EXISTS and IF COUNT(*)>0 queries, but...
February 27, 2015 at 9:39 am
You would think so, but it didn't when I ran the tests many moons ago. What the OP is seeing is the same thing I remember seeing from my tests.
The...
February 25, 2015 at 12:44 pm
Viewing 15 posts - 1,141 through 1,155 (of 1,192 total)