Chapter 01 - Introducing Microsoft SQL Server![]()
![]() As the computer industry continues to move to more distributed environments and moves a significant portion of its data from mainframe to servers, you need to understand the concepts behind a client/server database environment. In several respects, server databases such as Microsoft SQL Server are identical to mainframe databases. The overwhelming majority of databases used on computer systems are relational databases. Also, server databases, such as relational databases on mainframe or minicomputer systems, support the use of Structured Query Language (SQL) as well as proprietary tools to access data. Where you start to see differences in a PC-based client server solution is in the architecture and physical implementation of the system. With a SQL Server solution, your users will be using intelligent client systems such as personal computers. In a mainframe or minicomputer environment, users likely use a terminal or a PC using terminal-emulation software. With more intelligent client systems, users can retrieve information from the server and manipulate it locally. This type of implementation optimizes the processing of the information, allowing each component to work on the information independently in the manner best suited for that component. The server focuses on the database processes, while the client focuses on the presentation of the information.
Why the Move to SQL Server?Two key features of a server database become important because of the client access to data. The first feature is providing a single point of access to the data in the database. The second feature is the division of processing and manipulation between the client and server systems.Microsoft SQL Server permits client applications to control the information retrieved from the server using several specialized tools and techniques. These include options such as stored procedures, server-enforced rules, and triggers that permit processing to be done on the server automatically. You don't have to offload all processing to the server, of course. You still can do appropriate information processing as needed on the client workstation. Since with mainframe or minicomputer systems all processing is done at the host side, it can be initially simpler to implement systems in this environment than with a true client/server implementation. This is because users work at terminals that are directly connected to the mainframe or minicomputer and manipulate only the original copy of the database using the processing power of the mainframe or minicomputer. Although organizations routinely use Microsoft SQL Server to manipulate millions of records, SQL Server provides a number of tools that help manage the system and its databases and tables. The Windows-based tools that come with SQL Server are easy to use for all database operations. These tools can be used to
You can also use a command-line interface to perform all operations with Microsoft SQL Server. A dialect of SQL is used with SQL Server for interactive and application program access to data. (SQL is the de facto standard for database operations, and every vendor's database product should include a version of it.)
Although this book includes coverage of how to use the command-line tool for issuing interactive SQL commands, you should remember that you can perform most operations through the application tools that use the Windows Graphical User Interface. You can use either interface or both interfaces, depending on your interest. If you're already familiar with another SQL dialect, you may initially find that it's simpler to issue direct SQL commands for all operations.
Exploring the Origin and Evolution of SQL ServerMicrosoft SQL Server evolved from the older Sybase SQL Server database, a product that was introduced in 1987. Sybase SQL Server, one of the earliest relational database systems for the PC marketplace, was developed by members of INGRES.In 1988, SQL Server for OS/2 was co-developed by Sybase, Microsoft, and Ashton-Tate when it first came to the PC platform. After SQL Server was ported to NT, Microsoft became the lead partner in the project and Ashton-Tate left the picture. Both Microsoft and Sybase sold and supported the product through version 4.21, as they were by and large the same product. In 1993, partly due to the Windows NT operating system version developed by Microsoft, the co-development/licensing agreement ended. Since that time, Microsoft has focused on the NT Server versions of SQL Server, while Sybase has worked on and sold the minicomputer versions of the SQL Server. Version 6.5, released in April, is the latest version in the progressive tuning and enhancement of the database engine. If you start Microsoft SQL Server using a command line, the information returned in a separate window (which also is written to a separate log file) includes a Sybase copyright noticeevidence of Microsoft SQL Server's origin. Three Sybase copyright notices can be seen in the following excerpt from the startup of an earlier version of SQL Server on Windows NT.
Microsoft originally licensed the core components of SQL Server from Sybase to make the product available on PC platforms running OS/2 and, more recently, Windows NT. You can see from the heritage of SQL Server that it's by no means a new product to the marketplace. Indeed, it's been through many different rounds of revisions, updates, and upgrades, and certainly represents a world-class database platform on which you can develop mission-critical applications. You don't need to worry about "breaking in" a new-to-the-marketplace platform in your organization.
Understanding Relational Features of SQL ServerA key characteristic of SQL Server is that it's a relational database. You must understand the features of a relational database to effectively understand and access data with SQL Server. You can't construct successful queries to return data from a relational database unless you understand the basic features of a relational database.The model for relational databases was designed by Dr. E.F. Codd in 1970 to store, retrieve, and manipulate data in a way that was easier than the hierarchical and network databases. Hierarchical and network databases were difficult to design and sometimes difficult to write proper queries for access to data. Hierarchical and network databases were difficult to work with for several reasons. The physical and logical definitions of data storage in hierarchical and network databases had to be done by using a cryptic definition language syntax. Another difficulty of working with data definitions came from the fact that different types of internal pointers, numeric references to data locations, and more had to be set up and stored through the database. The pointers were used for the subsequent direct retrieval of data. In Codd's relational database model, the data is referenced as though it's stored in a two-dimensional table. The actual physical storage of the dataalthough significant for the time it takes to store, change, or retrieve datais insignificant syntactically for reference. The two-dimensional table model permits data to be referenced as the rows and columns of the table. In a relational database, data is referenced as the rows and columns of a table. You can easily visualize data stored as a table because you often encounter data stored in tables in everyday life. For example, you reference train or plane schedules in the form of a table and you also create typical worksheets in the form of a table. Fig. 1.1 - Example of common table. The rows of a table are unordered in Codd's relational model. In the relational model implemented in Microsoft SQL Server, the rows of a database table are also unordered (they're in the order in which they were entered), unless a clustered index is created for the table. After you create a clustered index for a table, the rows are stored in ascending order by the one or more columns that you use to create the index. Later, this book covers more about clustered indexes.
It's important, however, that the statements you use in the retrieval language to access table rows are independent of the order of the rows. If you require that the rows of a table are retrieved and displayed in an order, the statement that you issue to retrieve the rows must specify the row order. The rows are sorted as they're retrieved for your query. The original relational model required each row to be uniquely defined by at least one column of a table, the unique key. The unique row requirement ensures that each row is accessed or changed independently and uniquely from other rows of the table. The query language used to access table rows can use only data stored within each row to separate one row from another. SQL Server, however, doesn't require you to define unique table rows. You can create two or more rows of a table that can't be referenced separately from one another. Although you may not find a use for duplicate rows, some users feel such rows are desirable in some applications. In Chapter 2 you'll learn more about relational design concepts and techniques, but for now it's important to understand what's possible, if not practical. If you do want to prevent duplicates, you can add a constraint to tables to prevent duplicate rows.
In the relational database model, data that's stored across tables in one or more databases is combined during the access of the rows during an inquiry. For example, if the Employees table contains columns such as Name, Department, and Badge, a second table named Pays can contain the columns Hours_Worked, PayRate, and Badge. You can define the Badge column in both tables. This way, you can subsequently retrieve column values from both tables in a single query. You combine columns from multiple tables by using statements that call out the columns you need and specify the information common to both tables in the Where clause. You'll read more about the syntax of this operation, but for now, it's important to understand only that this pulling together of information based on common values is known as a join.
The example in the Employees and Pays tables uses the relational capabilities of SQL Server to retrieve information from each table using the corresponding badge numbers. An example Select statement would be as follows:
It's easiest to maintain referential integrity if table rows are unique. This ensures that there will be only a single row in a second table. Make sure you maintain the badge number if it is modified or deleted in the first table. In the relational-database model, the column, or set of columns, that uniquely defines the rows of a table is referred to as a key.
In earlier database systems, internal pointers were created and maintained within the database to link the corresponding rows stored in the tables. The pointer mechanism created a problem, however, because when the database was created, you had to define the data that was later combined during retrieval.
If you neglected to identify data that must be combined later during retrieval, you couldn't do it once the database structure was created. You had to re-create the logical and physical structure of the database. The main problem involved with using hierarchical and network databases was that changes in data-retrieval combinations were impossible to make without redesigning the database. In relational databases such as SQL Server, you can add a new column to a table at any time. This allows you to create relationships with other tables. Unlike typical hierarchical or network databases, the database doesn't need to be redefined; only a single table must be redefined. You don't need to unload the rows of the table and later reload the table to add a new column. You can use SQL's ALTER TABLE statement to make modifications to existing tables.
Exploring Client/Server Features of SQL ServerClient/server computing is a type of distributed model for data storage, access, and processing. In a distributed processing system, multiple computers collectively perform a set of operations. A client/server system uses at least two computers, one of which is nearly always a personal computer.
Each system in a client/server model performs one or more of the data storage, access, or processing operations. Client/server computing can't be done with a system that uses terminals or PCs running terminal emulators connected to another computer. In this arrangement, the terminal or the PC that's used like a terminal is simply too passiveit only sends and displays sets of characters. When PCs and servers are connected, the overall processing should be divided between the server, mainframe, or minicomputer system and the client system. The client and the server each process work within its own capabilitiesa form of teamwork that contributes to the efficiency and speed of the overall operation. Client/server, as the name implies, also involves an unequal division of processing. The inequality results from the processing disparity between the server and the client. The larger and faster server computer transfers data faster, stores greater quantities of data, and typically performs more extensive processing than the client system. Smaller PC systems are used as the client in a client/server system because the PCs perform proportionally less of the overall work, relying primarily on the server for heavy-duty data manipulation. Also, the PC's keyboard and monitor allow it to work as an input device (generating commands and data) and as a output device (displaying data to the user).
You can use large, powerful PCs as servers with less powerful PCs as clients and still qualify as using client/server technology. In this environment, the PC servers are usually more powerful than an average PC; this helps them perform processing requests from many clients. Microsoft SQL Server is a perfect example of a client/server system. The SQL Server database must be installed on the Windows NT platform. The Windows NT operating system provides you with an extremely broad range of processor systems to use as your server. Windows NT is supported on I86 processor-based systems, PPC, MIPS, and Alpha AXP RISC-processor-based systems Microsoft SQL Server is provided with the server software that's installed on the server system and some client software that's installed on the client PC systems. Windows GUI application tools allow the database and all objects to be created, maintained, and accessed from the client. The network software components required for the interconnection of clients and the server computer are built into the Windows NT system. Windows NT also provides a choice of network protocols for communication between the client and server systems. A client can run Windows 95, which also contains built-in network software for connection with the Windows NT server system. The Windows 95 client and Windows NT server systems support a wide range of network cards. In a client/server system where the server application is a database such as SQL Server, the server is responsible for the creation and maintenance of database objects such as the table and indexes. The server maintains referential integrity and security and ensures that operations can be recovered in the event of numerous types of failures. The client performs all user interaction, including information display and allowing manipulation of the application with the graphical user interface. After rows of data are retrieved from the server, the application can create copies to be held locally and the data can be manipulated. You also can control the type of access to the information. Read-only access is often an excellent option, insulating the user from the master copies of the information that they work with on the server. If you work with local copies of the information, you can work with the information locally without communicating with the server. After you complete your work, you can send changes back to the server or, if the information was for review only, simply discard the working databases. Of course, you also can manipulate the data directly in the SQL Server database from the client, if needed. You must be sure to update the server with all changes so that other users can access the most recent data in the database. You can also access SQL Server directly from the server. Direct server access is convenient, especially for administrative operations, but it isn't a client/server approach because the operations occur locally rather than across the network. Microsoft SQL Server comes with 32-bit versions of the SQL Windows application tools for the Windows NT server that are normally used on the clients. Although you can have client applications validate new or updated data, the validation should optimally be done at the server. For example, a column such as Badge can be checked to ensure that each new or updated badge number is unique and within a specified range. It's safer for the data to be validated at the server as a part of a SQL Server-defined mechanism. If the validation is defined at the server, it will always be in force whether or not the connected client performs a validation.
If you rely on client applications to validate data before it's sent to the server, you must ensure that all the client applications do it consistently. You must also ensure that changes aren't made directly at the server, where no validation mechanism has been defined. It's simpler and more reliable to implement server validation.
Examining SQL Server Features and ComponentsThe core component of Microsoft SQL Server is the relational database and its structure. As you no doubt agree, SQL Server is a powerful, comprehensive database environment. There are certain parameters to using SQL Server and they're pointed out here.Microsoft SQL Server allows you to define up to 32,767 databases. If you realize that the definition of a database is a centralized repository for the storage of information, it is difficult to be overly constrained by the 32,767-database limit. It's unlikely you'll encounter any situation in which you need to define more than this very liberal limit. If you do, you'll certainly want to be looking at adding additional servers to your network to help balance the load. In a typical production installation, you'll often find that less than fiveand often only oneapplication-oriented databases will be in service on any given server. You can also define up to 2 billion tables within each of your 32,767 databases. It's not likely that you'll need anywhere near 2 billion tables in a database. With most typical systems, you'll have only several hundred tables in a database. You can define up to 250 columns for each table. In Chapter 2, where you'll learn about database design, you'll see that when you normalize your database tables, you largely overcome this limitation. As you'll see, SQL Server allows columns from as many as 16 tables to be combined in a single query. The number of rows in a table is effectively unlimited for Microsoft SQL Server. You're limited in practice by the capacity of the storage medium on which tables are stored, and databases and their tables can be stored across multiple physical disks. Microsoft SQL Server allows databases to expand to include up to 32 physical disks.
You can define up to 250 indexes for each table, only one of which can be defined as a clustered index. An index is a structure that allows the table rows to be retrieved more quickly than they could without using an index. In a clustered index, the table rows are sorted and maintained in storage in a physically ordered state. That is, rows that are sorted before and after one another are also stored in that sorted order. An index is often defined for the columns that are referenced in retrieval statements. 250 indexes should provide fast retrieval of table rows. Indexes require additional storage space in the database for the index structure that must be created and stored. One performance recommendation is to define as few indexes as you need because of the space they take up. You still need to define enough indexes to allow the rapid retrieval of rows. You should define the minimum number of indexes that you require; it would be unusual for you to need more than 250 for a single table.
Devices and DatabasesYou store databases and all the objects within them in disk files. Microsoft SQL Server calls your database files devices, but they're logical units rather than physical devices. You create a database on the logical devices. Remember that you can create up to 32,767 databases.Each database is created with a set of system tables in which SQL Server records data about the database objects such as tables or indexes that you subsequently create. Like a relational-database product, SQL Server keeps the control information about your database objects in a relational databasethe set of system tables.
Transact-SQLStructured Query Language (SQL) is the query language developed by IBM in the 1970s that has become the de facto standard database query language for relational databases. The dialect of SQL that you use with SQL Server is Transact-SQL, which Microsoft implements as a core component of SQL Server.Transact-SQL adds additional keywords to those of the original SQL for the formation of data retrieval, storage, and manipulation. When SQL Server's implementation of SQL was put into place, like other database vendors, Microsoft added features and extensions to the language. Compared to other vendors' SQL dialects, Transact-SQL has less unique syntax. Arguably, the SQL dialect SQL-PLUS, used with the relational database Oracle, has the most additional unique syntax. Although the large set of unique syntax in some SQL dialects is useful, the use of dialect-specific syntax makes stored sets of SQL commands non-portable and can be the cause of many headaches when moving your systems between servers.
Transact-SQL is best characterized as lean and mean. You have just enough enhancements to basic SQL to write functional queries. Transact-SQL contains statements to create logical storage units, the devices, as well as the databases that reside on the devices. You can also use Transact-SQL statements to create the objects, such as tables, that are stored within the databases. Not surprisingly, you can also use Transact-SQL statements to add and manipulate data and other database objects. Four keywords are used to form statements that perform all basic data storage, retrieval, and manipulation. Use INSERT to add new rows to a database table. Use DELETE to delete rows from a table and use UPDATE to change rows of a table. Use SELECT to form various statements for the retrieval of data from one or multiple tables. The INSERT, DELETE, UPDATE, and SELECT statementsas well as other statementsuse a generic form of SQL for data manipulation. The extensions to Transact-SQL are principally for flow control to direct the execution order of statements. Use flow-control statements in organized sets of SQL statements that are stored as objects within your database. Stored sets of Transact-SQL statements contained within the SQL Server database are called stored procedures, which are compiled so that they rapidly execute SQL statements. You can use stored procedures in addition to programs for database access and manipulation because they can use variables and parameters, return errors and status, and use flow control to control the execution order of SQL statements.
A trigger is a special type of stored procedure used to maintain referential integrity in a SQL Server database. You create insert, delete, and update triggers to control the addition, deletion, or updates to corresponding rows of related tables for which the trigger is defined. Triggers are an excellent way to maintain referential integrity because you have complete control over the operations that they perform, and they're server-based. You also use several additional objectsrules, defaults, and constraintsto help control or apply values automatically to table columns. You use a default to supply a value to the column of a database table when the insertion of a new row doesn't specify a value for the column. A rule constrains the values that can be entered into the column of a table. A constraint is used to define a characteristic of a table column, such as requiring only unique values. Two Windows NT processes are part of the SQL Server set of components. You issue Transact-SQL statements that are conveyed to and performed by the two server processes. You can use a tool such as the Performance Monitor to display the characteristics of the SQL Server processes. For example, in figure 1.2, shows the working set for the two SQL Server processes SQLSERVR and SQLEXEC. The working set of a process is the percentage of processor time that's directly allocated to a process. Fig. 1.2 - The Performance Monitor displays the characteristics of the SQL Server processes. The SQLSERVR process is divided into multiple threads for execution. Threads are the separate units of execution on a Windows NT system. The division of one of the two SQL Server processes into multiple threads allows multiple execution in a multiprocessor environment such as Windows NT. If your server has more than one processor, different operations on the SQL Server databases can be executed simultaneously.
You can use Windows NT's Performance Monitor not only to monitor the performance of SQL components, but to learn about the function of components. For example, you can perform different Transact-SQL statements and use the Performance Monitor to determine which component is activated to perform the operation.
Command-Line ApplicationsYou can issue SQL statements through the Interactive Structured Query Language (ISQL) utility. ISQL/w is the Windows tool that allows you to use Transact-SQL with SQL Server from a graphical interface (see the section entitled "ISQL/w" later in this chapter). If you become familiar enough with Transact-SQL syntax, or if you prefer working at the DOS command line, you can perform all operations on your databases through ISQL command lines.From a command-line session, you invoke ISQL with the command isql. You can use several parameters on the ISQL command line. For example, you can enter the user name and password following ISQL to bring you directly into an ISQL command session. The following example shows the initiation of a command session. The command prompt is successively numbered until the termination command GO is entered.
Table 1.1 summarizes the function of each parameter. Each parameter (also called a switch in the Microsoft SQL Server documentation) is preceded with a forward slash (/) or a hyphen (-). The command isql /? displays the hyphens (-), although the hyphen or forward slash can be used. (The use of the hyphen in command-line ISQL is inherited from the Sybase version of SQL Server.)
Table 1.2 lists the set of commands used after you enter ISQL. These commands must be used at the beginning of a command line (a 1> prompt).
ApplicationsFour GUI applications are available to access and manage SQL Server installations.The first of the applications allows you to enter Transact-SQL statements. The second, the SQL Client Configuration Utility, allows you to define the set of database and network library routines for database operations performed from a client system. The third, SQL Server Books Online, provides you with a complete set of SQL Server manuals organized for retrieval through the Books Online Browser. The final major tool is the Enterprise Manager. It's likely that you'll spend a fair amount of time in this utility as it provides access to the core administrative functions for SQL Server.
ISQL/wA Windows version of ISQL called ISQL/w issues Transact-SQL statements. You enter Transact-SQL commands in a separate query window within the ISQL/w main window. You can cut, copy, paste, print, save, and edit previous queries more easily in ISQL/w than you can through an ISQL command line.After you start the ISQL/w application, you sign in to SQL Server by indicating your user name, password if necessary and the server you want to use. SQL Server maintains its own list of users who may connect to a server from a client system by using a valid login ID and user name.
Figure 1.3 shows a select statement used to retrieve all rows from the system table sysdatabases, which contains a list of all defined databases. The tabular list of columns of information kept for the databases is displayed on the Results screen. Fig. 1.3 - SQL statements are entered in the Query page of ISQL/w. Your query output is displayed in a separate Results screen, which you can reach by clicking the Results tab. In addition, when you submit a query, ISQL/w automatically switches the current view to the Results tab. The Results tab shows information such as the rows returned by a query and error messages. You can use the scroll bars to view the entire query output. For example, figure 1.4 shows the tables that are automatically created when SQL Server is installed. Fig. 1.4 - You can use ISQL/w from both the client and server systems.
The SQL Client Configuration UtilityThe SQL Client Configuration Utility defines the Net-Library and DB-Library used for communication between the client and server. Figure 1.5 shows the SQL Client Configuration Utility dialog box. Click Locate to check for multiple copies of client libraries on your client or server system. You must consult the documentation of your client product to confirm that the correct version of the DB-Library is chosen.Fig. 1.5 - Establish the client configuration by selecting the appropriate tab.
The Net-Library default is set to Named Pipes when you install the SQL Server client application tools on a client system. Named pipes is the default communication mechanism used for communication between the client application and the SQL Server system. You can choose a different network library to use an alternate communication mechanism from named pipes. For example, as figure 1.6 shows, you can choose alternate mechanisms for the TCP/IP, IPX/SPX, and Banyan VINES transport protocols. Fig. 1.6 - Several communication mechanisms are available.
Using SQL Server Books OnlineThe SQL Server Books Online help facility contains the contents of 13 books (see fig. 1.7) and a glossary on SQL Server. Like ISQL/w and the SQL Client Configuration Utility, the SQL Server Books Online application can be installed automatically on a client or server system. You'll find it extremely convenient to have quick access to such extensive documentation without leaving your computer system. These books include the entire text of the SQL server documentation as provided by Microsoft.Fig. 1.7 - You can print or copy pages or complete sections of the Books Online information.
SQL Service ManagerThe SQL Server Manager is one of the only utilities available when physically working on the server. The SQL Service Manager application starts, stops, or pauses the SQL Server processes. You must start SQL Server before you can perform any operations with the databases. The SQL Service Manager is the easiest way to start either a local or remote server. Figure 1.8 shows the SQL Service Manager dialog box after the MSSQLServer service is started.Fig. 1.8 - If you pause the MSSQLServer service, no additional client or server connections are permitted.
The traffic light metaphor simplifies the starting, stopping, and pausing of SQL Server. Double-click Stop or the red light to stop SQL Server; double-click Pause or the yellow light symbol to temporarily pause SQL Server if the server has been started.
SQL Enterprise ManagerSQL Enterprise Manager is the server application that you use to perform nearly all administrative operations with local or remote servers. You can even use SQL Enterprise Manager to start and stop both SQL Server services rather than use the SQL Service Manager. SQL Enterprise Manager is also used to do the following:
You also may find that it's convenient to perform queries by using Transact-SQL commands from within SQL Enterprise Manager. Click the SQL Query Tool toolbar button of SQL Enterprise Manager's main window (see fig. 1.9) to bring up a window through which you can issue ISQL statements. Unlike ISQL/w, you won't have to connect and log in because you're already connected when you started SQL Enterprise Manager. Fig. 1.9 - In Enterprise Manager, you can issue SQL statements directly by using the Query Analyzer button. Although you also can perform all the administrative operations for SQL Server through ISQL, SQL Enterprise Manager allows you to perform the operations with pull-down menus and dialog boxes rather than a command line. In figure 1.10, the grouping of server objects under folders have been expanded to display several different types of server entities. Fig. 1.10 - Server objects are displayed in a hierarchical fashion in the Server Manager window.
SQL Performance MonitorThe SQL Performance Monitor is a standard administrative application of the Windows NT operating system. SQL Server was written to allow SQL Server objects and counters to be displayed within the Performance Monitor with Windows NT object counters. For convenience, an additional icon is added that has a predefined set of objects and counters used for monitoring SQL Server.Figure 1.11 shows a chart view of several important SQL counters that you can use to monitor the performance of SQL Server on your system. The integration of the SQL Server objects, counterssuch as the cache hit ratioand user connections enables you to select and display SQL Server statistics with NT objects and counters. Fig. 1.11 - The Performance Monitor is used to display statistics on the performance of both the system and SQL Server. In addition to the chart display in figure 1.11, you also can dynamically switch to display the counter information as a vertical bar graph rather than a chart. You can also record object counters in a log for later display, or you can display the information in the form of a tabular report. The Performance Monitor also allows you to set threshold values for SQL Server counter values. When the threshold value is reached, an alert is displayed within an Alert view of the Performance Monitor. A message can also be sent to you about the alert even if you're working on a client workstation.
SQL Security ManagerThe SQL Security Manager administers SQL Server accounts. Choose one of the following three security types you want to implement on your system during the installation of SQL Server:
Figure 1.12 shows the main window of the SQL Security Manager. The Security Mode in the lower left corner is standard for the Windows NT domain PACKBELL. Login access through named pipes has been granted to users who are members of the SQL Server group Administrators. Fig. 1.12 - Integrated security provides the simplest account management in SQL Server. The SQL Security Manager graphically maps Windows NT groups and users to SQL Server accounts and passwords. You can also use the SQL Security Manager to find SQL Server access permissions for mapped accounts.
From Here...Now that you've learned the basics of how SQL Server will be implemented in your organization, we'll begin working with the topics that will really make SQL Server get to work for you.Be sure to also review Appendix A, "Installation and Setup of the Client and Server Software," so you understand what will be installed and where it will be located on your system. For more information about selected topics, see the following Chapters:
|