Viewing 15 posts - 46 through 60 (of 279 total)
n.heyen (10/19/2012)
First, I should be able to search for text...
October 19, 2012 at 6:52 pm
If you're on enterprise edition, 4 filtered indexes (1 for each distinct value) might be your best bet.
October 19, 2012 at 6:30 pm
As others have pointed out, it's fairly straight forward, point and click through the wizard.
If you do run into issues, review the installer logs under C:\Program Files\Microsoft SQL...
October 1, 2012 at 10:35 am
Does the Sql Agent Job fire successfully when the deadlock occurs?
Also, are you using a named instance? In the sample code, at the bottom,
@wmi_namespace=N'\\.\root\Microsoft\SqlServer\ServerEvents\MSSQLSERVER'
"MSSQLSERVER" will be different for a...
October 1, 2012 at 10:21 am
Sql server should have permissions to copy the file, so xp_cmdshell.
My approach for moving databases:
1. Alter DB set single_user rollback immediate
2. Alter db set offline
3. xp_cmdshell to copy mdf/ldf to...
October 1, 2012 at 10:03 am
Markus (10/1/2012)
October 1, 2012 at 8:18 am
sql-lover (9/28/2012)
Last but not least, why reinvent the wheel? 🙂 ... unless you are really bored, there are tons of awesome solutions online for Index Maintenance and jobs. My...
September 30, 2012 at 10:23 pm
vivekkumar341 (9/30/2012)
Please go through the url and my mistake its error code.
No thanks, I prefer this url: http://support.microsoft.com/kb/2137408
SQL Server logs "Msg 833" when I/O delay problems occur
September 30, 2012 at 10:09 pm
vivekkumar341 (9/30/2012)
September 30, 2012 at 9:48 pm
checkdb is very IO intensive, and your IO subsystem isn't keeping up.
What are you using for storage?
September 30, 2012 at 9:38 pm
Oh, and if you update a col that is included in an index, it will probably show up as a singleton lookup for the index but not as a...
September 8, 2012 at 2:15 am
you've answered you're own question, if an index is non unique, accesses will be scans, not seeks, hence 0 seeks reported.
your question should be "why would I see...
September 8, 2012 at 2:00 am
DR means disaster recovery, so start there.
If your servers caught fire and were destroyed right now, as in this very instant, how long could the business tolerate...
September 8, 2012 at 1:18 am
Don't reinvent the wheel. Ola hollengren's db maint scripts do exactly what you are looking for.
September 7, 2012 at 7:09 pm
GilaMonster (8/30/2012)
August 30, 2012 at 5:06 pm
Viewing 15 posts - 46 through 60 (of 279 total)