http://support.microsoft.com/kb/195759/en-us5. Q. When I try to start SQL Server 7.0 on Windows NT or from a Windows 9x Command prompt, I receive the following error: 
Your SQL Server installation is either corrupt or had been tampered with (unknown package id) Please rerun setup. 
When I attempt to start SQL Server 7.0 on Windows 9x using the SQL Server Service Manager, nothing happens. What causes this and how can I resolve it?A. This error message appears if you have renamed the Windows computer on which you installed SQL Server 7.0. SQL Server 7.0 uses the Windows computer name internally; if you change the Windows computer name, SQL Server detects a different name and generates the error message.NOTE: Your data has not been corrupted or damaged in any way.To resolve this error and start SQL Server again, do either of the following:• Run SQL Server 7.0 Setup from the original product CD. Doing so will not reinstall SQL Server or any components; however, it will update SQL Server 7.0 internally to reflect the new Windows computer name. You also need to update SQL Server's internal servername by running the following two stored procedures: 
   sp_dropserver <old_name>
   go
   sp_addserver <newname>, local
   go

If SQL Server is configured to listen on either the Multiprotocol or NWLink IPX/SPX network libraries, you'll need to remove them, and then add them back using the SQL Server Network Utility.  
&#8226; Change the Windows computer name back to the original name it had when you first installed SQL Server 7.0.