Manage High Availability and Disaster Recovery Flashcards

1
Q

When can you use the New-Volume cmdlet?

A

This is used with Storage Spaces Direct (S2D) to create Cluster Shared Volumes (CSV)

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

What is Storage Spaces Direct?

A

It allows you to group three or more drives together in a storage pool and then use capacity from that pool to create storage spaces. Similar to RAID

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

What are two ways that you can use to create Cluster Shared Volumes that are not using Storage Spaces Direct?

A

Using the Add-ClusterSharedVolume PS cmdlet and using Failover Cluster Manager

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

How many listeners can be created for an AG using SQL Server? How would you configure more if needed?

A

One listener can be configured using SQL Server. Additional listeners would need to be configured using PowerShell or the Failover Cluster Management Console

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

What are the steps to failover a database using Log Shipping?

A
  1. Copy any uncopied backup files
  2. Apply unapplied transaction logs to the secondary server
  3. Perform a tail log backup on the primary server WITH NORECOVERY
  4. Apply the tail log backup to the secondary server
  5. Make the database in the secondary server available
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How would you specify that a connection is ReadOnly in the application connection string?

A

by adding “ApplicationIntent=ReadOnly” to the connection string

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

Which servers would you add to a Read-Only routing list?

A

Only those that can assume the primary role

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

Which versions of SQL Server allow you to move the TempDB to local storage, as opposed to shared storage, when using WSFC?

A

SQL Server 2012. Previous versions required you to place it on shared storage

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

Which servers contain the Backup, Copy, Restore, Alert jobs for log shipping?

A

Primary - Backup
Secondary - Copy and Restore
Monitor - Alert

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

When a Cluster Shared Volume is created, which folder is it created under?

A

C:\ClusterStorage\

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

What are the steps to configure Log Shipping using T-SQL?

A
  1. Restore full backup of primary on secondary
  2. On primary, run sp_add_log_shipping_primary_database to add primary database
  3. On primary, run sp_add_jobschedule to add a schedule for backup job
  4. on monitor, run sp_add_log_shipping_alert_job to add alert job
  5. on primary, enable backup job
  6. on secondary, run sp_add_log_shipping_secondary_primary to supply details of primary server and database
  7. on secondary, run sp_add_jobschedule to schedule copy and restore jobs
  8. on secondary, run sp_add_log_shipping_secondary_database to add secondary database
  9. on primary, run sp_add_log_shipping_primary_secondary add info about secondary to primary
  10. on secondary, enable copy and restore jobs
How well did you know this?
1
Not at all
2
3
4
5
Perfectly