Well, I'm glad I have been able to be of some slight assistance so far. I was happy to see in the other thread (MSDE 2000) some of the same information we've been talking about. So what it looks like you may have to do at this point is try to log in using an administrator password. The default administrator user name is "sa" and the default password is usually blank, "sa", or "password". I hope you changed that during installation, but if you didn't, then you can try one of those suggestions. Once you log in as an administrator, you may want to set up some logins right away, such as the ComputerName\Administrators group with full privileges. I really feel bad for you that you are working with MSDE as your first experience working with SQL Server, because although the engine is great and powerful, there is no graphical help and you have to do everything using SQL Commands. Larger ramp-up time than normal. The good news is there's very comprehensive documentation called SQL Server Books On-Line at http://msdn.microsoft.com/library/default.asp?url=/library/en-us/tsqlref/ts_tsqlcon_6lyk.asp?frame=true[^] which gives you syntax for all the SQL Queries you could ever wish to do. Let's take a SQL Server Authentication example: Add the login 'SusanH' to the SQL Server instance EXEC sp_addlogin 'SusanH', 'SusanHsPassword' Give 'SusanH' some permissions GRANT CREATE DATABASE, CREATE TABLE TO SusanH Now let's look at a Windows Authentication example: Grant permissions to an existing domain account EXEC sp_grantlogin 'MyDomain\SusanH' -or- EXEC sp_grantlogin 'MyComputerName\SusanH' I'm not completely sure if these are proper samples that will work, however I think you get the idea and can take it from here by looking through the transact-sql reference documentation. They give the syntax for the statements at the top, examples at the bottom, and links to 'see also' topics. Good luck.