Viewing 15 posts - 196 through 210 (of 350 total)
Did not mention before- can DB Mirror be the reason for increased Locks: AverageWaitTime?
Thanks,
August 27, 2008 at 4:20 pm
Thanks, David.
I did not kill any query but I did find application that caused this huge wait time. Then I updated statistics on all tables in particular DB and bingo-...
August 27, 2008 at 3:31 pm
Thanks gents- it seems that the only way we can switch roles back is over manual faiover
June 4, 2008 at 1:55 pm
Thanks, Steve, but this approach deals with failover (manual). I thought there is another way (not related to failover). Probably I was wrong
June 4, 2008 at 1:20 pm
check modify_date for table_name (not PK), i.e.
select modify_date, * from sys.objects where name = 'accounts'
and you will get what you are looking for 🙂
May 29, 2008 at 2:20 pm
“sys.objects” contains “modify_date”. This data can help you as in accordance with BOL “If the object is a table or a view, modify_date also changes when a clustered index on...
May 29, 2008 at 1:34 pm
Actually BOL mentioned about it- both servers should have same Editions- both Enterprise or both Standard. But I decided to check myself- it's true. I need to install Enterprise Edition...
May 29, 2008 at 1:15 pm
Thanks Adam-
I just tryed and found that you can not use pair Enterpise-Standard Sql servers for mirroring.:w00t:
May 29, 2008 at 12:51 pm
Thanks Doug for your response.:)
Frankly I have no idea why page file size is 4GB (I inherited this server). But I know for a fact that my another similar Sql...
March 3, 2008 at 7:52 pm
Probably this MS article has answer for your question:
January 9, 2008 at 8:49 pm
From my experience (just completed almost same project):
1. For sliding window- single filegroup (FG) is easier to control partition placement;
2. If you put some FG on the same drive you...
January 9, 2008 at 9:01 am
For space used actually I used "sp_spaceused". Dbcc Config I used to find number of allocated pages. If query requires Clustered Index Scan execution time depends on this number (if...
January 9, 2008 at 7:43 am
Actually I checked with "updateusage = true".
Thanks
January 8, 2008 at 9:12 pm
Jeff,
What you explained makes perfect sense and I thought about it.
But what confused me is the fact that table size was not increased after conversion (I just double checked...
January 8, 2008 at 8:51 pm
Thanks Sarah- working like a charm
December 26, 2007 at 6:29 pm
Viewing 15 posts - 196 through 210 (of 350 total)