Viewing 15 posts - 856 through 870 (of 4,745 total)
simple answer - do not shrink the log.
Backup your transaction log more frequently to avoid it filling, so instead of one transaction log backup job at 12pm , run it...
December 31, 2012 at 9:12 am
is 91% of the log file size greater than 760GB?
December 30, 2012 at 5:56 am
backup history can take a VERY long time to clean up if there is a lot of history to work through, the supplied code is not very efficient and IIRC...
December 10, 2012 at 12:26 pm
look in the SQL errorlog for more specific messages, sounds like a database file is missing.
December 5, 2012 at 3:50 pm
Not enough to worry about! the alter database command was designed for just such tasks and is the safest way.
December 5, 2012 at 11:10 am
anything in the reporting services logs?
December 5, 2012 at 10:09 am
Alter database is the preferred method of doing this. Its safer as the database is never actually removed form the instance so any risk when reattaching is mitigated. Also when...
December 5, 2012 at 10:06 am
no spaces
no reserved words
December 5, 2012 at 10:00 am
talinkio (12/4/2012)
December 5, 2012 at 9:33 am
we actually schedule our check via SCOM, so if you have an enterprise monitoring tool like SCOM you would hopefully be able to plug the script into it.
December 4, 2012 at 3:20 pm
-- GET DATABASES WITHOUT FULL OR TLOG BACKUPS
-- dbs with no full backups in last week
(select cast(a.[name] as varchar(100)) as db_nm into #no_full_backup
from master.dbo.sysdatabases a
left join msdb.dbo.backupset b
on a.[name] =...
December 4, 2012 at 2:53 pm
A google search of 'script user permissions sql server 2000' returns a number but attached is one we used to use.
edit - if you found the script useful, please vote...
December 4, 2012 at 11:35 am
from http://msdn.microsoft.com/en-us/library/aa259221(v=sql.80).aspx
At any time, only one table in a session can have the IDENTITY_INSERT property set to ON. If a table already has this property set to ON, and a...
November 30, 2012 at 8:08 am
just to rule out the obvious are you using a 3 part naming convention in the insert statement?
November 30, 2012 at 7:57 am
looks like some sort of problem with the copy\paste from the site.
click on the error message in the results pane and it will take you to the actual error in...
November 30, 2012 at 3:35 am
Viewing 15 posts - 856 through 870 (of 4,745 total)