More 70-462 Study Notes Flashcards
Which form of encryption encrypts/decrypts data at the cell level and requires applications to use encryption and decryption functions?
Cell-Level Encryption
Which encryption method is a function of the file system and not of the SQL server?
Encrypting File System (EFS)
Which encryption method is used to protect a computer’s system volume from unauthorized changes and startups?
BitLocker Drive Encryption (BDE)
Which encryption method uses a certificate to encrypt the contents of the database, the database itself , and transaction log backups?
Transparent Data Encryption (TDE)
Which encryption method requires the same certificate used for encryption as to decrypt the data before accessing?
Transparent Data Encryption (TDE)
Database snapshots are stored using …
sparse files
What is meant by the Copy-on-write operation?
Before a change is made to a a page it is written to to the snapshot
What’s contained in the snapshot?
The previous version of each page that was changed since the snapshot was last taken
A snapshot must be stored on the same instance as the database? (True/False)
True
Command used to reduce the amount of allocated free space on a database?
DBCC SHRINKDATABASE
Which sqlserver.exe option starts the SQL server in minimal configuration mode
-f
Which option would you use if you needed to resolve a problem, and only allows a single connection
-f, if you need minimal configuration mode or -m if you need a full mode
Which option is used to start a non-default instance
-s
sqlserver -m
Starts the SQL server service in single user mode for troubleshooting or rebuilding the master database. You must stop the SQL Server Agent in order to connect.
Which sqlserver.exe option disables monitoring features?
-x
Which system variable stores the current language of the session?
@@LANGUAGE
Which command would you use to check all the tables in the database but only the physical structure and can detect torn pages.
DBCC CHECKDB WITH PHYSICAL_ONLY
DBCC CHECKDB REPAIR_FAST
Provides backward compatability but has no effect in SQL Server 2008 or higher
How do you get DBCC to report how much tempdb space will be required and not perform a consistency check?
DBCC CHECKDB WITH ESTIMATEONLY
In versions prior to 2012 this option was used to cause column values to be verified against the data type of the column.
DBCC CHECKDB WITH DATA_PURITY
does not need to be specified in 2012 because it always performed unless PHYSICAL_ONLY is specified
When SQL Server cannot write to the C2 audit log, what happens?
The SQL Service shuts down.
Backing up logs with NORECOVERY has what effect?
backs up the tail of the transaction log and allows you to recover transactions that occurred since the last logs that were shipped.