Only SQL Server configuration tools got installed. What's the problem?
I installed SQL Server 2005 E开发者_开发知识库xpress edition on my system. I am using Windows 7 (64 Bit) OS.
While installing it said compatibility issues. Though, it got installed and showed successfully installed. But, only the configuration tools were installed.
Also, how to create a database or how can I use it.
Thanks Vinaychalluru
There are indeed compatibility issues with SQL Server 2005 on Windows 7. I believe that these were addressed in a service pack which is available through Windows Update.
With respect to the second part of your question, SQL Server 2005 does not ship with any graphical management tools, you can however download SQL Server Management Studio Express free from Microsoft.
A command-line environement is provided with SQL Server that will allow you to connect to the server and execute SQL statements.
To connect to SQL Server Express Edition instances, assuming the default instance name was used, you can type the following at a command prompt
sqlcmd -S .\SQLEXPRESS
If ths succeeds you will see the SQLCMD prompt which looks like
1)
From there you can execute any valid SQL statement, including this one which will create a database
CREATE DATABASE YourDatabaseName;
For the statement to have an effect,you also need to issue the GO
cimmand
精彩评论