Which system database is hidden to SQL Server Management Studio and is used to persist a read-only version of system objectsA. Exam objectives review: ˛ Summary of Exam Objectives ˛ Exam
Trang 182 Chapter 2 • Installing SQL Server 2008
14 Which of the following is the SQL Server component that provides the services for creating, processing, and managing OLAP and data mining?
A Business Intelligence Developer Studio
B SQL Server Management Studio
C Windows PowerShell 2.0
D SQL Server Database Engine
E Analysis Services
15 Which of the following is a scalability feature in SQL Server Enterprise
Edition?
A Partitioning
B Data Mining Queries
C Binary and compressed XML transport
16 In which directory are the installation log files found?
A <drive>:\Program Files\Microsoft SQL Server\\100\Setup Bootstrap\LOG\Files\
B <drive>:\Program Files\Microsoft SQL Server\\90/Data
C <drive>:\Program Files\Microsoft SQL Server\\Binn
D <drive>:\Program Files\Microsoft SQL Server\\logs
17 Which system database is hidden to SQL Server Management Studio and is used to persist a read-only version of system objects?
A Master
B Resource
C Tempdb
D System
18 Which is the compatibility version associated with SQL Server 2008?
A 80
B 90
C 100
D 200
Trang 2Installing SQL Server 2008 • Chapter 2 83
19 Which SQL Server tool is used to check that SQL Server component services
are running?
A SQL Server Management Studio (SSMS)
B Business Intelligence Development Studio (BIDS)
C SQL Server Configuration Manager
D SQL Server Profiler
E Database Engine Tuning Advisor
20 Which type of file contains data and database objects such as tables and
indexes?
A Data files
B Log files
C File groups
D Binary files
E Summary.txt
Trang 384 Chapter 2 • Installing SQL Server 2008
Self Test Quick Answer Key
1 C
2 C
3 A
4 C
5 A
6 A
7 D
8 D
9 E
10 B
11 D
12 B
13 C
14 E
15 A
16 A
17 B
18 C
19 C
20 A
Trang 4Exam objectives review:
˛ Summary of Exam Objectives
˛ Exam Objectives Fast Track
˛ Exam Objectives Frequently Asked Questions
˛ Self Test
˛ Self Test Quick Answer Key
Configuring
SQL Server 2008
Chapter 3
MCTS SQL Server 2008
Exam 432
Exam objectives in this chapter:
■ Instances vs Default Instance
■ SQL Server Configuration Manager
■ sp_configure and SQL Server Management Studio
■ Database Mail
■ Full-Text Indexing
Trang 586 Chapter 3 • Configuring SQL Server 2008
Introduction
This chapter explores using multiple SQL Server instances and managing connection protocols and service accounts with Configuration Manager You’ll learn about some key configuration options and how to set them using sp_configure and Management Studio as well as how to set up and use Database Mail and manage Full-Text Indexes
Instances vs Default Instance
A SQL Server installation is referred to as an instance Up to and including SQL Server 7.0, only one installation of SQL Server was possible on a server, but that restriction didn’t suit a number of deployment scenarios that customers required, including high-availability and consolidation
With the release of SQL Server 2000, multiple installations of SQL Server were possible on a single server and were known as SQL Server instances SQL Server
2008 continues with this model and with very few changes
A default instance has much the same profile that SQL Server installations have
had in past; you install SQL Server and then connect using the computer name of the server Your Windows Server can only have one computer name, so you can only use it to connect to one SQL Server instance This is called the default
instance
If you install additional instances of SQL Server, these are referred to as named instances You connect to them using the <computername>\<instancename> format For example, if you have a server named PLUTO and you install a named instance named SQL1, you would connect to that instance using PLUTO\SQL1 If you installed another named instance called SQL2, you would connect using PLUTO\ SQL2 If you had a default instance installed, you would connect using PLUTO Each instance is completely independent of any other instance and has its own set of services, databases, and configuration settings All the components of a single instance are managed together, and service packs and patches are applied to all components within an instance
During the installation process you have to specify a unique instance ID, which
is used to define the directory structure, registry structure, and service names for that instance This is new in SQL Server 2008 By default, the instance name that you specified is used as the instance ID For the default instance, MSSQLSERVER
is used as the instance ID