70-762 Flashcards
What is the minimum recommended amount of RAM for SQL Server 2012 Enterprise?
<span>A. 512 MB </span>
<span>B. 1 GB </span>
<span>C. 2 GB </span>
<span>D. 4 GB </span>
<span>E. 8 GB</span>
B. 1 GB
Which of the following editions of SQL Server 2012 can you run on a computer that is running the Windows 7 Professional (x64) operating system? (Choose all that apply.)
A. SQL Server 2012 (x64) Developer edition
B. SQL Server 2012 (x64) Web edition
C. SQL Server 2012 (x64) Enterprise edition
D. SQL Server 2012 (x64) Standard edition
A. SQL Server 2012 (x64) Developer edition
D. SQL Server 2012 (x64) Standard edition
Which of the following features can you install if you are installing SQL Server 2012 Enterprise edition on a computer running Windows Server 2008 R2 SP1 Enterprise edition in the Server Core configuration? (Choose all that apply.)
A. Database Engine Services
B. SQL Server Replication
C. Analysis Services
D. Reporting Services
A. B. C.
On which of the following operating systems can you deploy the 64-bit version of SQL Server 2012 Enterprise edition? (Choose all that apply.)
<span>A. Windows 7 Ultimate (x64) edition </span>
<span>B. Windows Server 2008 R2 SP1 (x64) Standard edition </span>
<span>C. Windows Server 2008 SP2 (x64) Enterprise edition </span>
<span>D. Windows Server 2003 R2 (x64) Enterprise edition</span>
B. Windows Server 2008 R2 SP1 (x64) Standard edition
C. Windows Server 2008 SP2 (x64) Enterprise edition
You want to simulate read, write, checkpoint, backup, sort, and read-ahead activities for your organization’s SQL Server 2012 deployment. Which of the following tools would you use to accomplish this goal?
A. SQLIO
B. SQLIOSim
C. SQLIOStress
D. chkdsk
B. SQLIOSim
What is the default collation on computers with the United States regional setting?
SQL_Latin1_General_CP1_CI_AS
During installation, on the Error Reporting page, you can choose whether to send ____ and ____ to both Microsoft and your organization’s corporate reporting server.
Windows and SQL Server error reports
A text file, named _____, is saved. You can use this file to replicate the chosen configuration when installing other Database Engine instances
ConfigurationFile.ini
You use SQL Server setup to install ________ as part of the normal installation process, but you can install only one instance of ___ on a computer.
SQL Server Integration Services (SSIS)
SSIS
You can determine which features are installed on SQL Server 2012 by running the _______ report. You can access this report through the Tools Menu of the SQL Server Installation Center.
Installed SQL Features Discovery Report
Installing SQL Server 2012 does not automatically configure ___ for the appropriate services installed; you must configure ____ manually on each ___ or configure them through the ______.
firewall rules
firewall rules
server
application group policy
Default Instance port number
TCP 1433
Dedicated Admin Connection port number
TCP 1434
You are planning on deploying a server that will be dedicated for ETL processes. You want to ensure that SSIS packages will run on this dedicated ETL server and not on any other server on which they were started. Which of the following features must you install on the ETL server in addition to SSIS to accomplish this goal?
A. Database Engine
B. SQL Server Reporting Services
C. SQL Server Analysis Services
D. Client Tools SDK
A. Database Engine
You have installed the SQL Server Integration Services (SSIS) feature on a server running Windows Server 2008 R2 SP1. Which of the following features must you install if you want to ensure that you can run packages in 32-bit mode?
A. Client Tools SDK
B. Data Quality Client
C. SQL Server Data Tools
D. Client Tools Backwards Compatibility
C. SQL Server Data Tools
You want to allow access to SQL Server Analysis Services on a server running Windows Server 2008 R2 for a client running SQL Server Management Studio on Windows 7. You have installed SQL Server Analysis Services in the default location. Which of the following paths should you use when creating the firewall rule by using Windows Firewall With Advanced Security?
A. C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\Binn\sqlservr.exe
B. C:\Program Files\Microsoft SQL Server\MSAS11.MSSQLSERVER\OLAP\bin
\msmdsrv.exe
C. C:\Program Files\Microsoft SQL Server\110\DTS\Binn\MsDtsSrvr.exe
D. C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services
\ReportServer\bin\ReportingServicesService.exe
B. C:\Program Files\Microsoft SQL Server\MSAS11.MSSQLSERVER\OLAP\bin<br></br>\msmdsrv.exe
You want to remove SQL Server Integration Services from a server running the Windows Server 2008 R2 operating system that also has the Database Engine and SQL Server Analysis Services installed. Which of the following tools can you use to accomplish this goal?
A. SQL Server Management Studio
B. SQL Server Configuration Manager
C. Add/Remove Programs in Control Panel
D. SQL Server Installation Center
C. Add/Remove Programs in Control Panel
You want to reproduce the same SQL Server 2012 installation configuration across five servers. Which of the following files will you generate by using SQL Server Setup to accomplish this goal?
A. Configuration.xml
B. Setup.ini
C. Setup.xml
D. ConfigurationFile.ini
D. Correct: SQL Server Setup generates a file named ConfigurationFile.ini to store installation settings
Memory
You can use the ____ and _____ instance-level settings to configure the amount of memory (in megabytes) an instance of SQL Server 2012 uses. A setting of ______ means that minimum server value is not set.
Min Server Memory
- default is 0
Max Server Memory
- lowest maximum value - 64MB for 32-bit OS & 128MB for 64-bit OS
Zero
An instance does not use _____ at startup, but when client load reaches this amount, SQL Server 2012 will not release memory back to the operating system if it means going ___ this value. If an instance never uses the ______ specified, that amount will not be reserved by the instance, and memory will be released back to the operating system.
minimum reserved memory
below
minimum amount
What is processor Affinity?
Processor affinity assigns specific server processors to specific threads. This eliminates processor reloads and reduces thread migration across processors.
What is IO Affinity?
I/O affinity binds an instance’s disk I/O to a specific set of CPUs.
What is fill factor?
“Fillfactor” is a setting for indexes in SQL Server.
When you create or rebuild an index, you can tell SQL Server what percentage of each 8K data page used in the “leaf” level of the index it should fill up, therefore reserving a percentage of free space for future growth.
Which system database must you modify if you want all future databases to
use the Full recovery model?
You must modify the model database because all new databases created on an instance inherit settings from the model database
B. ALTER SERVER CONFIGURATION SET PROCESS AFFINITY CPU = 2,3
C. ALTER SERVER CONFIGURATION SET PROCESS AFFINITY CPU = 0,1
D. ALTER SERVER CONFIGURATION SET PROCESS AFFINITY CPU = 0,4
GO
Which of the following commands must you run to configure the instance so that the maximum amount of memory the instance uses does not exceed 4,096 MB? (Each answer presents part of a complete solution. Choose two.) A. RECONFIGURE;
GO
B. EXEC sys.sp_configure 'min server memory', 1024;
GO
C. EXEC sys.sp_configure 'min server memory', 4096;
GO
D. EXEC sys.sp_configure 'max server memory', 4096;
GO
GO A. RECONFIGURE;
GO
A. Minimum server memory
B. Maximum server memory
C. Processor affinity
D. I/O affinity
A. master
B. model
C. msdb
D. tempdb
A. sp_configure
B. sp_rename
C. sp_monitor
D. sp_depends

A. Resource Governor
B. Windows System Resource Manager
C. Processor affinity
D. I/O affinity
A. 10
B. 25
C. 50
D. 100
A. 30%
B. 50%
C. 70%
D. 100%
A. Resource Governor
B. Windows System Resource Manager
C. Processor affinity
D. I/O affinity
B. CREATE DATABASE
C. ALTER TABLE
D. CREATE TABLE

permission to connect to the database and be assigned either the ______ permission or the___ or ____ permissions on the database.
SET WITNESS = ‘TCP://SQL-CORE:7024’;
B. Execute SQL-B: ALTER DATABASE AdventureWorks2012
SET WITNESS = ‘TCP://SQL-CORE:7024’; C. Execute SQL-CORE: ALTER DATABASE AdventureWorks2012 SET WITNESS = ‘TCP://SQL-A:7024’; D. Execute SQL-CORE: ALTER DATABASE AdventureWorks2012 SET WITNESS = ‘TCP://SQL-B:7024’