Viewing 15 posts - 406 through 420 (of 1,539 total)
rambilla4 (10/10/2009)
I have took a backup in the morning 9:00 AM to a perform a task and then the regular backup job at night (ran at 9:00 PM) appended the...
October 11, 2009 at 8:41 am
Thanks bitbucket 🙂
This contains a script for finding Roles per user in each database... That is what i was looking for.
October 11, 2009 at 8:32 am
JDixon-385826 (10/10/2009)
you can use the NOLOCK hint on select statements or SET the isolation level to read uncommitted
Beware of the consequences too!!
using NOLOCK, you'll read inconsistent data at times. If...
October 10, 2009 at 12:51 am
fminns-1058143 (10/9/2009)
Can someone point me to a really good step-by-step guide to configuring log shipping and the monitor server?
This site has good tutorial on how to setup log shipping in...
October 9, 2009 at 7:12 am
mchinnaian (10/9/2009)
Anyone Can Help me.. What is the Difference between Incremental Backup and Full Backup in SQL Server 2005. What are all the Steps to...
October 9, 2009 at 7:07 am
espanolanthony (10/2/2009)
they are > 80%
The recommendation from microsoft is that you should rebuild your indexes if they are fragmented more than 30%.
Look at example D from this url. That script...
October 2, 2009 at 8:20 am
Can you rebuild your indexes and see if the performance improves.
October 2, 2009 at 8:10 am
I was just trying to install an instance. The screen after you select "components to install" should be the screen asking you for the instance name...
October 2, 2009 at 8:08 am
I think thats where the problem lies. It's trying to upgrade the default instance (which u might have patched to higher builds)... It should throw you a screen asking you...
October 2, 2009 at 8:02 am
The error says, you are trying to upgrade to an older version!
Are you typing a unique instance name or you're keeping the default instance?
October 2, 2009 at 7:53 am
The other way to do this is to use isnull function.
select isnull(col1,'') + isnull(col2,'') + isnull(col3,'')+ isnull(col4,'')+ isnull(col5,'')+ isnull(col6,'')
from MyTable
September 29, 2009 at 8:51 am
that may happen if there are inserts/deletes going on in the primary database. Until the log is backed up next, copied and restored on the secondary, there will be difference...
September 29, 2009 at 8:46 am
If you do not need point in time recovery (that's the reason u must have put the db in full recovery mode), why dont keep it in simple recovery mode?
September 29, 2009 at 8:45 am
09.00.3330
September 29, 2009 at 1:06 am
use RaiseError or xp_logevent sp.
September 29, 2009 at 1:00 am
Viewing 15 posts - 406 through 420 (of 1,539 total)