Viewing 15 posts - 226 through 240 (of 334 total)
if you have pubs database, please run below query and post the results
use Pubs
go
sp_fulltext_database 'enable'
go
June 27, 2006 at 9:47 am
Thanks for correcting me John. I agree with action plan given by John. to Add:
First step will be rebuild master database and then you need to restore from the backup...
June 27, 2006 at 5:15 am
If you want to change database owner it should be simple.
you can use system procedure sp_changedbowner
Someone has to be dbo of the database. You can revoke Sysadmin role from sa
June 27, 2006 at 4:56 am
you want to hide it from System Administrator (sa account) ?
June 27, 2006 at 3:36 am
Looks like autoclose is ON for all those database.
Try by turning the option OFF.
use Enterprise Manager and right click on database. Go for Option tab and uncheck Auto Close.
HTH
June 27, 2006 at 3:31 am
For Ted,
http://support.microsoft.com/kb/899976/en-us
<script type=text/javascript>loadTOCNode(2, 'moreinformation');</script>After you install SQL Server 2000 Service Pack 4 (SP4), SQL Server may not choose an index seek if you compare numeric columns or...
June 27, 2006 at 2:20 am
Please check if Autoclose is ON for the database. do you see something like below.
2006-06-27 13:26:01.22 spid55 Starting up database 'a'
2006-06-27 13:26:05.29 spid55 Starting up database 'a'.
2006-06-27 13:26:06.12 spid55 ...
June 27, 2006 at 1:59 am
Model is template for every new database being created.
If you add a user to model, it will be propogated to all new database created.
June 27, 2006 at 1:51 am
from the error 1450 I can tell that you are getting below error message
"Insufficient system resources exist to complete the requested service"
what are the parameters you are passing to sqliostress
please...
June 27, 2006 at 1:45 am
June 27, 2006 at 1:21 am
"NT AUTHORITY\SYSTEM" gives me kind of clue that there might be some application/service running this.
I agree with Philiip about profiler and DBCC filter.
1. Do you have some application which monitors...
June 27, 2006 at 12:41 am
You are doing it on SQL 2000? If yes, read below...
Its strange that you are not having sp_dboption. sp_dboption is supported for backward compatibility in SQL 2000.
As a workaround run below
sp_configure...
June 27, 2006 at 12:09 am
As per BOL
Microsoft® SQL Server™ 2000 provides parallel queries to optimize query execution for computers having more than one microprocessor. By allowing SQL Server to perform a query in parallel...
June 27, 2006 at 12:02 am
Check recent SQL Error Logs and see exact reason for not able to recover master. As suggested by Rudy you may need to restore last full backup of master,.
June 26, 2006 at 11:50 pm
Log shipping is a nice way of "backup/restore"
June 6, 2006 at 5:54 am
Viewing 15 posts - 226 through 240 (of 334 total)