|
use OSQL
You don't have to have the GUI to use MSDE. To build tables, indexes, queries and the like the old fashioned way use OSQL at the c prompt.
To use it, go to the C prompt. (case does matter) Type:
C:\> OSQL -d database-name -U username -P password
then type your queries and such. Pick up a book on SQL Server and it should talk to some extent about OSQL and Transact-SQL (the SQL Server proprietary SQL language). Also, there is probably some documentation on the web about OSQL and all of its calls.
While the Enterprise GUI is nice, it is simply not needed. By the way, after building your tables and the like in OSQL, make a ODBC connection to it using MS Access and you should be able to do data entry using a common GUI.
|