70-462 Study Notes Flashcards
Which system stored procedure is used to set the backup compression default for all databases on the server?
sp_configure
What must you use to insure parallel imports do not block each other?
Table Locks
Only perform a bulk import on tables using a table lock if the table does not have a ____.
Index
Using a page lock ensures import operations will not block each other (True or False)
False
Name a Pro and a Con to disabling constraints on a Table when setting Page Lock.
Pro - Imports will run quicker.
Con - May allow data to violate check constraints.
Which option is used to set the Thread Pool?
MAX WORKER THREADS
What value do you set MAX WORKER THREADS to in order to allow SQL Server to determine the size of the Thread Pool when the service is started.
MAX WORKER THREAD = 0
Which T-SQL must be executed when using advanced configuration options.
sp_configure ‘SHOW ADVANCED OPTIONS’,1
Which parallelism option determines the threshold at which a query is considered a long running query?
COST THRESHOLD FOR PARALLELISM
The Max Degree of Parallelism option determines…
The maximum number of parallel execution plans that can be used for a single query.
What two T-SQL commands can provide lock activity, including a list of currently active locks when data is retrieved?
sys.dm_tran_locks (dynamic management view)
sp_lock (system stored procedure)
Which two SQL tools can provide information about lock activity over time but not as a snapshot of current activity?
SQL Trace and SQL Profiler
Which Dynamic Management View returns information about tasks that are waiting for resources?
sys.dm_os_waiting_tasks
Which Dynamic Management View returns information about active transactions?
sys.dm_tran_active_snapshot_database_transactions
What T-SQL command using a DMV can you run to show the encryption key information for your current database?
SELECT * FROM sys.dm_database_encryption_keys
What tool is used to analyze the performance of database workloads and provides recommendations to add, remove, or modify physical design structures including clustered indexes, nonclustered indexes, indexed views, and partitioning?
Database Engine Tuning Advisor
Which property is used to limit the maximum size of a filegroup?
AUTOGROWTH property
What are the 3 components of IT?
Client Solutions: These include desk-top computers, laptops or notebooks, portable devices, and even telephones in Voice over IP implementations.
Network Infrastructure Solutions: These include switches, routers, and network communications services( such as DNS, DHCP, authentication services, and so on).
Information Storage Solutions: These include databases, file servers, and networked storage such as Network Attached Storage (NAS) and storage area networks (SANs).
What technology allows more than one physical server to be available for processing a single application?
Clustering
Name 6 tasks you can perform with the SQL Server Configuraion Manager (SSCM):
- Stop and start the SQL Server services
- Change service login information
- Enable or disable network protocols
- Configure aliases on client computers
- Enable or disable protocol encryption for client connections
- Enable or disable filestream support for a SQL Server instance
_____ allows you to perform queries against DNS servers in order to ensure that DNS is operating appropriately.
NSLOOKUP
____ provides a simple interface that is used to check whether a remote host is live on the network.
PING
____ is used to test each connection along the path to a destination.
TraceRT
____ not only tests the devices along the path, but it generates reports to help you determine network communications problems such as latency and intermittent problems.
PathPING