More 70-462 Study Notes Flashcards

1
Q

Which form of encryption encrypts/decrypts data at the cell level and requires applications to use encryption and decryption functions?

A

Cell-Level Encryption

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Which encryption method is a function of the file system and not of the SQL server?

A

Encrypting File System (EFS)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Which encryption method is used to protect a computer’s system volume from unauthorized changes and startups?

A

BitLocker Drive Encryption (BDE)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Which encryption method uses a certificate to encrypt the contents of the database, the database itself , and transaction log backups?

A

Transparent Data Encryption (TDE)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Which encryption method requires the same certificate used for encryption as to decrypt the data before accessing?

A

Transparent Data Encryption (TDE)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Database snapshots are stored using …

A

sparse files

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is meant by the Copy-on-write operation?

A

Before a change is made to a a page it is written to to the snapshot

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What’s contained in the snapshot?

A

The previous version of each page that was changed since the snapshot was last taken

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

A snapshot must be stored on the same instance as the database? (True/False)

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Command used to reduce the amount of allocated free space on a database?

A

DBCC SHRINKDATABASE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Which sqlserver.exe option starts the SQL server in minimal configuration mode

A

-f

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Which option would you use if you needed to resolve a problem, and only allows a single connection

A

-f, if you need minimal configuration mode or -m if you need a full mode

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Which option is used to start a non-default instance

A

-s

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

sqlserver -m

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Which sqlserver.exe option disables monitoring features?

A

-x

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Which system variable stores the current language of the session?

A

@@LANGUAGE

17
Q

Which command would you use to check all the tables in the database but only the physical structure and can detect torn pages.

A

DBCC CHECKDB WITH PHYSICAL_ONLY

18
Q

DBCC CHECKDB REPAIR_FAST

A

Provides backward compatability but has no effect in SQL Server 2008 or higher

19
Q

How do you get DBCC to report how much tempdb space will be required and not perform a consistency check?

A

DBCC CHECKDB WITH ESTIMATEONLY

20
Q

In versions prior to 2012 this option was used to cause column values to be verified against the data type of the column.

A

DBCC CHECKDB WITH DATA_PURITY

does not need to be specified in 2012 because it always performed unless PHYSICAL_ONLY is specified

21
Q

When SQL Server cannot write to the C2 audit log, what happens?

A

The SQL Service shuts down.

22
Q

Backing up logs with NORECOVERY has what effect?

A

backs up the tail of the transaction log and allows you to recover transactions that occurred since the last logs that were shipped.