Reputation: 7213
I'm looking to learn ADO.NET and such with SQL. However, i'm at home for the winter so I'm away from my school's servers which were configured already. I'm looking to run something like a local sql server and databases to just practice and learn with. I downloaded and installed MS SQL Server 2008 Express, but I don't know what to do with it to get this going. Are there any guides or materials I can reference to figure out how to accomplish this?
Upvotes: 1
Views: 14405
Reputation: 754368
The easiest way would definitely be to download and use the SQL Server Management Studio Express - that gives you a nice UI to create and work with databases and database objects.
If you can't download SSMS Express, you always do have the sqlcmd
utility at your fingertips - it's a command-line driven utility which allows you to send T-SQL command to your SQL Server - check out the MSDN docs on how to use it in detail.
You could e.g. create a new database using:
sqlcmd -S server1\SQLExpress -U SqlUserAccount -P SqlPassword -Q "CREATE DATABASE (yourdatabasename)"
and you can also do any other T-SQL statement directly from the command line.
Upvotes: 0
Reputation: 28296
As far as learning ADO.NET, binding, etc., take a look at some of these free online videos. They run about 5-15 minutes, some may be longer.
You didn't mention a language but MSDN has pages for VB and C#. These videos cover some SQL Server stuff as well as how to put the pieces together.
Upvotes: 0
Reputation: 72850
Make sure you download and install the one with advanced tools, so you get SQL Server Management Studio. You can then connect you your server as (local)\SQLEXPRESS
(assuming default installation) with Windows authentication, and administer it as usual using Management Studio.
Upvotes: 5