Newbie dot Org HomePage
Visit one of our web buddies
My computer keeps rebooting
Terry
alatar32@hotmail.com
01/14/03
Help! My computer keeps rebooting.

I'm running W2K Professional and an evaluation edition of SQL 2000. I reviewed the event log to find out why the computer was rebooting. The only logs that looked like they might be related were about SQL 2000, so I uninstalled it. But the reboots continue and the event logs continue! What else can I do to prevent these errors (and hopefully prevent the rebooting too)?

--Terry

Attached: records from Event Viewer

Application Log:
The description for Event ID ( 17055 ) in Source ( MSSQLSERVER ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. The following information is part of the event: 17052, Microsoft SQL Server 2000 - 8.00.194 (Intel X86)
Aug 6 2000 00:57:48
Copyright (c) 1988-2000 Microsoft Corporation
Enterprise Evaluation Edition on Windows NT 5.0 (Build 2195: Service Pack 3)

System Log:
The MSSQLServerADHelper service terminated with the following error:
Configuration information could not be read from the domain controller, either because the machine is unavailable, or access has been denied.

ed

01/28/03
bad power supply? loose connections? Probably cooling fan/heat sink combination.
hope it helps
Matthew "bubba
linux.server@charter.net
03/22/03
it could be win2k getting an error, by default it reboots when theres an error
Mee Mie
please@whocares.com
07/21/03
CAUSE
This warning message may be logged because the NO_LOG and TRUNCATE_ONLY options of the BACKUP statement truncate the transaction log files, and you might need transaction logs for the full recovery of the database.
MORE INFORMATION
You might see the message only when you have the database in full recovery mode, and you try to back up the transaction log by using either the NO_LOG or the TRUNCATE_ONLY options. You may not receive the error message when you do not have the database in full recovery mode, or when you do not use the NO_LOG or TRUNCATE_ONLY options when you back up the transaction log.

Note The NO_LOG or TRUNCATE_ONLY options truncate the transaction log. When you use these options, you might not receive a full database backup.

To view the SQL Server error log, you can use the sqldiag command prompt utility. The sqldiag utility gathers and stores both diagnostic information, and the contents of the query history trace (if running). By default, you might find the output file SQLDiag.txt in the following location:

:\Program Files\Microsoft SQL Server\MSSQL\LOG

The output file includes the text of all the SQL Server error logs.

For more information about how to use the sqldiag utility, visit the following Microsoft Web site:

sqldiag Utility

Steps to Reproduce the Behavior

To reproduce the behavior, follow these steps:
Open SQL Query Analyzer.
Create a new database, and name it test. For example:CREATE DATABASE test GO
Set the database recovery mode to FULL. For example:ALTER DATABASE test SET RECOVERY FULLGO
Create a new table and name it testtab in the database. Enter some data in testtab. For example:CREATE TABLE testtab( numbers int )GODECLARE @i intSET @i=1WHILE @i<=100BEGININSERT INTO testtab VALUES(@i)SET @i=@i+1ENDGO
Back up the database that is named test to a disk device. For example:BACKUP DATABASE test TO DISK = 'c:\Testdb.dmp'GO
Make a few changes to the table that is named testtab in the database that is named test.
For example, delete some rows from the table testtab:DELETE FROM testtab WHERE numbers<=10GO
Back up the transaction: BACKUP LOG test TO DISK = 'c:\Testlog.dmp'GO

Note Check the Application Log in Event Viewer. No error message appears for the backup.
Make some more changes to the data, and then back up the transaction log again by using the NO_LOG option. For example:DELETE FROM testtab WHERE numbers<=20BACKUP LOG test WITH NO_LOGGO

Note Check the Application Log in Event Viewer. You can find the error message for the backup.
Create a full database backup for the database that is named test:BACKUP DATABASE test TO DISK = 'c:\testdb.dmp'GO

Note Check the Application Log in Event Viewer. No error message appears for the backup.



© Copyright 1998-2004 Newbie dot Org -- All rights reserved --



This site maintained by Galaxy Website Design


--|--