Can someone please HELP ME!!!!! I am new to SQL Server, I need to delete or remove a database engine that I no longer need??.. I have SQL Server 2005 express, I do not know how to Drop the database??, where is the Query analyser??.. Can someone help me. Thanks.
You can drop the database if you do not need it. Open a Query Analyer and run the following statement
Drop Database YourDatabaseNametobedroped
Go to the complete details ...