Viewing 15 posts - 511 through 525 (of 1,365 total)
Use the below mentioned script as first step of your job:
Kill DB Users before restoration
USE master
DECLARE @DB_Name varchar(50),
@SPID smallint,
@msg varchar(255),
@DBID int
SET @DB_Name = 'DBName Here'
SET @DBID = (SELECT dbid FROM...
March 31, 2009 at 4:06 pm
Permissions required for performing restore -
Server role : sysadmin, dbcreator
DB role : db_owner
http://technet.microsoft.com/en-us/library/cc966495.aspx
MJ
March 31, 2009 at 3:25 pm
Microsoft SQL Server 2005 - 9.00.3282.00 (X64)
Its:Cumulative update package 9 (CU9) for SQL Server 2005 Service Pack 2
See-->http://sqlserverbuilds.blogspot.com/
MJ
March 30, 2009 at 6:58 pm
March 30, 2009 at 6:50 pm
Try specifying a job log file under the job and see if it logs something helpful ovr there.
MJ
March 30, 2009 at 6:47 pm
Is sql authentication enabled on your sql server?
http://msdn.microsoft.com/en-us/library/ms188670.aspx
MJ
March 30, 2009 at 6:44 pm
What factors determine the page size?
Fillfactor of the index.
MJ
March 30, 2009 at 5:54 pm
Set up a profiler trace and filter it for the databases you need to drop and check whether you see any connections for these databases? Do this activity for...
March 30, 2009 at 5:52 pm
Try specifying max server memory to 2GB and see how it goes.
MJ
March 28, 2009 at 3:03 pm
What do you get in output when u run:
select name,is_broker_enabled from sys.databases
where name='DatabaseName'
MJ
March 27, 2009 at 7:01 pm
What error do you receive when you try to drop it?
MJ
March 27, 2009 at 6:45 pm
Read about it at http://www.db-staff.com/index.php/microsoft-sql-server/69-change-collation
MJ
March 27, 2009 at 6:42 pm
COnnect by specifying port and IP address in format:XXX.XX.XX.XXX,PPPP
MJ
March 26, 2009 at 3:52 pm
a) Same as Sleeping, except Dormant also indicates that the SPID has
been reset after completing an RPC event. The reset cleans up
resources used during the RPC event. This...
March 26, 2009 at 1:31 pm
When using Windows Authentication, if the server instances use different accounts, specify the service accounts for SQL Server. These service accounts must all be domain accounts (in the same or...
March 25, 2009 at 8:54 pm
Viewing 15 posts - 511 through 525 (of 1,365 total)