70-432 Implementation and Maintenance Flashcards
You are deploying a new server within Wide World Importers that will be running a SQL Server 2008 instance in support of a new application. Because of the feature support that is needed, you will be installing SQL Server 2008 Enterprise. Which operating systems will support your installation? (Choose all that apply.)
- Windows Server 2003 Enterprise SP2
- Windows Server 2003 Enterprise
- Windows 2000 Server Enterprise SP4 or higher
- Windows Server 2008 Enterprise
- Windows Server 2003 Enterprise SP2
- Windows Server 2008 Enterprise
Explanation:
SQL Server 2008 Enterprise is supported on Windows Server 2003 Enterprise SP2 and later or Windows Server 2008 Enterprise.
SQL Server 2008 Enterprise Edition is supported on Windows Server 2003 Enterprise SP2 and later or Windows Server 2008 Enterprise.
You are the database administrator at your company. You need to enable the sales support team to perform fuzzy searches on product descriptions. Which actions do you need to perform to satisfy user needs with the least amount of effort? (Choose two. Each forms part of the correct answer.)
- Create a full text index on the table of product descriptions for the description column and specify NO POPULATION.
- Create a full text catalog specifying the filegroup for backup purposes and the root path to store the contents of the catalog on the file system.
- Create a full text catalog and specify the filegroup to store the contents of the catalog.
- Create a full text index on the table of product descriptions for the description column and specify CHANGE_TRACKING AUTO.
- Create a full text catalog and specify the filegroup to store the contents of the catalog.
- Create a full text index on the table of product descriptions for the description column and specify CHANGE_TRACKING AUTO.
Explanation:
Full text catalogs contain full text indexes and the contents of the indexes are stored within the database in SQL Server 2008.
CHANGE_TRACKING AUTO option enables SQL Server to populate the full text index upon initial creation and migrate changes automatically to underlying data into the index.
Wide World Importers will be using the new FILESTREAM data type to store scanned images of shipping manifests. Which command must be executed against the SQL Server instance before FILESTREAM data can be stored?
- sp_filestream_configure
- sp_configure
- DBCC
- ALTER DATABASE
sp_filestream_configure is used to enable the FILESTREAM access level as well as configure the Windows share to be used.
You want to configure your full text indexes such that SQL Server migrates changes into the index as quickly as possible with the minimum amount of administrator effort. Which command should you execute?
- ALTER FULLTEXT INDEX ON START INCREMENTAL POPULATION
- ALTER FULLTEXT INDEX ON START UPDATE POPULATION
- ALTER FULLTEXT INDEX ON START FULL POPULATION
- ALTER FULLTEXT INDEX ON SET CHANGE_TRACKING AUTO
- ALTER FULLTEXT INDEX ON SET CHANGE_TRACKING AUTO
Explanation:
When the CHANGE_TRACKING argument is set to AUTO, SQL Server automatically updates the full text index as changes to underlying data occur. In AUTO mode, no administrator intervention is required either manually or via a scheduled job.
You want to search for two terms based on proximity within a row. Which full text predicates can be used to perform proximity searches? (Choose two. Each forms a separate answer.)
- FREETEXT
- CONTAINS
- CONTAINSTABLE
- FREETEXTTABLE
CONTAINS allows proximity searches by using the NEAR keyword.
CONTAINSTABLE allows proximity searches by using the NEAR keyword.
As part of the implementation of the new Web-based booking system at Margie’s Travel, customers should receive notices when a travel booking has been successfully saved. What technologies or features can the developers at Margie’s Travel use to implement notifications? (Choose all that apply.)
- Activity Monitor
- Notification Services
- Database Mail
- Microsoft Visual Studio.NET code libraries
Database Mail can be used to send messages to customers.
A Visual Studio.NET application can be created to use the mail libraries available within the .NET Framework.
Margie’s Travel decided to minimize the cost and deploy SQL Server 2008 Standard to support the new online division. After a successful launch, managers are having a hard time managing business operations and need to deploy advanced analytics. A new server running SQL Server will be installed. Which edition of SQL Server needs to be installed on the new server to support the necessary data analytics?
- SQL Server 2008 Standard
- SQL Server 2008 Enterprise
- SQL Server 2008 Express with Advanced Services
- SQL Server 2008 Workgroup
Only SQL Server 2008 Enterprise supports all the advanced analytics needed, such as OLAP and Data Mining.
Margie’s Travel is opening a new division to offer online travel bookings to their customers. Managers expect the traffic volume to increase rapidly, to the point where hundreds of users will be browsing offerings and booking travel at any given time. Management would also like to synchronize multiple copies of the database of travel bookings to support both online and face-to-face operations. Which editions of SQL Server 2008 would be appropriate for Margie’s Travel to deploy for their new online presence? (Choose all that apply.)
- Enterprise
- Compact
- Standard
- Express
Standard can handle the user load needed and supports the replication features needed to synchronize databases.
Enterprise can scale to handle any load as well as provide any capability needed by Margie’s Travel.
You have a list of words that should be excluded from search arguments. Which action should you perform in SQL Server 2008 to meet your requirements with the least amount of effort?
- Populate a thesaurus file and associate the thesaurus file to the full text index.
- Parse the inbound query and remove any common words from the search arguments.
- Create a stop list and associate the stop list to the full text index.
- Create a noise word file and associate the noise word file to the full text index.
Stop lists are created in SQL Server 2008 to exclude words from a full text index as well as search arguments. After the stop list is associated to a full text index, any queries that use the index automatically have any stop words removed from the search arguments.
The developers at Margie’s Travel have decided to utilize Database Mail to send messages to their customers. The ability to send mail messages through a given profile needs to be restricted, but it must not require an approved user to specify a mail profile when sending messages. What settings need to be configured to meet these requirements? (Choose all that apply.)
- Set the mail profile to public.
- Set the mail profile to private.
- Designate the mail profile as the default.
- Set the mail profile to private and grant access to approved users.
You need to configure the mail profile to be private along with granting access to the mail profile for approved users.
Designating a mail profile as the default allows approved users to send mail using the profile without the need to specify the profile explicitly.
You want to perform a proximity search based on a weighting value for the search arguments. Which options for the CONTAINSTABLE predicate should you use?
- FORMSOF with the THESAURUS keyword
- FORMSOF with the INFLECTIONAL keyword
- ISABOUT with the WEIGHT keyword
- ISABOUT
ISABOUT performs proximity searches and it also applies weighting if the WEIGHT keyword and weighting value are supplied.
You are deploying SQL Server 2008 Express in support of a new Web-based application that will enable customers to order directly from Coho Vineyards. Which operating system does NOT support your installation?
- Windows Server 2008 Server Core
- Windows Server 2003 Enterprise SP2
- Windows XP Tablet Edition SP2
- Windows XP Home Edition SP2
SQL Server 2008 Express is not supported on Windows Server 2008 Server Code.
Contoso has implemented a new policy that requires the passwords on all service accounts to be changed every 30 days. Which tool should the Contoso database administrators use to change the service account passwords so that SQL Server services comply with the new policy?
- SQL Server Management Studio
- SQL Server Surface Area Configuration Manager
- SQL Server Configuration Manager
- Windows Service Control applet
Only the SQL Server Configuration Manager has the code to decrypt and re-encrypt the service master key used by SQL Server services correctly when the service account or password is changed.
Where would you look to retrieve a list of jobs that have failed?
- The job history in SSMS
- The SQL Server Agent error log
- The SQL Server error log
- The Windows event log
The job history within SSMS lists all the jobs that have executed, along with their execution status.
Your Orders database crashed last night, and you have determined that the crash was caused by a data file running out of space. What tool do you use to send a notification to an administrator as well as expand the data file before it runs out of space?
- SQL Server Agent
- Network Monitor
- Event Viewer
- System Monitor
You can configure a SQL Server Agent alert that notifies an operator as well as execute a job that can increase the space in the data file.