SlideShare a Scribd company logo
R2
 Create Service Accounts
 Install a SQL Server 2008
 Understand Collation Sequences
 Understand Authentication Modes
 Install Sample Databases
 Configure a SQL Server Instance
Service Accounts
 All the core SQL Server components run as services.
 To configure each component properly, you need to create several service
accounts prior to installation.
 You need dedicated service accounts for the following components:
 Database Engine
 SQL Server Agent
 The SQL Server service is still running within the security framework provided
by Windows.
 The SQL Server engine requires access to many resources on a computer, such
as memory, processors, disk space, and networking.
 SQL Server is able to access only the Windows resources for which the service
account has been granted permissions.
Click Start, right-click
My Computer, and
select Manage.
 Expand Local Users And
Groups and select Users.
 Right-click in the right-hand
pane and select New User.
Creating Service Accounts
Specify your user name
in the User Name field
Write password
clear Check Box
select the Password Never
Expires check box.
SQLAgent
SQLAnalysis
SQLEngine
SQLIntegeration
SQLReporting
Collation Sequences
 Collation Sequences control how SQL Server treats character data for storage,
retrieval, sorting, and comparison operations.
 SQL Server 2008 allows you to specify a collation sequence to support any
language currently used around the world.
 Collation sequences can be specified at the instance, database, table, and
column levels.
 A collation sequence defines the character set that is supported, including
case sensitivity, accent sensitivity, and kana sensitivity.
For example: IF you use the collation sequence of SQL_Latin1_General_CP1_CI_AI,
you get support for a Western European character set that is case-insensitive and accent-
insensitive.
SQL_Latin1_General_CP1_CI_AI treats e, E, è, é, ê, and ë as the same character for sorting and
comparison operations, whereas a case-sensitive (CS), accent-sensitive (AS) French collation
sequence treats each as a different character.
Authentication Modes
 You can set the authentication mode for SQL Server to either:
 Windows Only (Integrated Security)
 Windows and SQL Server (Mixed Mode)
 When SQL Server is configured with Windows-only authentication, you can use
only Windows accounts to log in to the SQL Server instance.
 When SQL Server is configured in mixed mode, you can use either Windows
accounts or SQL Server–created accounts to log in to the SQL Server instance.
SQL Server instances
 SQL Server instances define the container for all operations you perform
within SQL Server.
 Each instance contains its own set of databases, security credentials,
configuration settings, Windows services, and other SQL Server objects.
 SQL Server 2008 R2 supports the installation of up to 50 instances on SQL
Server on a single machine.
 You can install one instance as the default instance along with up to 49
additional named instances, or you can install 50 named instances with no
default.
 When connecting to a named instance, you use the combination of the
machine name and instance name, such as <machinename><instancename>.
SQL Server instances (Continue…)
The primary reasons for installing more than one instance of SQL Server
on a single machine are:
 You need instances for quality assurance testing or development.
 You need to support multiple service pack or patch levels.
 You have different groups of administrators who are allowed to access
only a subset of databases within your organization.
 You need to support multiple sets of SQL Server configuration options.
SQL Server Configuration Manager
 SQL Server Configuration Manager is responsible for managing SQL Server
services and protocols.
 The primary tasks that you will perform are:
 Starting, stopping, pausing, and restarting a service
 Changing service accounts and service account passwords
 Managing the start-up mode of a service
 Configuring service start-up parameters
 You will need to know how collation sequences affect the way SQL
Server stores and handles character data.
 Allows you to configure the communications protocols available to client
connections.
 You can control whether communications are required to be encrypted
or whether an instance responds to an enumeration request.
 SQL Server Configuration Manager is used to manage any SQL Server services.
SQL Server Configuration Manager
Configuring Database Mail
 Database Mail provides a notification capability to SQL Server
instances.
 Database Mail enables a computer running SQL Server to send
outbound mail messages.
 Messages can contain the results of queries.
 Database Mail is primarily used to send alert messages to
administrators to notify them of performance conditions or
changes that have been made to objects.
 Database Mail uses the Simple Mail Transfer Protocol (SMTP)
relay service that is available on all Windows machines to
transmit mail messages.
 Database Mail utilizes the services of SQL Server Agent to send
messages as a background process.
 When a mail send is initiated, the message along with all of the
message properties is logged into a table in the MSDB database.
 If SQL Server Agent is not running , messages will accumulate in
a queue within the MSDB database.
 Mail accounts define all the properties associated to a
specific e-mail account such as e-mail address, reply to e-mail
address, mail server name, port number, and authentication
credentials.
Configuring Database Mail (Continue...)
Configuring Database Mail (Continue...)
 Profiles form the core element within Database Mail.
 Database Mail uses mail profiles which can contain one or more
mail accounts.
 Mail profiles can be configured as either public or private.
 A public profile can be accessed by any user with the ability
to send mail.
 A private profile can be accessed only by those users who
have been granted access to the mail profile explicitly.
 You can designate a mail profile to be the default.
 If a mail profile is not specified, SQL Server uses the mail profile
designated as the default to send the message.
Review
1- Ali has implemented a new policy that requires the passwords on all
service accounts to be changed every 30 days. Which tool should the
Ali database administrators use to change the service account
passwords so that SQL Server services comply with the new policy?
A. Windows Service Control applet.
B. SQL Server Management Studio.
C. SQL Server Configuration Manager.
D. SQL Server Surface Area Configuration Manager.
2- 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.)
A. Notification Services
B. Database Mail
C. Microsoft Visual Studio.NET code libraries
D. Activity Monitor
3- 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.)
A. Set the mail profile to public.
B. Set the mail profile to private.
C. Set the mail profile to private and grant access to approved users.
D. Designate the mail profile as the default.
Review (Continue…)
Answers
1- Correct Answer: C
A. Incorrect: Although the Windows Service Control applet can be used to
change service account passwords, you should not use this utility. 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.
B. Incorrect: SQL Server Management Studio cannot be used to change
service account passwords.
C. Correct: 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.
D. Incorrect: SQL Server Surface Area Configuration Manager was a utility
that existed in SQL Server 2005 and was removed in SQL Server 2008
in favor of making configuration changes directly using the sp_configure
system stored procedure.
Answers (Continues….)
2- Correct Answers: B and C
A. Incorrect: Notification Services is a feature that was available with SQL
Server 2005 that is no longer available in SQL Server 2008.
B. Correct: Database Mail can be used to send messages to customers.
C. Correct: A Visual Studio .NET application can be created to use the mail
libraries available within the .NET Framework.
D. Incorrect: Activity Monitor is a feature of SSMS that displays query activity
on the server; it cannot be used to send messages.
3. Correct Answers: C and D
A. Incorrect: A public profile can be accessed by anyone with the authority to send
mail, which violates the security requirements.
B. Incorrect: Although configuring a mail profile as private will restrict access, the profile
cannot be used unless a user has been granted access to the profile.
C. Correct: You need to configure the mail profile to be private along with granting
access to the mail profile for approved users.
D. Correct: Designating a mail profile as the default allows approved users to send mail
using the profile without the need to specify the profile explicitly.
Sql server lesson2

More Related Content

What's hot (17)

PDF
Juan ignacio mazza - cv (english)
JuanMazza
 
DOC
Pre Install Databases
LiquidHub
 
PDF
Microsoft mobile services
Maksym Davydov
 
PDF
How To Configure Email Enabled Lists In Moss2007 Rtm Using Exchange 2003
LiquidHub
 
DOC
Simple Farm Server Deployment
LiquidHub
 
PDF
Moss 2007 Backup Strategies
LiquidHub
 
PDF
Material modulo04 asf6501(6425-a_01)
JSantanderQ
 
PDF
Material modulo03 asf6501(6425-b_02)
JSantanderQ
 
PDF
Material modulo01 asf6501(6419-a_01)
JSantanderQ
 
PDF
Cs 7.2 fundamentals
Eswar Eluri
 
PDF
Srs example(1)
zozila
 
PDF
Material modulo02 asf6501(6425-b_01)
JSantanderQ
 
PDF
MailRetriever for DPM: Quick Start Guide
MailRetriever
 
PPTX
Android Study Jam 2
DSC GVP
 
PDF
Sq lite manager
Aravindharamanan S
 
TXT
Readme
Miguel Beltran
 
PDF
Windows server 2012 - installing active directory domain server
ahmadbahaj
 
Juan ignacio mazza - cv (english)
JuanMazza
 
Pre Install Databases
LiquidHub
 
Microsoft mobile services
Maksym Davydov
 
How To Configure Email Enabled Lists In Moss2007 Rtm Using Exchange 2003
LiquidHub
 
Simple Farm Server Deployment
LiquidHub
 
Moss 2007 Backup Strategies
LiquidHub
 
Material modulo04 asf6501(6425-a_01)
JSantanderQ
 
Material modulo03 asf6501(6425-b_02)
JSantanderQ
 
Material modulo01 asf6501(6419-a_01)
JSantanderQ
 
Cs 7.2 fundamentals
Eswar Eluri
 
Srs example(1)
zozila
 
Material modulo02 asf6501(6425-b_01)
JSantanderQ
 
MailRetriever for DPM: Quick Start Guide
MailRetriever
 
Android Study Jam 2
DSC GVP
 
Sq lite manager
Aravindharamanan S
 
Windows server 2012 - installing active directory domain server
ahmadbahaj
 

Similar to Sql server lesson2 (20)

PPSX
MS SQL Server 2008, Implementation and Maintenance
Vitaliy Fursov
 
PDF
Sql Server Security Best Practices
Information Technology
 
PPSX
Installing ms sql server 2012 express edition
Wally Pons
 
PPTX
Roman Rehak: 24/7 Database Administration + Database Mail Unleashed
MSDEVMTL
 
PPT
Where should I be encrypting my data?
Information Technology Society Nepal
 
PPTX
Sql server lesson11
Ala Qunaibi
 
PPTX
The Spy Who Loathed Me - An Intro to SQL Server Security
Chris Bell
 
PDF
SQLSaturday#290_Kiev_WindowsAzureDatabaseForBeginners
Tobias Koprowski
 
PPT
Sql server basics
Dilfaroz Khan
 
PPT
Dealing with SQL Security from ADO.NET
Fernando G. Guerrero
 
PPT
SQL Server Basics Hello world iam here.ppt
nanisaketh
 
PDF
Microsoft Sql Server 2008 Administrators Pocket Consultant 1st Edition Willia...
ibiasaggvin
 
PDF
Hardening a SQL Server 2008 Implementation
Mark Ginnebaugh
 
PPT
SQL Server 2008 Security Overview
ukdpe
 
PDF
KoprowskiT_SQLSat230_Rheinland_SQLAzure-fromPlantoBackuptoCloud
Tobias Koprowski
 
PPTX
Geek Sync | SQL Security Principals and Permissions 101
IDERA Software
 
PPTX
24 HOP edición Español -Diferentes técnicas de administración de logins y usu...
SpanishPASSVC
 
PPTX
6232 b 01
stamal
 
PPTX
Isaca sql server 2008 r2 security & auditing
Antonios Chatzipavlis
 
PPT
Dealing with SQL Security from ADO.NET
Fernando G. Guerrero
 
MS SQL Server 2008, Implementation and Maintenance
Vitaliy Fursov
 
Sql Server Security Best Practices
Information Technology
 
Installing ms sql server 2012 express edition
Wally Pons
 
Roman Rehak: 24/7 Database Administration + Database Mail Unleashed
MSDEVMTL
 
Where should I be encrypting my data?
Information Technology Society Nepal
 
Sql server lesson11
Ala Qunaibi
 
The Spy Who Loathed Me - An Intro to SQL Server Security
Chris Bell
 
SQLSaturday#290_Kiev_WindowsAzureDatabaseForBeginners
Tobias Koprowski
 
Sql server basics
Dilfaroz Khan
 
Dealing with SQL Security from ADO.NET
Fernando G. Guerrero
 
SQL Server Basics Hello world iam here.ppt
nanisaketh
 
Microsoft Sql Server 2008 Administrators Pocket Consultant 1st Edition Willia...
ibiasaggvin
 
Hardening a SQL Server 2008 Implementation
Mark Ginnebaugh
 
SQL Server 2008 Security Overview
ukdpe
 
KoprowskiT_SQLSat230_Rheinland_SQLAzure-fromPlantoBackuptoCloud
Tobias Koprowski
 
Geek Sync | SQL Security Principals and Permissions 101
IDERA Software
 
24 HOP edición Español -Diferentes técnicas de administración de logins y usu...
SpanishPASSVC
 
6232 b 01
stamal
 
Isaca sql server 2008 r2 security & auditing
Antonios Chatzipavlis
 
Dealing with SQL Security from ADO.NET
Fernando G. Guerrero
 
Ad

More from Ala Qunaibi (16)

PPTX
Sql server lesson13
Ala Qunaibi
 
PPTX
Sql server lesson12
Ala Qunaibi
 
PPSX
Sql server lesson12
Ala Qunaibi
 
PPTX
Sql server lesson10
Ala Qunaibi
 
PPTX
Sql server lesson9
Ala Qunaibi
 
PPTX
Sql server lesson8
Ala Qunaibi
 
PPTX
Sql server lesson7
Ala Qunaibi
 
PPTX
Sql server lesson6
Ala Qunaibi
 
PPTX
Sql server lesson5
Ala Qunaibi
 
PPTX
Sql server lesson4_v2
Ala Qunaibi
 
PPTX
Sql server lesson3
Ala Qunaibi
 
PPTX
Sql server lesson4
Ala Qunaibi
 
PDF
الفروقات الفردية بين الطلاب كيف نفهمها
Ala Qunaibi
 
PPT
صور
Ala Qunaibi
 
PPTX
حوادث السير
Ala Qunaibi
 
PPTX
المجموعة الشمسية
Ala Qunaibi
 
Sql server lesson13
Ala Qunaibi
 
Sql server lesson12
Ala Qunaibi
 
Sql server lesson12
Ala Qunaibi
 
Sql server lesson10
Ala Qunaibi
 
Sql server lesson9
Ala Qunaibi
 
Sql server lesson8
Ala Qunaibi
 
Sql server lesson7
Ala Qunaibi
 
Sql server lesson6
Ala Qunaibi
 
Sql server lesson5
Ala Qunaibi
 
Sql server lesson4_v2
Ala Qunaibi
 
Sql server lesson3
Ala Qunaibi
 
Sql server lesson4
Ala Qunaibi
 
الفروقات الفردية بين الطلاب كيف نفهمها
Ala Qunaibi
 
صور
Ala Qunaibi
 
حوادث السير
Ala Qunaibi
 
المجموعة الشمسية
Ala Qunaibi
 
Ad

Recently uploaded (20)

PDF
MiniTool Power Data Recovery 8.8 With Crack New Latest 2025
bashirkhan333g
 
PDF
Odoo CRM vs Zoho CRM: Honest Comparison 2025
Odiware Technologies Private Limited
 
PDF
IDM Crack with Internet Download Manager 6.42 Build 43 with Patch Latest 2025
bashirkhan333g
 
PDF
How to Hire AI Developers_ Step-by-Step Guide in 2025.pdf
DianApps Technologies
 
PDF
Open Chain Q2 Steering Committee Meeting - 2025-06-25
Shane Coughlan
 
PDF
AI + DevOps = Smart Automation with devseccops.ai.pdf
Devseccops.ai
 
PDF
유니티에서 Burst Compiler+ThreadedJobs+SIMD 적용사례
Seongdae Kim
 
PDF
Top Agile Project Management Tools for Teams in 2025
Orangescrum
 
PDF
ERP Consulting Services and Solutions by Contetra Pvt Ltd
jayjani123
 
PPTX
ChiSquare Procedure in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
PDF
Digger Solo: Semantic search and maps for your local files
seanpedersen96
 
PDF
The 5 Reasons for IT Maintenance - Arna Softech
Arna Softech
 
PPTX
AEM User Group: India Chapter Kickoff Meeting
jennaf3
 
PPTX
Customise Your Correlation Table in IBM SPSS Statistics.pptx
Version 1 Analytics
 
PPTX
Agentic Automation: Build & Deploy Your First UiPath Agent
klpathrudu
 
PDF
Download Canva Pro 2025 PC Crack Full Latest Version
bashirkhan333g
 
PDF
Dipole Tech Innovations – Global IT Solutions for Business Growth
dipoletechi3
 
PDF
[Solution] Why Choose the VeryPDF DRM Protector Custom-Built Solution for You...
Lingwen1998
 
PPTX
Comprehensive Risk Assessment Module for Smarter Risk Management
EHA Soft Solutions
 
PDF
Build It, Buy It, or Already Got It? Make Smarter Martech Decisions
bbedford2
 
MiniTool Power Data Recovery 8.8 With Crack New Latest 2025
bashirkhan333g
 
Odoo CRM vs Zoho CRM: Honest Comparison 2025
Odiware Technologies Private Limited
 
IDM Crack with Internet Download Manager 6.42 Build 43 with Patch Latest 2025
bashirkhan333g
 
How to Hire AI Developers_ Step-by-Step Guide in 2025.pdf
DianApps Technologies
 
Open Chain Q2 Steering Committee Meeting - 2025-06-25
Shane Coughlan
 
AI + DevOps = Smart Automation with devseccops.ai.pdf
Devseccops.ai
 
유니티에서 Burst Compiler+ThreadedJobs+SIMD 적용사례
Seongdae Kim
 
Top Agile Project Management Tools for Teams in 2025
Orangescrum
 
ERP Consulting Services and Solutions by Contetra Pvt Ltd
jayjani123
 
ChiSquare Procedure in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
Digger Solo: Semantic search and maps for your local files
seanpedersen96
 
The 5 Reasons for IT Maintenance - Arna Softech
Arna Softech
 
AEM User Group: India Chapter Kickoff Meeting
jennaf3
 
Customise Your Correlation Table in IBM SPSS Statistics.pptx
Version 1 Analytics
 
Agentic Automation: Build & Deploy Your First UiPath Agent
klpathrudu
 
Download Canva Pro 2025 PC Crack Full Latest Version
bashirkhan333g
 
Dipole Tech Innovations – Global IT Solutions for Business Growth
dipoletechi3
 
[Solution] Why Choose the VeryPDF DRM Protector Custom-Built Solution for You...
Lingwen1998
 
Comprehensive Risk Assessment Module for Smarter Risk Management
EHA Soft Solutions
 
Build It, Buy It, or Already Got It? Make Smarter Martech Decisions
bbedford2
 

Sql server lesson2

  • 1. R2
  • 2.  Create Service Accounts  Install a SQL Server 2008  Understand Collation Sequences  Understand Authentication Modes  Install Sample Databases  Configure a SQL Server Instance
  • 3. Service Accounts  All the core SQL Server components run as services.  To configure each component properly, you need to create several service accounts prior to installation.  You need dedicated service accounts for the following components:  Database Engine  SQL Server Agent  The SQL Server service is still running within the security framework provided by Windows.  The SQL Server engine requires access to many resources on a computer, such as memory, processors, disk space, and networking.  SQL Server is able to access only the Windows resources for which the service account has been granted permissions.
  • 4. Click Start, right-click My Computer, and select Manage.  Expand Local Users And Groups and select Users.  Right-click in the right-hand pane and select New User. Creating Service Accounts Specify your user name in the User Name field Write password clear Check Box select the Password Never Expires check box. SQLAgent SQLAnalysis SQLEngine SQLIntegeration SQLReporting
  • 5. Collation Sequences  Collation Sequences control how SQL Server treats character data for storage, retrieval, sorting, and comparison operations.  SQL Server 2008 allows you to specify a collation sequence to support any language currently used around the world.  Collation sequences can be specified at the instance, database, table, and column levels.  A collation sequence defines the character set that is supported, including case sensitivity, accent sensitivity, and kana sensitivity. For example: IF you use the collation sequence of SQL_Latin1_General_CP1_CI_AI, you get support for a Western European character set that is case-insensitive and accent- insensitive. SQL_Latin1_General_CP1_CI_AI treats e, E, è, é, ê, and ë as the same character for sorting and comparison operations, whereas a case-sensitive (CS), accent-sensitive (AS) French collation sequence treats each as a different character.
  • 6. Authentication Modes  You can set the authentication mode for SQL Server to either:  Windows Only (Integrated Security)  Windows and SQL Server (Mixed Mode)  When SQL Server is configured with Windows-only authentication, you can use only Windows accounts to log in to the SQL Server instance.  When SQL Server is configured in mixed mode, you can use either Windows accounts or SQL Server–created accounts to log in to the SQL Server instance.
  • 7. SQL Server instances  SQL Server instances define the container for all operations you perform within SQL Server.  Each instance contains its own set of databases, security credentials, configuration settings, Windows services, and other SQL Server objects.  SQL Server 2008 R2 supports the installation of up to 50 instances on SQL Server on a single machine.  You can install one instance as the default instance along with up to 49 additional named instances, or you can install 50 named instances with no default.  When connecting to a named instance, you use the combination of the machine name and instance name, such as <machinename><instancename>.
  • 8. SQL Server instances (Continue…) The primary reasons for installing more than one instance of SQL Server on a single machine are:  You need instances for quality assurance testing or development.  You need to support multiple service pack or patch levels.  You have different groups of administrators who are allowed to access only a subset of databases within your organization.  You need to support multiple sets of SQL Server configuration options.
  • 9. SQL Server Configuration Manager  SQL Server Configuration Manager is responsible for managing SQL Server services and protocols.  The primary tasks that you will perform are:  Starting, stopping, pausing, and restarting a service  Changing service accounts and service account passwords  Managing the start-up mode of a service  Configuring service start-up parameters  You will need to know how collation sequences affect the way SQL Server stores and handles character data.  Allows you to configure the communications protocols available to client connections.  You can control whether communications are required to be encrypted or whether an instance responds to an enumeration request.  SQL Server Configuration Manager is used to manage any SQL Server services.
  • 11. Configuring Database Mail  Database Mail provides a notification capability to SQL Server instances.  Database Mail enables a computer running SQL Server to send outbound mail messages.  Messages can contain the results of queries.  Database Mail is primarily used to send alert messages to administrators to notify them of performance conditions or changes that have been made to objects.  Database Mail uses the Simple Mail Transfer Protocol (SMTP) relay service that is available on all Windows machines to transmit mail messages.
  • 12.  Database Mail utilizes the services of SQL Server Agent to send messages as a background process.  When a mail send is initiated, the message along with all of the message properties is logged into a table in the MSDB database.  If SQL Server Agent is not running , messages will accumulate in a queue within the MSDB database.  Mail accounts define all the properties associated to a specific e-mail account such as e-mail address, reply to e-mail address, mail server name, port number, and authentication credentials. Configuring Database Mail (Continue...)
  • 13. Configuring Database Mail (Continue...)  Profiles form the core element within Database Mail.  Database Mail uses mail profiles which can contain one or more mail accounts.  Mail profiles can be configured as either public or private.  A public profile can be accessed by any user with the ability to send mail.  A private profile can be accessed only by those users who have been granted access to the mail profile explicitly.  You can designate a mail profile to be the default.  If a mail profile is not specified, SQL Server uses the mail profile designated as the default to send the message.
  • 14. Review 1- Ali has implemented a new policy that requires the passwords on all service accounts to be changed every 30 days. Which tool should the Ali database administrators use to change the service account passwords so that SQL Server services comply with the new policy? A. Windows Service Control applet. B. SQL Server Management Studio. C. SQL Server Configuration Manager. D. SQL Server Surface Area Configuration Manager. 2- 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.) A. Notification Services B. Database Mail C. Microsoft Visual Studio.NET code libraries D. Activity Monitor
  • 15. 3- 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.) A. Set the mail profile to public. B. Set the mail profile to private. C. Set the mail profile to private and grant access to approved users. D. Designate the mail profile as the default. Review (Continue…)
  • 16. Answers 1- Correct Answer: C A. Incorrect: Although the Windows Service Control applet can be used to change service account passwords, you should not use this utility. 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. B. Incorrect: SQL Server Management Studio cannot be used to change service account passwords. C. Correct: 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. D. Incorrect: SQL Server Surface Area Configuration Manager was a utility that existed in SQL Server 2005 and was removed in SQL Server 2008 in favor of making configuration changes directly using the sp_configure system stored procedure.
  • 17. Answers (Continues….) 2- Correct Answers: B and C A. Incorrect: Notification Services is a feature that was available with SQL Server 2005 that is no longer available in SQL Server 2008. B. Correct: Database Mail can be used to send messages to customers. C. Correct: A Visual Studio .NET application can be created to use the mail libraries available within the .NET Framework. D. Incorrect: Activity Monitor is a feature of SSMS that displays query activity on the server; it cannot be used to send messages. 3. Correct Answers: C and D A. Incorrect: A public profile can be accessed by anyone with the authority to send mail, which violates the security requirements. B. Incorrect: Although configuring a mail profile as private will restrict access, the profile cannot be used unless a user has been granted access to the profile. C. Correct: You need to configure the mail profile to be private along with granting access to the mail profile for approved users. D. Correct: Designating a mail profile as the default allows approved users to send mail using the profile without the need to specify the profile explicitly.