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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recovery is checkpointing database ...?

Status
Not open for further replies.

jballum

MIS
Jul 10, 2000
161
CA
Whenever SQL Server is restarted in the ERRORLOG the following messages always appear:

Starting up database 'MYDATABASE'.
Clearing tempdb database.
Recovery is checkpointing database 'MYDATABASE'.
Starting up database 'tempdb'.
Recovery is complete.
...
Starting up database 'MYDATABASE'.

another hint to the problem might be the following error found a lot:

"This SQL Server has been optimized for 8 concurrent queries. This limit has been exceeded by 6 queries and performance may be adversely affected."

Any ideas on the trouble I should be looking for?

Thanx

JB
 
Which version of SQL Server are you running? The first few messages are quite normal. The message about concurrent queries indicates you must be running MSDE or SQL Server Personal Edition. Check the version using SELECT @@version. Terry L. Broadbent - DBA
SQL Server Page:
If you want to get the best answer for your question read faq183-874.
 
Thanks for the prompt response TL.

I think it may be Personal Edition. With Personal Edition, is there a maximum number of concurrent queries of 8?

JB
 
I don't think the maximum number of concurrent queries is 8 but the optimum number is 8. Theoretically, performance will degrade if more than 8 queries are executed concurrently. Terry L. Broadbent - DBA
SQL Server Page:
If you want to get the best answer for your question read faq183-874.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top