[ Team LiB ] |
C.2 MSDE EssentialsMSDE has been around since Visual Studio 6, and you can find additional information about using it from Microsoft at http://www.microsoft.com/sql/techinfo/development/2000/MSDE2000.asp. Table C-1 lists the differences between SQL Server and MSDE.
Though MSDE lacks a graphical tool for executing SQL queries and commands, you can use the OSQL command-line utility. It allows you to execute Transact-SQL statements, system procedures, and script files interactively from a command line. Behind the scenes, the OSQL utility uses ODBC to communicate with the server. To log on to an MSDE instance that uses integrated Windows authentication, enter the following command line: osql -E To log on to an MSDE instance that uses SQL authentication, enter this instead: osql -U sa To access an MSDE instance on another computer, enter: osql -S serverName -U sa Once you have logged on to the OSQL command line, you can enter SQL commands, store procedure statements, and so on (see Figure C-2). Use the go command to execute what you have entered so far, the quit command to return to exit, and the use command to specify the database you want to work with before you attempt to access its tables. For example, to view information from a table, you might enter the following commands in OSQL: USE Northwind SELECT * FROM Customers GO More information about OSQL can be found online at http://msdn.microsoft.com/library/en-us/coprompt/cp_osql_1wxl.asp. Figure C-2. Performing a query with OSQL |
[ Team LiB ] |