Viewing 15 posts - 1 through 15 (of 66 total)
You will need to add new cluster disks for any new instances (for data/log/tempdb) as they cannot share with an existing instance. The SqlServer installation binaries\etc will install on the...
July 7, 2014 at 8:35 am
For DR purposes we have a 2008R2 (OS) cluster set up with multiple 2008, a 2008R2, and a few 2005 instances configured.
July 7, 2014 at 8:06 am
RichB (6/6/2013)
All so much easier if you just spend an hour or 2 writing your own logshipping routines.
Agreed - but this is still easy to add a new file after...
June 6, 2013 at 6:28 am
The only time I have ever needed to use updateusage was when I had a negative page allocation. It is possible SqlServer had an incorrect value for that table or...
April 15, 2013 at 8:32 am
curious question - how much memory do you have on the machine.
April 10, 2013 at 8:43 am
These rebuilds need locks, which can be causing your time to climb. Do you have Enterprise installed?
April 10, 2013 at 7:17 am
if it just for a quick look - you could query sys.objects / sys.columns / sys.tables for what you want, then run the same query over linked server and put...
April 10, 2013 at 6:28 am
Hopefully you have sourcecode control - that would be one place. you could look for these triggers in your stored backups by restoring the db somewhere else or as a...
April 10, 2013 at 6:25 am
Is the table being accessed during this maintenance period?
April 10, 2013 at 6:17 am
smcguire (4/10/2013)
April 10, 2013 at 6:09 am
I do what above members have noted in looking at the index updates but add a server side trace for logins as well
November 23, 2012 at 9:32 am
take a look at the mail tables
i use these queries
select * from msdb..sysmail_event_log order by log_date desc;
-- all mail sent
select top 100 * from msdb..sysmail_allitems order by sent_date desc;
--...
November 23, 2012 at 9:29 am
TheGreenShepherd (10/26/2012)
October 29, 2012 at 6:38 am
I think your best bet would be to use a conversion tool like http://blogs.msdn.com/b/ssma/archive/2011/04/29/converting-from-mysql-to-sql-server-working-with-data-types.aspx ... That is where I would start
October 26, 2012 at 9:33 am
Viewing 15 posts - 1 through 15 (of 66 total)