Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

new DB?

Status
Not open for further replies.

nowayout

Programmer
Feb 25, 2003
364
US
Hi all,

I am getting weird message in SQL Logs.. When i start new Database it gives me lot of message of starting up database 'Test' and it gives me continueslly,,, Why is it like this?

Thanks,,,
 
Your database is set to auto close. Run:
Code:
alter database test
(set auto_close off)
go
This will stop it from unloading the database each time all users log off of the database.

Denny

--Anything is possible. All it takes is a little research. (Me)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top