Courseiva
Knowledge + Practice
CertificationsVendorsCareer RoadmapsLabs & ToolsStudy GuidesGlossaryPractice Questions
C
Courseiva

Free IT certification practice questions with explained answers for CCNA, CompTIA, AWS, Azure, Google Cloud, and more.

Certification Practice Questions

CCNA practice questionsSecurity+ SY0-701 practice questionsAWS SAA-C03 practice questionsAZ-104 practice questionsAZ-900 practice questionsCLF-C02 practice questionsA+ Core 1 practice questionsGoogle Cloud ACE practice questionsCySA+ CS0-003 practice questionsNetwork+ N10-009 practice questions
View all certifications →

Product

CertificationsCertification PathsExam TopicsPractice TestsExam Dumps vs Practice TestsStudy HubComparisons

Company

AboutContactEditorial PolicyQuestion Writing PolicyTrust Center

Legal

Privacy PolicyTerms of Service

Courseiva is a free IT certification practice platform offering original exam-style practice questions, detailed explanations, topic-based practice, mock exams, readiness tracking, and study analytics for Cisco, CompTIA, Microsoft, AWS, and other technology certifications.

© 2026 Courseiva. Courseiva is operated by JTNetSolutions Ltd. All rights reserved.

Courseiva is an independent certification practice platform and is not affiliated with, endorsed by, or sponsored by Cisco, Microsoft, AWS, CompTIA, Google, ISC2, ISACA, or any other certification vendor. Vendor names and certification marks are used only to identify the exams learners are preparing for.

← Management and Operations practice sets

DBS-C01 Management and Operations • Complete Question Bank

DBS-C01 Management and Operations — All Questions With Answers

Complete DBS-C01 Management and Operations question bank — all 0 questions with answers and detailed explanations.

312
Questions
Free
No signup
Certifications/DBS-C01/Practice Test/Management and Operations/All Questions
Question 1mediummultiple choice
Read the full Management and Operations explanation →

A company is running an Amazon RDS for MySQL Multi-AZ DB instance. The primary instance in us-east-1a experiences an unexpected failure. After the automatic failover, the application team reports that write latency has increased significantly. The new primary instance is in us-east-1b. The DB instance class and storage configuration are identical. What is the MOST likely cause of the increased write latency?

Question 2hardmultiple choice
Read the full Management and Operations explanation →

A database administrator is troubleshooting an Amazon RDS for PostgreSQL DB instance that is experiencing high CPU utilization. The administrator runs the following query to find the current running queries:

SELECT pid, now() - pg_stat_activity.query_start AS duration, query, state FROM pg_stat_activity WHERE state = 'active';

The output shows a high number of queries with a state of 'active' and durations exceeding several minutes. What should the administrator do FIRST to reduce CPU utilization?

Question 3easymultiple choice
Read the full Management and Operations explanation →

A company is using Amazon DynamoDB with on-demand capacity mode. The application experiences occasional throttling during peak hours. The operations team wants to reduce throttling without changing the application code. What should they do?

Question 4hardmultiple choice
Read the full Management and Operations explanation →

A company is migrating an on-premises Microsoft SQL Server database to Amazon RDS for SQL Server. The database uses SQL Server Agent jobs, custom CLR assemblies, and cross-database queries. Which of the following will require modification before migration?

Question 5mediummultiple choice
Read the full Management and Operations explanation →

A company is using Amazon RDS for MySQL with a cross-Region read replica to support disaster recovery. The primary DB instance is in us-west-2, and the read replica is in us-east-1. The read replica is used for reporting and also serves as a failover target. The operations team notices that the read replica lag is consistently above 10 seconds during peak hours. What should the team do to reduce replica lag?

Question 6mediummulti select
Read the full Management and Operations explanation →

A company is using an Amazon Aurora MySQL DB cluster. The company wants to implement a backup strategy that supports point-in-time recovery (PITR) with a recovery time objective (RTO) of 15 minutes and a recovery point objective (RPO) of 5 minutes. Which TWO actions should the company take?

Question 7hardmulti select
Read the full Management and Operations explanation →

A company is running a production Amazon DynamoDB table with on-demand capacity. The table experiences occasional throttling during traffic spikes. The table's partition key is a timestamp, and the workload is write-heavy. The operations team needs to reduce throttling. Which THREE actions should the team take? (Choose three.)

Question 8hardmultiple choice
Read the full Management and Operations explanation →

A database administrator runs the above AWS CLI command to troubleshoot replication issues. The DB instance 'mydb' is a read replica of 'my-source-db'. The administrator notices that the replica lag is increasing. Which of the following is the MOST likely cause?

Network Topology
db-instance-identifier mydbquery 'DBInstances[0].[DBInstanceIdentifieroutput jsonRefer to the exhibit."mydb","db.r5.large","mysql","8.0.28","available",false,null,"arn:aws:rds:us-east-1:123456789012:db:my-source-db"
Question 9easymultiple choice
Read the full Management and Operations explanation →

An IAM policy is attached to a user who needs to restore an Amazon RDS DB instance from a DB snapshot. The user attempts to restore and receives an 'Access Denied' error. Which missing permission is MOST likely causing the failure?

Exhibit

Refer to the exhibit.

Policy:
{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "RestoreFromSnapshot",
            "Effect": "Allow",
            "Action": [
                "rds:RestoreDBInstanceFromDBSnapshot",
                "rds:DescribeDBSnapshots",
                "ec2:DescribeSecurityGroups",
                "ec2:DescribeSubnets"
            ],
            "Resource": "*"
        }
    ]
}
Question 10hardmultiple choice
Read the full Management and Operations explanation →

A company's Amazon RDS for PostgreSQL instance is experiencing high CPU utilization. The DB instance is a db.r5.xlarge with 500 GB of General Purpose SSD (gp2) storage. The application team reports that write-intensive batch jobs are causing latency. The DBA notices that the ReadIOPS metric is low but WriteIOPS is consistently near the instance's maximum. Which action would most effectively reduce write latency?

Question 11easymultiple choice
Read the full Management and Operations explanation →

A developer accidentally deleted a critical table from an Amazon RDS for MySQL DB instance. Automated backups are enabled with a retention period of 7 days. The deletion occurred 3 hours ago. What is the fastest way to restore the deleted table without affecting other tables?

Question 12mediummultiple choice
Read the full Management and Operations explanation →

A company runs an Amazon Aurora MySQL database cluster with a primary instance and two Aurora Replicas. The application is experiencing occasional deadlocks on the primary instance during peak hours. The deadlocks cause transaction rollbacks that impact customer experience. Which design change should the company implement to minimize deadlocks?

Question 13hardmultiple choice
Read the full Management and Operations explanation →

A company is using Amazon DynamoDB for a gaming leaderboard. The table has a partition key of 'game_id' and a sort key of 'score'. The application performs a query to retrieve the top 10 scores for a given game_id. The query uses ScanIndexForward: false and Limit: 10. Recently, the query response time has increased. The table's read capacity is 1000 RCU, and the average item size is 1 KB. Which is the most likely cause of the increased latency?

Question 14mediummulti select
Read the full Management and Operations explanation →

A company is migrating an on-premises Oracle database to Amazon RDS for Oracle. The database is 2 TB and has a high number of small transactions. The company needs to minimize downtime during the migration. Which TWO strategies should be used together? (Choose two.)

Question 15hardmulti select
Read the full Management and Operations explanation →

A company is using Amazon ElastiCache for Redis to cache frequently accessed data from an RDS MySQL database. The cache hit ratio is currently 85%. The operations team notices that during traffic spikes, the cache eviction rate increases significantly, and the database CPU utilization spikes. The cache cluster uses a single r6g.large node. Which THREE actions should the team take to improve performance? (Choose three.)

Question 16hardmultiple choice
Read the full Management and Operations explanation →

A company runs a critical e-commerce application on Amazon RDS for PostgreSQL with a db.r5.2xlarge instance and 500 GB of gp2 storage. The application experiences periodic write spikes during flash sales. During these events, the WriteIOPS metric exceeds the provisioned baseline IOPS of 1,500, and the database becomes unresponsive for several seconds. The DBA has configured a CloudWatch alarm on WriteIOPS, but the alarm triggers after the performance issue occurs. The company needs to ensure that the database can handle these spikes without downtime. The budget allows for moderate cost increases. What should the DBA do?

Question 17hardmultiple choice
Read the full Management and Operations explanation →

A company runs a production Amazon RDS for MySQL Multi-AZ DB instance with 10 TB of storage. The application team notices that database write latency has increased from 5 ms to 80 ms over the past week. The DB instance is a db.r5.8xlarge with 500 GB of gp2 storage. CloudWatch metrics show WriteIOPS averaging 10,000, WriteThroughput at 50 MB/s, and BurstBalance decreasing from 100% to 20% over the same period. The DB instance has no reserved IOPS. The database workload is write-heavy with frequent small transactions. The company needs to resolve the high write latency while minimizing costs and downtime. Which solution should the database specialist recommend?

Question 18mediummulti select
Read the full Management and Operations explanation →

A company runs a production Amazon RDS for PostgreSQL DB instance. The database experiences intermittent high latency during peak hours. The company's monitoring shows that CPU utilization is below 40%, memory is adequate, and network throughput is normal. The DB instance uses General Purpose SSD (gp2) storage with 3,000 Provisioned IOPS. Which TWO actions should a database specialist take to diagnose and resolve the performance issue? (Choose two.)

Question 19hardmultiple choice
Read the full Management and Operations explanation →

A database specialist sees the above error log entries from an Amazon RDS for MySQL DB instance. Which action should be taken to resolve the issue?

Exhibit

Refer to the exhibit. A database specialist receives the following Amazon CloudWatch Logs excerpt from an Amazon RDS for MySQL DB instance:

2024-11-15 10:23:45 UTC [ERROR] [MY-013118] [InnoDB] Page [page id: space=5, page number=1234] log sequence number 567890 is in the future! Current system log sequence number 567800.
2024-11-15 10:23:46 UTC [ERROR] [MY-011825] [InnoDB] Unable to purge a record because it is in a non-tablespace page.
2024-11-15 10:24:01 UTC [ERROR] [MY-013114] [InnoDB] Database page corruption on disk or a failed file read of page [page id: space=5, page number=1235]. You may have to recover from a backup.
Question 20easymultiple choice
Read the full Management and Operations explanation →

A company is migrating its on-premises Oracle database to Amazon RDS for Oracle. The database is 2 TB in size and contains both transactional and analytical workloads. The company uses Oracle Data Pump for migration. During the migration, the database specialist notices that the export job on the source database is taking longer than expected and is generating significant I/O, impacting production performance. The company needs to minimize the impact on the source database while completing the migration within a 48-hour window. The source database is currently running on a dedicated server with sufficient CPU and memory. Which course of action should the database specialist take?

Question 21mediumdrag order
Read the full Management and Operations explanation →

Arrange the steps to perform a point-in-time recovery (PITR) for an Amazon RDS for MySQL DB instance in the correct order.

Drag steps to the numbered slots on the right, or tap a step then tap a slot.

Steps
Order
1Step 1
2Step 2
3Step 3
4Step 4
5Step 5
Question 22mediumdrag order
Read the full Management and Operations explanation →

Arrange the steps to switch over from a primary Amazon RDS for Oracle DB instance to a standby in a Multi-AZ deployment (planned failover) in the correct order.

Drag steps to the numbered slots on the right, or tap a step then tap a slot.

Steps
Order
1Step 1
2Step 2
3Step 3
4Step 4
5Step 5
Question 23mediummatching
Read the full Management and Operations explanation →

Match each AWS database feature to its description.

Drag a concept onto its matching description — or click a concept then click the description.

Concepts
Matches

Synchronous standby replica for high availability

Asynchronous read-only copy for scaling reads

Automatic adjustment of Aurora replica count

In-memory cache for DynamoDB with microsecond latency

Connection pooling for RDS to handle Lambda bursts

Question 24mediummatching
Read the full Management and Operations explanation →

Match each AWS monitoring tool to its capability for databases.

Drag a concept onto its matching description — or click a concept then click the description.

Concepts
Matches

Collects metrics and logs, sets alarms

Visualizes database performance and identifies bottlenecks

Provides OS-level metrics for RDS instances

Records API calls for auditing and governance

SNS-based alerts for database events like failovers

Question 25mediummultiple choice
Read the full Management and Operations explanation →

A company is running an Amazon RDS for MySQL DB instance. The DB instance is experiencing high CPU utilization due to a sudden increase in read traffic. The company needs to reduce the load on the primary DB instance with minimal downtime. Which solution should be used?

Question 26hardmultiple choice
Read the full Management and Operations explanation →

A company is using Amazon DynamoDB for a gaming application. During a new game launch, write traffic spikes and some users receive 'ProvisionedThroughputExceededException' errors. The company wants to handle these spikes automatically and cost-effectively. What should be done?

Question 27easymultiple choice
Read the full Management and Operations explanation →

A database administrator needs to monitor the number of connections to an Amazon RDS for PostgreSQL DB instance. Which Amazon CloudWatch metric should be used?

Question 28mediummultiple choice
Read the full NAT/PAT explanation →

A company is using Amazon Aurora MySQL-Compatible Edition. The database is experiencing performance degradation due to long-running queries. The DBA needs to identify the queries that are consuming the most resources. Which action should be taken?

Question 29hardmultiple choice
Read the full Management and Operations explanation →

A company is migrating an on-premises Oracle database to Amazon RDS for Oracle. The database size is 2 TB and the network bandwidth is limited. The company needs to minimize downtime during migration. Which AWS service should be used?

Question 30easymultiple choice
Read the full Management and Operations explanation →

A company has an Amazon DynamoDB table with on-demand capacity mode. The table is used by a serverless application. The company wants to receive an alert when the read request rate exceeds a certain threshold. Which CloudWatch metric and alarm should be used?

Question 31mediummultiple choice
Read the full Management and Operations explanation →

A company is running Amazon Redshift for data warehousing. The data warehouse is used for complex analytical queries. Recently, query performance has degraded due to data skew. Which steps should be taken to address this issue?

Question 32hardmultiple choice
Read the full Management and Operations explanation →

A company has an Amazon RDS for SQL Server DB instance with Multi-AZ deployment. During a recent failover test, the application experienced a longer downtime than expected. The application uses a single connection string. What change should be made to reduce failover downtime?

Question 33easymultiple choice
Read the full Management and Operations explanation →

A company is using Amazon DynamoDB and needs to export data to Amazon S3 for analysis. Which AWS service can perform this export without writing custom code?

Question 34mediummulti select
Read the full Management and Operations explanation →

Which TWO actions can help reduce the recovery time objective (RTO) for an Amazon RDS for PostgreSQL DB instance in the event of a failure? (Choose 2.)

Question 35hardmulti select
Read the full Management and Operations explanation →

Which THREE factors should be considered when planning a cross-Region disaster recovery strategy for an Amazon Aurora MySQL DB cluster? (Choose 3.)

Question 36mediummulti select
Read the full Management and Operations explanation →

Which TWO methods can be used to encrypt an existing unencrypted Amazon RDS for Oracle DB instance? (Choose 2.)

Question 37hardmultiple choice
Read the full Management and Operations explanation →

A DBA runs the above AWS CLI command. The DB instance is an Amazon RDS for MySQL instance. The DBA needs to connect to the database from an EC2 instance in the same VPC but cannot connect. Which action should be taken first?

Network Topology
aws rds describe-db-instancesdb-instance-identifier mydbquery 'DBInstances[0].{Endpoint:Endpoint.AddressRefer to the exhibit.```Output:```json"Endpoint": "mydb.abc123xyz.us-east-1.rds.amazonaws.com","Port": 3306,"VpcSecurityGroups": ["sg-0123456789abcdef0"],"DBInstanceStatus": "available","StorageEncrypted": false
Question 38mediummultiple choice
Read the full Management and Operations explanation →

A DBA runs the IAM policy simulation above. The DBA can describe the DB instance but cannot modify it. What is the most likely cause?

Network Topology
aws iam simulate-principal-policypolicy-source-arn arn:aws:iam::123456789012:user/DBAaction-names rds:DescribeDBInstances rds:ModifyDBInstanceresource-arns arn:aws:rds:us-east-1:123456789012:db:mydbRefer to the exhibit.```Output:```json"EvaluationResults": ["EvalActionName": "rds:DescribeDBInstances","EvalResourceName": "arn:aws:rds:us-east-1:123456789012:db:mydb","EvalDecision": "allowed"},"EvalActionName": "rds:ModifyDBInstance","EvalDecision": "explicitDeny"
Question 39easymultiple choice
Read the full Management and Operations explanation →

A DBA sees the above error log entries for an Amazon RDS for PostgreSQL DB instance. What is the most likely cause?

Exhibit

Refer to the exhibit.

CloudWatch Logs snippet:
```
2023-01-15T10:30:00.000Z [ERROR] [Client] User: myuser@mycompany.com failed to authenticate to database mydb
2023-01-15T10:30:05.000Z [ERROR] [Client] User: myuser@mycompany.com failed to authenticate to database mydb
2023-01-15T10:30:10.000Z [ERROR] [Client] User: myuser@mycompany.com failed to authenticate to database mydb
```
Question 40mediummultiple choice
Read the full Management and Operations explanation →

A company's Amazon RDS for MySQL instance is experiencing high CPU utilization. The company's application is write-heavy. The database administrator wants to reduce the load on the primary instance. Which solution is MOST effective?

Question 41hardmultiple choice
Read the full Management and Operations explanation →

A company is using Amazon DynamoDB with on-demand capacity. The application performs many small writes that are throttled frequently. The company wants to minimize costs while reducing throttling. What should the company do?

Question 42easymultiple choice
Read the full Management and Operations explanation →

A database administrator needs to monitor the number of database connections to an Amazon RDS for PostgreSQL instance. Which Amazon CloudWatch metric should the administrator use?

Question 43mediummultiple choice
Read the full Management and Operations explanation →

A team is migrating an on-premises Oracle database to Amazon Aurora PostgreSQL. The database is 2 TB and has a 6-hour maintenance window. Which AWS service should the team use to minimize downtime?

Question 44hardmultiple choice
Read the full Management and Operations explanation →

A company uses Amazon RDS for MySQL with Multi-AZ deployment. The primary instance fails and the database administrator notices that the failover did not happen automatically. What is the MOST likely cause?

Question 45easymultiple choice
Read the full Management and Operations explanation →

A company wants to encrypt an existing unencrypted Amazon RDS for SQL Server instance. What is the MOST efficient way to achieve this?

Question 46mediummultiple choice
Read the full Management and Operations explanation →

A company is using Amazon DynamoDB with global tables. The company wants to monitor replication latency between regions. Which CloudWatch metric should the company use?

Question 47hardmultiple choice
Read the full Management and Operations explanation →

A company is running Amazon Redshift and notices that queries are slow. The administrator runs the STL_ALERT_EVENT_LOG and sees many 'Nested Loop Join' alerts. What is the MOST likely cause?

Question 48easymultiple choice
Read the full Management and Operations explanation →

A company needs to audit all SQL queries executed on an Amazon RDS for PostgreSQL instance. Which feature should the company enable?

Question 49mediummulti select
Read the full Management and Operations explanation →

A company is designing a disaster recovery strategy for Amazon DynamoDB. The strategy must have an RPO of 5 minutes and RTO of 1 hour. Which TWO options meet these requirements? (Choose 2.)

Question 50hardmulti select
Read the full Management and Operations explanation →

A company is migrating an on-premises Oracle database to Amazon Aurora PostgreSQL. The migration must have minimal downtime and support ongoing replication. Which THREE services should the company use? (Choose 3.)

Question 51easymulti select
Read the full Management and Operations explanation →

A company wants to monitor the performance of an Amazon RDS for MySQL instance. Which TWO metrics are available in Amazon CloudWatch by default? (Choose 2.)

Question 52mediummultiple choice
Read the full Management and Operations explanation →

A database administrator runs the above CLI command. The DB instance has pending modifications. Which modification will take effect immediately without requiring a reboot?

Network Topology
aws rds describe-db-instancesdb-instance-identifier mydbquery 'DBInstances[0].PendingModifiedValues'Refer to the exhibit.```"MasterUserPassword": "****","DBInstanceClass": "db.r5.large","AllocatedStorage": 200,"BackupRetentionPeriod": 7
Question 53hardmultiple choice
Read the full Management and Operations explanation →

A company attaches the above IAM policy to a user. The user tries to modify the DB instance 'prod-db' in us-east-1. What is the result?

Exhibit

Refer to the exhibit.

```
{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": [
        "rds:DescribeDBInstances",
        "rds:ModifyDBInstance"
      ],
      "Resource": "*"
    },
    {
      "Effect": "Deny",
      "Action": "rds:ModifyDBInstance",
      "Resource": "arn:aws:rds:us-east-1:123456789012:db:prod-db"
    }
  ]
}
```
Question 54easymultiple choice
Read the full Management and Operations explanation →

A database administrator runs the above AWS CLI command. What is the purpose of the command?

Network Topology
aws cloudwatch get-metric-statisticsnamespace AWS/RDSmetric-name DatabaseConnectionsstart-time 2023-01-01T00:00:00Zend-time 2023-01-02T00:00:00Zperiod 300statistics Averagedimensions Name=DBInstanceIdentifierRefer to the exhibit.```
Question 55mediummultiple choice
Read the full Management and Operations explanation →

A company is using Amazon RDS for MySQL with Multi-AZ deployment. The database experiences a failover event, and after failover, the application reports increased latency. Which action should the database specialist take to diagnose the issue?

Question 56hardmultiple choice
Read the full Management and Operations explanation →

A company has an Amazon DynamoDB table with on-demand capacity mode. They notice that write requests are being throttled during peak hours. The table has a global secondary index (GSI) that is also throttled. Which action should the database specialist take to resolve the throttling?

Question 57easymultiple choice
Read the full Management and Operations explanation →

A database specialist needs to capture SQL queries executed against an Amazon Aurora MySQL DB cluster for performance analysis. The capture should have minimal performance impact and be stored in Amazon CloudWatch Logs. Which feature should the specialist use?

Question 58mediummultiple choice
Read the full Management and Operations explanation →

A company runs a production Amazon RDS for PostgreSQL database. The database specialist needs to perform a major version upgrade with minimal downtime. Which strategy should the specialist use?

Question 59hardmultiple choice
Read the full Management and Operations explanation →

A database specialist is troubleshooting a performance issue on an Amazon RDS for MySQL DB instance. The CPU utilization is consistently above 90%, but the IOPS and memory metrics are well within limits. Which tool should the specialist use to identify the root cause?

Question 60easymultiple choice
Read the full Management and Operations explanation →

A company has an Amazon DynamoDB table with provisioned capacity. The table experiences occasional spikes in write traffic that exceed the provisioned write capacity units (WCU). Which feature should the database specialist enable to handle these spikes without throttling?

Question 61mediummultiple choice
Read the full Management and Operations explanation →

A database specialist is managing an Amazon RDS for Oracle DB instance. The instance has a large amount of data and the specialist needs to migrate it to a new instance in a different AWS Region. Which method would minimize downtime and be the most efficient?

Question 62hardmultiple choice
Read the full NAT/PAT explanation →

A company is using Amazon ElastiCache for Redis as a caching layer in front of an Amazon Aurora MySQL database. The application is experiencing higher latency than expected. Which database design pattern should the specialist recommend to improve read performance?

Question 63easymultiple choice
Read the full Management and Operations explanation →

A database specialist needs to monitor the resource utilization of Amazon RDS DB instances. Which AWS service provides OS-level metrics such as memory, disk, and CPU usage?

Question 64mediummulti select
Read the full Management and Operations explanation →

A company is migrating an on-premises Oracle database to Amazon RDS for Oracle. Which TWO methods can the database specialist use to minimize downtime during the migration?

Question 65hardmulti select
Read the full Management and Operations explanation →

A database specialist is troubleshooting a performance issue on an Amazon Aurora MySQL DB cluster. The cluster has a primary instance and two Aurora Replicas. The application is experiencing high read latency. Which THREE actions should the specialist take to identify the cause?

Question 66easymulti select
Read the full Management and Operations explanation →

A company is using Amazon DynamoDB with Auto Scaling enabled. The database specialist notices that write traffic is being throttled occasionally. Which TWO factors could cause throttling despite Auto Scaling?

Question 67mediummultiple choice
Read the full Management and Operations explanation →

A database specialist sees the above output for an RDS MySQL instance. The application reports that the instance is not accepting writes. What is the most likely cause?

Network Topology
$ aws rds describe-db-instancesdb-instance-identifier mydbRefer to the exhibit.Output from AWS CLI:```"DBInstances": ["DBInstanceIdentifier": "mydb","DBInstanceClass": "db.r5.large","Engine": "mysql","DBInstanceStatus": "available","MultiAZ": false,"StorageType": "gp2","AllocatedStorage": 100,"Iops": 1000,"StorageEncrypted": true,"DBSubnetGroup": {"VpcId": "vpc-12345678"},"Endpoint": {"Address": "mydb.abcdefghijkl.us-east-1.rds.amazonaws.com","Port": 3306"ReadReplicaSourceDBInstanceIdentifier": "mydb-source","ReadReplicaDBInstanceIdentifiers": []
Question 68hardmultiple choice
Read the full Management and Operations explanation →

A database specialist created the above IAM policy for a user. When the user attempts to delete an item from the Orders table, what happens?

Exhibit

Refer to the exhibit.

IAM Policy JSON:
```
{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": [
                "dynamodb:GetItem",
                "dynamodb:PutItem",
                "dynamodb:UpdateItem",
                "dynamodb:DeleteItem"
            ],
            "Resource": "arn:aws:dynamodb:us-east-1:123456789012:table/Orders"
        },
        {
            "Effect": "Deny",
            "Action": "dynamodb:DeleteItem",
            "Resource": "arn:aws:dynamodb:us-east-1:123456789012:table/Orders"
        }
    ]
}
```
Question 69easymultiple choice
Read the full Management and Operations explanation →

A database specialist sees the above error in the application logs for an Amazon RDS for MySQL DB instance. The application is a web server running on an EC2 instance. What is the most likely cause?

Exhibit

Refer to the exhibit.

CloudWatch Logs Error:
```
2025-03-15T10:30:00.000Z [ERROR] 2006: MySQL server has gone away
```
Question 70mediummultiple choice
Read the full NAT/PAT explanation →

A company is running an Amazon RDS for MySQL DB instance. The database performance has degraded over time. The DBA suspects that the issue is due to a high number of connections that are in a 'sleep' state from a legacy application. What is the MOST effective solution to automatically terminate idle connections?

Question 71easymultiple choice
Read the full Management and Operations explanation →

A SysOps administrator is tasked with monitoring the free storage space on all Amazon RDS DB instances. Which AWS service should be used to set up an alarm that sends an email notification when free storage space falls below a threshold?

Question 72hardmultiple choice
Read the full Management and Operations explanation →

A company has a production Amazon DynamoDB table with on-demand capacity. The table experiences occasional throttling due to hot partitions. The operations team wants to implement a solution to identify the specific partition keys causing the throttling. What is the MOST efficient approach?

Question 73mediummultiple choice
Read the full Management and Operations explanation →

A data engineer is troubleshooting a slow-running query on an Amazon Redshift cluster. The query involves large table joins and aggregations. Which diagnostic step should be taken FIRST to understand the query execution plan and identify bottlenecks?

Question 74easymultiple choice
Read the full Management and Operations explanation →

A company runs an Amazon Aurora MySQL DB cluster with one writer and two readers. The application experiences increased read latency. The DBA wants to offload read traffic from the writer instance. Which configuration change should be made to the application?

Question 75hardmultiple choice
Read the full Management and Operations explanation →

A database administrator is using AWS DMS to migrate an on-premises Oracle database to Amazon RDS for PostgreSQL. The migration has been running for several hours, but the full load phase is taking much longer than expected. The CPU utilization on the DMS replication instance is consistently below 10%. What is the MOST likely cause of the slow performance?

Question 76mediummultiple choice
Read the full Management and Operations explanation →

A company uses Amazon ElastiCache for Redis as a caching layer for its e-commerce application. Recently, the cache hit ratio has dropped significantly, causing increased database load. The operations team needs to identify which cache keys are being evicted. What should they do?

Question 77easymultiple choice
Read the full Management and Operations explanation →

A developer needs to restore an Amazon RDS for PostgreSQL DB instance to a specific point in time within the retention period. What must be enabled for this operation to be possible?

Question 78hardmultiple choice
Read the full NAT/PAT explanation →

A company is running a MongoDB-compatible Amazon DocumentDB cluster. The application is experiencing high write latency during peak hours. The cluster has one writer and two readers. The DBA suspects that the issue is due to a large number of indexes on the collection. What should the DBA do to verify this hypothesis without affecting production?

Question 79mediummulti select
Read the full Management and Operations explanation →

A company is using Amazon DynamoDB with on-demand capacity. The operations team wants to monitor for throttled requests. Which TWO metrics from Amazon CloudWatch should be used to set up an alarm for throttling? (Select TWO.)

Question 80hardmulti select
Read the full Management and Operations explanation →

A database administrator is responsible for managing an Amazon RDS for Oracle DB instance. The DBA needs to ensure that all changes to the DB instance's security group rules are logged for audit purposes. Which TWO services can be used together to achieve this? (Select TWO.)

Question 81easymulti select
Read the full Management and Operations explanation →

A company is migrating its on-premises PostgreSQL database to Amazon Aurora PostgreSQL. The migration must have minimal downtime. Which THREE steps should be taken as part of the migration plan? (Select THREE.)

Question 82mediummultiple choice
Read the full Management and Operations explanation →

A company is using a Multi-AZ RDS for MySQL instance. The primary instance recently experienced an unexpected failover, and the application experienced a brief interruption. The database administrator wants to investigate the root cause. Which AWS service should be used to review the failover event and its details?

Question 83hardmultiple choice
Read the full Management and Operations explanation →

A company runs a production Amazon RDS for PostgreSQL database with automated backups enabled. A database administrator accidentally dropped a critical table. The administrator wants to restore the table from a point in time before the drop. The database is 1 TB in size and the recovery point objective (RPO) is 5 minutes. Which approach minimizes downtime?

Question 84easymultiple choice
Read the full Management and Operations explanation →

A company needs to ensure that all changes to an Amazon RDS DB instance's security group are logged for auditing purposes. Which AWS service should be enabled?

Question 85hardmultiple choice
Read the full Management and Operations explanation →

A company has a production Amazon Aurora MySQL DB cluster with one writer and two reader instances. The application uses a custom connection pool that uses the writer endpoint for all database calls. The application is experiencing increased latency during peak hours. A database specialist suggests using the reader endpoint for read-only queries. What change is required on the application side to implement this recommendation?

Question 86mediummultiple choice
Read the full Management and Operations explanation →

A database administrator is troubleshooting a performance issue on an Amazon RDS for SQL Server instance. The CPU utilization is consistently above 90%, and the number of database connections is high. Which Amazon CloudWatch metric should be analyzed first to determine if the issue is due to a specific query?

Question 87mediummultiple choice
Read the full Management and Operations explanation →

A company has an Amazon RDS for MySQL DB instance that is running low on storage. The current allocated storage is 500 GB, and the free space is down to 10 GB. The database administrator wants to increase storage with minimal downtime. Which action should be taken?

Question 88hardmultiple choice
Read the full Management and Operations explanation →

A company uses Amazon DynamoDB with on-demand capacity mode for a critical application. During a marketing campaign, the application experienced throttled requests despite the on-demand mode. The table has a single partition key. The database specialist notices that the throttling occurs sporadically even though overall traffic is within limits. What is the most likely cause?

Question 89mediummultiple choice
Read the full Management and Operations explanation →

A company is migrating an on-premises Oracle database to Amazon RDS for Oracle. The database is 2 TB in size. The company wants to minimize downtime during the migration. Which AWS service should be used to perform an online migration with minimal downtime?

Question 90easymultiple choice
Read the full Management and Operations explanation →

A database administrator needs to retain backups of an Amazon RDS for PostgreSQL DB instance for 7 years to meet compliance requirements. The automated backup retention period is limited to 35 days. Which solution should be used?

Question 91mediummulti select
Read the full Management and Operations explanation →

A company is running a production Amazon RDS for MySQL Multi-AZ DB instance. The database administrator needs to perform a minor version upgrade with minimal downtime. Which TWO actions should be taken? (Choose TWO.)

Question 92hardmulti select
Read the full Management and Operations explanation →

A company is using Amazon DynamoDB with provisioned capacity for a table that experiences unpredictable traffic spikes. The table's read capacity is often underutilized, but occasionally throttling occurs. Which THREE steps should be taken to improve performance and cost? (Choose THREE.)

Question 93easymulti select
Read the full Management and Operations explanation →

A company is using Amazon RDS for MariaDB. The database administrator wants to monitor the database for slow queries. Which TWO services can be used to achieve this? (Choose TWO.)

Question 94mediummultiple choice
Read the full Management and Operations explanation →

A company is running a production Amazon RDS for MySQL DB instance. The database size is 500 GB and the workload is write-heavy. The team notices that the automated backups are taking longer than expected and are impacting the performance during the backup window. Which action should be taken to minimize the performance impact?

Question 95hardmultiple choice
Read the full NAT/PAT explanation →

A company is using Amazon Aurora MySQL-Compatible Edition. The database has frequent deadlocks, and the application team suspects that the isolation level is causing the issue. The current isolation level is REPEATABLE READ. The team wants to reduce deadlocks while maintaining data consistency. Which isolation level should be recommended?

Question 96easymultiple choice
Read the full Management and Operations explanation →

A company has an Amazon DynamoDB table that stores session data for a web application. The table's read capacity units (RCUs) are consistently near 100% utilization during peak hours, causing throttling. The application can tolerate eventually consistent reads. Which action should the application team take to reduce throttling?

Question 97mediummultiple choice
Read the full Management and Operations explanation →

A database administrator is troubleshooting a slow-running query on an Amazon RDS for PostgreSQL DB instance. The query plan shows a sequential scan on a large table. The table has a primary key and an index on the column used in the WHERE clause. Why might the query optimizer choose a sequential scan over an index scan?

Question 98hardmultiple choice
Read the full Management and Operations explanation →

A company is migrating an on-premises Oracle database to Amazon Aurora PostgreSQL. The database has several stored procedures that use Oracle-specific PL/SQL. The team needs to minimize manual code changes. Which AWS service or tool should be used to automate the conversion of the stored procedures?

Question 99easymultiple choice
Read the full Management and Operations explanation →

An application is experiencing increased latency when writing to an Amazon DynamoDB table. The table uses on-demand capacity mode. The CloudWatch metric 'WriteThrottleEvents' is zero. What is the most likely cause of the increased latency?

Question 100mediummultiple choice
Read the full Management and Operations explanation →

A company is running an Amazon RDS for SQL Server Multi-AZ DB instance. During a recent failover test, the application experienced a timeout of 60 seconds. The application uses a connection string that points to the CNAME of the DB instance. Which configuration change would reduce the failover time?

Question 101hardmultiple choice
Read the full Management and Operations explanation →

A company is using Amazon ElastiCache for Redis as a caching layer for a high-traffic web application. The cache hit ratio has dropped from 95% to 70% after a recent deployment that changed the cache key structure. The application team wants to improve the hit ratio without increasing the cache memory. Which action should they take?

Question 102easymultiple choice
Read the full NAT/PAT explanation →

A company has an Amazon DynamoDB table that stores IoT sensor data. The table has a partition key of device_id and a sort key of timestamp. The team wants to efficiently retrieve the latest reading for each device. Which query pattern should be used?

Question 103mediummulti select
Read the full Management and Operations explanation →

A company is migrating a PostgreSQL database to Amazon Aurora PostgreSQL. The database has a large table that is frequently accessed. The team wants to minimize downtime during the migration. Which TWO strategies should be used together?

Question 104hardmulti select
Read the full Management and Operations explanation →

A company is running Amazon RDS for Oracle with a Multi-AZ deployment. The database is experiencing performance degradation due to high I/O waits. The team suspects that the issue is related to the transaction log (redo log) writes. Which THREE metrics should be monitored in Amazon CloudWatch to diagnose the issue?

Question 105easymulti select
Read the full Management and Operations explanation →

A company is using Amazon DynamoDB with provisioned capacity. The table's read capacity is consistently underutilized, but the write capacity is frequently maxed out. The team wants to optimize costs while maintaining performance. Which TWO actions should be taken?

Question 106mediummultiple choice
Read the full Management and Operations explanation →

The exhibit shows the output of an AWS CLI command for an Amazon RDS DB instance. Based on the output, what is the current configuration of the DB instance?

Network Topology
$ aws rds describe-db-instancesdb-instance-identifier mydbquery 'DBInstances[0].[DBInstanceIdentifierRefer to the exhibit.```"mydb","db.r5.large","mysql","8.0.28","available",false,null
Question 107hardmultiple choice
Read the full Management and Operations explanation →

The exhibit shows an IAM policy attached to a user. The user needs to create a manual snapshot of an RDS DB instance named 'production-db'. Which action will the user be able to perform?

Exhibit

Refer to the exhibit.

```json
{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": [
        "rds:DescribeDBInstances",
        "rds:DescribeDBClusters",
        "rds:ListTagsForResource"
      ],
      "Resource": "*"
    },
    {
      "Effect": "Allow",
      "Action": [
        "rds:CreateDBSnapshot",
        "rds:DeleteDBSnapshot"
      ],
      "Resource": "arn:aws:rds:us-east-1:123456789012:snapshot:mydb-*"
    },
    {
      "Effect": "Deny",
      "Action": "rds:DeleteDBInstance",
      "Resource": "*"
    }
  ]
}
```
Question 108mediummultiple choice
Read the full Management and Operations explanation →

The exhibit shows the output of a MySQL command run on an Amazon RDS for MySQL DB instance. The database is experiencing frequent checkpointing that is causing I/O spikes. The parameter innodb_log_file_size is currently 256 MB. Which change should be made to reduce checkpoint frequency?

Network Topology
+Refer to the exhibit.```Enter password:or \g.mysql> SHOW VARIABLES LIKE 'innodb_log_file_size'| Variable_name | Value || innodb_log_file_size | 268435456 |
Question 109mediummultiple choice
Read the full Management and Operations explanation →

A company is running an Amazon RDS for PostgreSQL DB instance with Multi-AZ. The database experiences a failover during a maintenance window. After the failover, the application connection pool continues to use the old primary endpoint, causing connection errors. What is the BEST way to ensure application connections automatically redirect to the new primary after a failover?

Question 110hardmultiple choice
Read the full Management and Operations explanation →

A company uses Amazon DynamoDB with on-demand capacity for a mobile application. During a marketing campaign, write traffic spikes to 10,000 writes per second for 5 minutes. The application experiences throttling after the first minute. The DynamoDB table has a single partition key. What should be done to prevent throttling in future campaigns?

Question 111easymultiple choice
Read the full Management and Operations explanation →

A company is migrating an on-premises Oracle database to Amazon RDS for Oracle. The database is 2 TB in size and has a 100 Mbps internet connection. The migration must be completed within 3 days with minimal downtime. Which approach is MOST suitable?

Question 112mediummultiple choice
Read the full Management and Operations explanation →

A company runs an Amazon Redshift cluster with three nodes. The data warehouse team notices that some queries are slow due to high disk usage. The cluster has reached 80% storage capacity. What is the MOST cost-effective way to increase storage without interrupting operations?

Question 113hardmultiple choice
Read the full Management and Operations explanation →

A company has an Amazon RDS for MySQL DB instance with automated backups enabled. The database is 500 GB in size. The company wants to create a new test database from the current state with minimal impact on production. Which approach meets these requirements?

Question 114easymultiple choice
Read the full Management and Operations explanation →

A developer accidentally deleted a table in an Amazon RDS for PostgreSQL DB instance. The instance has automated backups enabled with a retention period of 7 days. The deletion occurred 2 hours ago. What is the quickest way to recover the table?

Question 115mediummultiple choice
Read the full Management and Operations explanation →

A company uses Amazon DynamoDB with provisioned capacity for a gaming application. During a new game launch, write traffic spikes to 2x the provisioned write capacity for 30 minutes. Some writes are throttled. The company wants to handle these predictable spikes without manual intervention. What is the MOST cost-effective solution?

Question 116hardmultiple choice
Read the full DNS explanation →

An e-commerce company runs a multi-AZ deployment of Amazon RDS for MySQL. During a recent failover test, the application experienced a 30-second write outage. The application uses a connection pooling library. The DB instance has a 60-second TTL for DNS records. What is the MOST likely cause of the outage?

Question 117easymultiple choice
Read the full Management and Operations explanation →

A company is using Amazon DynamoDB with on-demand capacity for a serverless web application. The application experiences occasional throttling. The DynamoDB table has a simple primary key (partition key only). The throttled requests are related to a small number of partition keys. What is the MOST likely cause?

Question 118mediummulti select
Read the full Management and Operations explanation →

A company is running an Amazon RDS for MySQL DB instance with Multi-AZ. The company wants to perform a major version upgrade with minimal downtime. Which TWO actions should be taken? (Choose TWO.)

Question 119hardmulti select
Read the full Management and Operations explanation →

A company is designing a disaster recovery plan for an Amazon RDS for Oracle DB instance. The primary region is us-east-1, and the DR region is us-west-2. The RPO must be less than 5 minutes, and the RTO must be less than 15 minutes. Which THREE actions should be taken? (Choose THREE.)

Question 120mediummulti select
Read the full Management and Operations explanation →

A company is using Amazon DynamoDB with a global table for a multi-region application. The application is deployed in us-east-1 and eu-west-1. The company notices that write latency to eu-west-1 is higher than expected. Which TWO actions can reduce write latency? (Choose TWO.)

Question 121easymultiple choice
Read the full Management and Operations explanation →

A company is migrating an on-premises Oracle database to Amazon RDS for Oracle. During the migration, they need to ensure minimal downtime. Which AWS service should be used for the migration?

Question 122mediummultiple choice
Read the full Management and Operations explanation →

A database administrator notices that an Amazon Aurora MySQL DB cluster's primary instance is experiencing high CPU utilization due to a long-running analytical query. The application can tolerate eventual consistency. What is the MOST cost-effective solution to reduce CPU load on the primary instance?

Question 123hardmultiple choice
Read the full Management and Operations explanation →

A company uses Amazon RDS for PostgreSQL with Multi-AZ deployment. They experience increased write latency during peak hours. The DB instance size is db.r5.large. Which action would MOST effectively reduce write latency?

Question 124easymultiple choice
Review the full subnetting walkthrough →

A company wants to automate the creation of a new Amazon RDS for SQL Server instance with specific configurations, including VPC, subnet, and security group settings. Which AWS service should be used to deploy this infrastructure as code?

Question 125mediummultiple choice
Read the full Management and Operations explanation →

A company runs an Amazon DynamoDB table with on-demand capacity. They notice that a specific partition key receives a high volume of read requests, causing throttling for that partition. What is the BEST solution to distribute the load evenly?

Question 126hardmultiple choice
Read the full Management and Operations explanation →

A company uses Amazon RDS for MySQL with read replicas. The application writes to the primary and reads from the replicas. Occasionally, the application reads stale data from the replicas. Which action would ensure read-after-write consistency without impacting write performance?

Question 127easymulti select
Read the full Management and Operations explanation →

Which TWO AWS services can be used to monitor and set alarms on Amazon RDS database performance metrics? (Choose two.)

Question 128mediummulti select
Read the full Management and Operations explanation →

Which THREE actions can be performed using the AWS CLI for Amazon Aurora? (Choose three.)

Question 129hardmulti select
Read the full Management and Operations explanation →

Which THREE factors should be considered when choosing between Amazon DynamoDB and Amazon RDS for a new application? (Choose three.)

Question 130easymultiple choice
Read the full Management and Operations explanation →

A company wants to ensure that their Amazon RDS for PostgreSQL database is automatically backed up every day and retains backups for 30 days. Which configuration should they use?

Question 131mediummultiple choice
Read the full Management and Operations explanation →

A company is running a production Amazon RDS for MySQL Multi-AZ DB instance. The database experiences intermittent high latency and the CloudWatch 'ReadLatency' metric spikes during periods of heavy read traffic. The application uses a single database endpoint. What is the MOST effective way to reduce read latency without changing the application code?

Question 132hardmultiple choice
Read the full Management and Operations explanation →

A company uses Amazon DynamoDB with on-demand capacity for a gaming leaderboard. During a promotional event, write traffic spikes 10x, causing occasional 'ProvisionedThroughputExceededException' errors. The application retries with exponential backoff, but latency increases. The team notices that the 'ThrottledWriteRequests' metric spikes. What is the MOST cost-effective solution to handle these unpredictable spikes?

Question 133easymultiple choice
Read the full Management and Operations explanation →

A company is migrating an on-premises Oracle database to Amazon RDS for Oracle. The database is 500 GB and has a 4-hour downtime window. Which AWS service should be used to perform the migration with minimal downtime?

Question 134mediummultiple choice
Read the full Management and Operations explanation →

A company has an Amazon Redshift cluster that is running slowly on complex queries. The cluster has 10 dc2.large nodes. The 'QueryDuration' metric shows high values for several queries. The team wants to improve performance without changing queries. Which action is MOST likely to help?

Question 135hardmultiple choice
Read the full Management and Operations explanation →

A company runs a critical Amazon RDS for PostgreSQL database. They notice that the 'DiskQueueDepth' metric is consistently high and the 'FreeStorageSpace' is below 10%. The database is used for OLTP workloads. What is the MOST immediate action to take?

Question 136easymultiple choice
Read the full Management and Operations explanation →

A company needs to audit all SQL queries executed on an Amazon RDS for SQL Server database. Which AWS service should be used?

Question 137mediummultiple choice
Read the full Management and Operations explanation →

A company is using Amazon ElastiCache for Redis to cache database query results. They notice that the cache hit ratio is low and many requests are hitting the database. The 'Evictions' metric is high. What is the MOST likely cause?

Question 138hardmultiple choice
Read the full Management and Operations explanation →

A company is running an Amazon DynamoDB table with global secondary indexes (GSIs). Write activity increases, and the 'ThrottledWriteEvents' metric for a GSI spikes. The table itself is not throttled. What is the most likely cause?

Question 139easymultiple choice
Read the full Management and Operations explanation →

A company wants to automate backups for an Amazon RDS for PostgreSQL DB instance. The backup retention period should be 35 days. Which step is required?

Question 140mediummulti select
Read the full Management and Operations explanation →

A company is designing a disaster recovery plan for an Amazon RDS for MySQL database. The database must have a Recovery Point Objective (RPO) of less than 5 minutes and a Recovery Time Objective (RTO) of less than 1 hour. Which TWO actions should be taken? (Choose two.)

Question 141hardmulti select
Read the full Management and Operations explanation →

A company is migrating an on-premises MongoDB database to Amazon DocumentDB. The migration must have minimal downtime. Which THREE steps should be taken? (Choose three.)

Question 142easymulti select
Read the full Management and Operations explanation →

A company is using Amazon RDS for Oracle with Automated Backups enabled. The database size is 1 TB. The company wants to improve the backup and restore performance. Which TWO actions should be taken? (Choose two.)

Question 143hardmultiple choice
Read the full Management and Operations explanation →

A company runs a critical e-commerce application on Amazon RDS for MySQL with Multi-AZ enabled. The database is 2 TB and uses General Purpose (gp2) storage. Recently, during peak hours, the application experienced a 5-minute outage. The CloudWatch logs show that the primary DB instance failed and an automatic failover occurred. However, the failover took 3 minutes, which is longer than the expected 1-2 minutes. The 'ReadLatency' and 'WriteLatency' metrics were elevated before the failure. The 'BurstBalance' metric was at 0% for the hour before the failure. The team suspects the issue is related to storage performance. What should the team do to prevent this issue in the future?

Question 144mediummultiple choice
Read the full Management and Operations explanation →

A company uses Amazon DynamoDB for a real-time analytics application. The table is provisioned with 1000 RCU and 500 WCU. Recently, the application experienced throttling on reads during a marketing campaign. The 'ConsumedReadCapacityUnits' metric shows spikes up to 2000 RCU. The 'ReadThrottleEvents' metric is high. The table has a global secondary index (GSI) that is also throttled. The application uses eventually consistent reads. The team wants to minimize costs while preventing throttling. The campaign traffic is predictable and occurs for 2 hours each day. What should the team do?

Question 145easymultiple choice
Read the full Management and Operations explanation →

A company recently migrated an on-premises PostgreSQL database to Amazon RDS for PostgreSQL. The database is 100 GB and used by a web application. After migration, the application's response time increased. The 'ReadLatency' and 'WriteLatency' metrics are normal. The 'CPUUtilization' is at 90%. The 'DatabaseConnections' metric shows 200 connections, which is close to the max connections for the instance class (db.t3.medium, max connections = 200). The application uses connection pooling. The team wants to reduce CPU utilization without changing the application code. Which action should the team take?

Question 146mediummultiple choice
Read the full Management and Operations explanation →

A company runs a production Amazon RDS for MySQL Multi-AZ DB instance. The database experiences a failover event. After the failover, the application team reports increased latency for write operations. Which action should be taken to investigate the issue?

Question 147hardmultiple choice
Read the full NAT/PAT explanation →

A company uses Amazon DynamoDB to store session data for a web application. The application is experiencing occasional throttling (ProvisionedThroughputExceededException) during peak hours. The DynamoDB table has on-demand capacity mode. Which combination of steps should be taken to resolve the issue?

Question 148easymultiple choice
Read the full Management and Operations explanation →

A database administrator notices that the free storage space on an Amazon RDS for PostgreSQL DB instance is decreasing rapidly. The instance has automated backups enabled with a retention period of 7 days. Which action should be taken to monitor storage usage and prevent running out of space?

Question 149mediummultiple choice
Read the full Management and Operations explanation →

A company has an Amazon Redshift cluster with a single node. The cluster is used for reporting. Recently, queries have become slow, and the cluster's disk space is 80% full. Which action should be taken to improve query performance and manage storage?

Question 150hardmultiple choice
Read the full Management and Operations explanation →

A company uses Amazon DynamoDB with global tables for a multi-region application. The application writes to the table in us-east-1. A developer notices that updates made in us-east-1 are not appearing in the replica in eu-west-1 after several minutes. Which action should be taken to diagnose the issue?

Question 151mediummulti select
Read the full Management and Operations explanation →

A company is migrating an on-premises Oracle database to Amazon Aurora PostgreSQL. The database has several large tables with frequent INSERT and UPDATE operations. Which TWO actions should be taken to optimize performance after migration?

Question 152hardmulti select
Read the full Management and Operations explanation →

A company uses Amazon DynamoDB for a high-traffic gaming leaderboard. The table has a partition key of 'game_id' and a sort key of 'score'. During a tournament, the application experiences throttling on a single partition. The application uses strongly consistent reads. Which TWO actions should be taken to resolve the throttling and maintain performance?

Question 153mediummulti select
Read the full Management and Operations explanation →

A company runs an Amazon RDS for MySQL DB instance with Multi-AZ. The application team reports that a recent schema change caused a significant increase in replication lag. The instance has a read replica in a different AWS Region. Which THREE actions should be taken to reduce replication lag?

Question 154mediummultiple choice
Read the full Management and Operations explanation →

Refer to the exhibit. An IAM policy is attached to a role used by an application running on Amazon EC2. The application needs to read items from a DynamoDB table named 'MyTable' and create manual snapshots of an RDS instance. What is the issue with the policy?

Exhibit

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": [
        "rds:DescribeDBInstances",
        "rds:CreateDBSnapshot"
      ],
      "Resource": "*"
    },
    {
      "Effect": "Allow",
      "Action": [
        "dynamodb:PutItem",
        "dynamodb:DeleteItem"
      ],
      "Resource": "arn:aws:dynamodb:us-east-1:123456789012:table/MyTable"
    }
  ]
}
Question 155hardmultiple choice
Read the full Management and Operations explanation →

Refer to the exhibit. An IAM policy statement allows creating manual snapshots for an RDS instance. A database administrator is unable to create a snapshot from the AWS Management Console. The error message indicates insufficient permissions. What is the likely cause?

Exhibit

Resource: "arn:aws:rds:us-east-1:123456789012:db:mydb"
Action: "rds:CreateDBSnapshot"
Effect: Allow
Condition: {
  "StringEquals": {
    "aws:RequestedRegion": "us-east-1"
  }
}
Question 156easymultiple choice
Read the full Management and Operations explanation →

Refer to the exhibit. A database administrator runs the AWS CLI command shown. The output is: ["available", false]. What does this output indicate about the DB instance?

Network Topology
db-instance-identifier mydbaws rds describe-db-instancesquery 'DBInstances[0].[DBInstanceStatus
Question 157hardmultiple choice
Read the full Management and Operations explanation →

A company runs a critical application on Amazon RDS for PostgreSQL with Multi-AZ. The database has a large table (over 500 GB) that is frequently updated. The operations team notices that the primary instance's CPU usage is consistently above 90%, and the replica lag between the primary and standby is increasing during peak hours. The application can tolerate a few seconds of downtime. The team needs to reduce CPU load and improve write performance without changing the application code. Which action should be taken?

Question 158mediummultiple choice
Read the full Management and Operations explanation →

A company uses Amazon DynamoDB to store IoT sensor data. Each sensor writes a record every second. The table has a partition key of 'sensor_id' and a sort key of 'timestamp'. Over time, the team notices that write performance degrades for certain sensors that generate more data. The table uses provisioned capacity with auto scaling enabled. The application uses eventual consistency. The team needs to ensure consistent write performance without throttling. Which action should be taken?

Question 159easymultiple choice
Read the full Management and Operations explanation →

A company has an Amazon Redshift cluster with two dc2.large nodes. The cluster is used for daily ETL jobs and reporting. The operations team receives an alert that the cluster's disk space is 90% full. The ETL jobs are failing with 'disk full' errors. The team needs to resolve the issue quickly with minimal downtime. Which action should be taken?

Question 160hardmultiple choice
Read the full Management and Operations explanation →

A company runs a production Amazon RDS for MySQL DB instance with Multi-AZ. The database is used by a web application. The application team reports that the database is experiencing intermittent connection timeouts and increased latency. The CloudWatch metrics show that the database connections spike to the maximum allowed (max_connections) during peak hours, and the CPU utilization is high. The team needs to resolve the connection issues without modifying the application code. The application uses connection pooling at the application layer. Which action should be taken?

Question 161mediummulti select
Read the full Management and Operations explanation →

A company is migrating its on-premises Oracle database to Amazon RDS for Oracle. The database is 2 TB in size and the network bandwidth is 100 Mbps. The migration must have minimal downtime. Which TWO approaches should be used together to achieve this?

Question 162hardmulti select
Read the full Management and Operations explanation →

An e-commerce application uses Amazon Aurora MySQL with a Multi-AZ DB cluster. During a recent load test, the application experienced increased read latency. The database cluster consists of one writer and two reader instances. Which THREE actions should be taken to improve read performance?

Question 163mediummultiple choice
Read the full Management and Operations explanation →

Refer to the exhibit. An IAM policy is attached to a user who needs to manage Amazon RDS DB instances. When the user attempts to modify a DB instance, they receive an 'AccessDenied' error. What is the most likely cause?

Exhibit

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": [
        "rds:DescribeDBInstances",
        "rds:ModifyDBInstance"
      ],
      "Resource": "*"
    }
  ]
}
Question 164easymultiple choice
Read the full Management and Operations explanation →

A company has an Amazon RDS for PostgreSQL DB instance with automated backups enabled. The retention period is set to 7 days. A developer accidentally performed a DROP TABLE operation on a critical table 2 days ago. How can the table be recovered with minimal data loss?

Question 165hardmultiple choice
Read the full Management and Operations explanation →

A company runs a critical application on Amazon RDS for MySQL with Multi-AZ deployment. The application performs frequent writes. The DB instance's CPU utilization is consistently above 80%, and the write latency is high. The company wants to improve write performance without changing the application code. Which solution is MOST effective?

Question 166mediummultiple choice
Read the full Management and Operations explanation →

A company has an Amazon DynamoDB table with on-demand capacity mode. The table experiences occasional spikes in traffic. During these spikes, some requests receive ProvisionedThroughputExceededException errors. The company wants to minimize these errors without changing the application. Which solution should be used?

Question 167easymultiple choice
Read the full Management and Operations explanation →

A company runs an Amazon RDS for SQL Server DB instance in a VPC. The security group for the DB instance allows inbound traffic on port 1433 from the application servers' security group. The application servers can connect to the database, but a database administrator cannot connect from their workstation using SQL Server Management Studio (SSMS). What is the MOST likely cause?

Question 168hardmultiple choice
Read the full Management and Operations explanation →

A company uses Amazon DynamoDB with global tables in a multi-Region active-active configuration. The application writes to the table in us-east-1 and reads from us-west-2. Recently, a network partition occurred between the two regions, and after recovery, some data was lost. What is the most likely reason for the data loss?

Question 169easymultiple choice
Read the full Management and Operations explanation →

A database administrator notices that an Amazon RDS for MySQL DB instance has experienced a failover during a maintenance window. What is the most likely cause of this failover?

Question 170mediummultiple choice
Read the full NAT/PAT explanation →

A company runs an Amazon RDS for PostgreSQL DB instance with Multi-AZ enabled. The primary instance is in us-east-1a and the standby is in us-east-1b. During a routine audit, the security team discovers that database connections are being terminated unexpectedly. The database administrator reviews the RDS events and sees an event: 'A Multi-AZ failover has been completed.' What step should be taken to determine the cause of this failover?

Question 171hardmultiple choice
Read the full Management and Operations explanation →

A database team is migrating an on-premises Oracle database to Amazon Aurora PostgreSQL. The team needs to ensure minimal downtime and data consistency. Which approach should be used?

Question 172mediummultiple choice
Read the full Management and Operations explanation →

A company has an Amazon DynamoDB table with on-demand capacity mode. The table experiences a sudden spike in traffic, and the application starts receiving ProvisionedThroughputExceededException errors. What is the most likely cause?

Question 173easymultiple choice
Read the full Management and Operations explanation →

A company is using Amazon RDS for SQL Server with Multi-AZ and automated backups enabled. The database administrator needs to restore the database to a specific point in time that is within the retention period. What is the correct procedure?

Question 174mediummultiple choice
Read the full Management and Operations explanation →

An Amazon RDS for MySQL DB instance has a high number of connections and the application is experiencing slow response times. The database administrator wants to identify the queries that are causing the most load. Which approach is most effective?

Question 175hardmultiple choice
Read the full Management and Operations explanation →

A company is using Amazon DynamoDB with global tables (multi-region) for a gaming application. The application writes to a table in us-east-1 and reads from a table in eu-west-1. The team notices that writes in us-east-1 are taking longer than expected to propagate to eu-west-1. What is the most likely cause?

Question 176easymultiple choice
Read the full Management and Operations explanation →

A company is using Amazon ElastiCache for Redis to cache database query results. The application team reports that cache hit ratio has dropped significantly. What is the first step to investigate?

Question 177mediummultiple choice
Read the full Management and Operations explanation →

An Amazon RDS for Oracle DB instance is experiencing high swap usage. The database administrator wants to reduce swap usage. Which action should be taken?

Question 178mediummulti select
Read the full Management and Operations explanation →

Which TWO actions can be taken to monitor the health of an Amazon DynamoDB table? (Choose 2.)

Question 179hardmulti select
Read the full Management and Operations explanation →

Which THREE factors should be considered when selecting the backup strategy for an Amazon RDS for PostgreSQL DB instance? (Choose 3.)

Question 180mediummulti select
Read the full Management and Operations explanation →

Which TWO methods can be used to reduce the read latency for an Amazon Aurora MySQL database? (Choose 2.)

Question 181mediummultiple choice
Read the full Management and Operations explanation →

A company is experiencing increased latency on their Amazon RDS for PostgreSQL instance. The application team reports that queries are taking longer than usual. The database metrics show high CPU utilization and a spike in write operations. Which initial step should the database specialist take to diagnose the issue?

Question 182easymultiple choice
Read the full Management and Operations explanation →

A database administrator needs to automate the backup process for an Amazon RDS for MySQL DB instance. The backups must be retained for 30 days and should be taken daily. Which AWS service should be used to implement this automation?

Question 183hardmultiple choice
Read the full NAT/PAT explanation →

A company is running an Amazon DynamoDB table with on-demand capacity mode. The table experiences occasional throttling during peak hours. The application team wants to understand the read/write patterns to optimize the table design. Which approach should the database specialist take to analyze the throttling events?

Question 184mediummultiple choice
Read the full Management and Operations explanation →

A company is migrating an on-premises Oracle database to Amazon RDS for Oracle. The database size is 500 GB. The migration must have minimal downtime. Which AWS service should be used to perform the migration?

Question 185easymultiple choice
Read the full Management and Operations explanation →

A database administrator needs to monitor the number of connections to an Amazon RDS for MySQL DB instance. Which Amazon CloudWatch metric should be used?

Question 186hardmultiple choice
Read the full NAT/PAT explanation →

A company uses Amazon Aurora MySQL-Compatible Edition. The database specialist notices that the DB cluster's failover time is longer than expected. The primary instance is using a db.r5.large instance class. Which change would most likely reduce the failover time?

Question 187mediummultiple choice
Read the full Management and Operations explanation →

A company is using Amazon Redshift for data warehousing. The database administrator needs to identify which queries are consuming the most resources. Which system view should be queried?

Question 188easymultiple choice
Read the full Management and Operations explanation →

A company needs to ensure that all changes to an Amazon RDS DB instance are logged for auditing purposes. Which AWS service should be enabled?

Question 189hardmultiple choice
Read the full Management and Operations explanation →

A database administrator sees the above error logs in CloudWatch for an Amazon RDS for PostgreSQL DB instance. The application team confirms that the password for 'app_user' is correct. What is the most likely cause of the authentication failures?

Exhibit

Refer to the exhibit.

Exhibit: CloudWatch Logs snippet
```
2023-01-15T12:00:00Z [ERROR] [Client] Authentication failed for user 'app_user' from host '10.0.1.50' using password
2023-01-15T12:00:01Z [ERROR] [Client] Authentication failed for user 'app_user' from host '10.0.1.50' using password
2023-01-15T12:00:02Z [ERROR] [Client] Authentication failed for user 'app_user' from host '10.0.1.50' using password
```
Question 190mediummulti select
Read the full Management and Operations explanation →

Which TWO of the following are valid strategies for reducing costs for an Amazon DynamoDB table with on-demand capacity mode? (Choose TWO.)

Question 191hardmulti select
Read the full Management and Operations explanation →

Which THREE of the following are required to set up cross-Region replication for an Amazon RDS for MySQL DB instance? (Choose THREE.)

Question 192easymulti select
Read the full Management and Operations explanation →

Which TWO of the following are benefits of using Amazon RDS Proxy? (Choose TWO.)

Question 193mediummultiple choice
Read the full Management and Operations explanation →

A database administrator is creating an IAM policy to allow a DevOps engineer to manage production RDS instances. The policy above is attached to the engineer's IAM role. The engineer reports that they cannot create a new DB instance with the identifier 'prod-analytics'. What is the most likely reason?

Exhibit

Refer to the exhibit.

Exhibit: IAM policy snippet
```json
{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": [
        "rds:CreateDBInstance",
        "rds:DeleteDBInstance",
        "rds:ModifyDBInstance"
      ],
      "Resource": "arn:aws:rds:us-east-1:123456789012:db:prod-*"
    }
  ]
}
```
Question 194hardmultiple choice
Read the full Management and Operations explanation →

A database administrator runs the 'describe-db-clusters' CLI command and sees the above output. The earliest restorable time is December 1, 2023. However, the backup retention period is 7 days. Why is the earliest restorable time earlier than 7 days from now (assuming today is December 5, 2023)?

Exhibit

Refer to the exhibit.

Exhibit: AWS CLI output
```json
{
    "DBClusters": [
        {
            "DBClusterIdentifier": "mydbcluster",
            "Engine": "aurora-mysql",
            "Status": "available",
            "EarliestRestorableTime": "2023-12-01T00:00:00Z",
            "LatestRestorableTime": "2023-12-05T12:00:00Z",
            "BackupRetentionPeriod": 7,
            "DBClusterMembers": [
                {
                    "DBInstanceIdentifier": "mydbcluster-instance-1",
                    "IsClusterWriter": true,
                    "DBInstanceStatus": "available"
                },
                {
                    "DBInstanceIdentifier": "mydbcluster-instance-2",
                    "IsClusterWriter": false,
                    "DBInstanceStatus": "available"
                }
            ]
        }
    ]
}
```
Question 195mediummultiple choice
Read the full Management and Operations explanation →

A database administrator sees repeated 'Aborted connection' warnings in the RDS for MySQL error log. The application team reports intermittent connection errors. What is the most likely cause of these aborted connections?

Exhibit

Refer to the exhibit.

Exhibit: Amazon RDS for MySQL error log snippet
```
2023-06-01 10:00:00 1234567890 [Warning] Aborted connection 1234567890 to db: 'mydb' user: 'appuser' host: '10.0.0.50' (Got an error reading communication packets)
```
Question 196mediummultiple choice
Read the full Management and Operations explanation →

A company is running an Amazon RDS for MySQL DB instance with Multi-AZ deployment. The database experiences a failover due to a hardware failure. After the failover, the application team reports that a critical stored procedure is missing. What should the database administrator do to prevent this issue in the future?

Question 197hardmultiple choice
Read the full Management and Operations explanation →

A company is using Amazon DynamoDB with on-demand capacity mode. The application experiences occasional throttling on a table during peak hours. The table's read and write requests are within the throughput limits, but the provisioned read/write capacity is exceeded. What is the most likely cause of this throttling?

Question 198easymultiple choice
Read the full Management and Operations explanation →

A database administrator is monitoring Amazon RDS for PostgreSQL using CloudWatch. The DB instance shows high CPU utilization, but the number of connections is normal. What is the most likely cause of the high CPU utilization?

Question 199mediummultiple choice
Read the full Management and Operations explanation →

A company is using Amazon Redshift for data warehousing. They notice that query performance has degraded over time. The database administrator checks the system tables and finds that there is significant skew in data distribution across slices. What action should be taken to improve query performance?

Question 200hardmultiple choice
Read the full NAT/PAT explanation →

A company is running a MongoDB-compatible Amazon DocumentDB cluster. The application experiences high write latency during peak hours. The database administrator checks the CloudWatch metrics and notices that the Write IOPS metric is consistently at the maximum for the instance size. What should the administrator do to reduce write latency?

Question 201easymultiple choice
Read the full Management and Operations explanation →

A company uses Amazon DynamoDB with provisioned capacity. The application team reports occasional ProvisionedThroughputExceededException errors. The database administrator notices that the errors occur during periods of high traffic. What is the most cost-effective way to handle these errors without over-provisioning capacity?

Question 202mediummultiple choice
Read the full Management and Operations explanation →

A company is running an Amazon RDS for SQL Server DB instance. The database administrator needs to perform a major version upgrade. What is the recommended approach to minimize downtime?

Question 203hardmultiple choice
Read the full NAT/PAT explanation →

A company is using Amazon Aurora MySQL-Compatible Edition. The database administrator notices that the Aurora cluster has a high number of binary log (binlog) files in the cluster volume, consuming significant storage. The binlog retention period is set to 24 hours. What is the most efficient way to reduce the storage consumed by binlog files without compromising point-in-time recovery (PITR)?

Question 204easymultiple choice
Read the full Management and Operations explanation →

A company is using Amazon DynamoDB with global tables. The application writes to a table in the us-east-1 region. The database administrator notices that updates made in us-east-1 are not appearing in the replica table in eu-west-1. What is the most likely cause?

Question 205mediummulti select
Read the full Management and Operations explanation →

A company is using Amazon RDS for PostgreSQL with Multi-AZ deployment. The database administrator needs to perform a minor version upgrade with minimal downtime. Which TWO actions should the administrator take? (Choose TWO.)

Question 206hardmulti select
Read the full Management and Operations explanation →

A company is using Amazon DynamoDB with on-demand capacity mode. The application experiences occasional throttling during traffic spikes. The database administrator wants to implement a solution to reduce throttling. Which THREE actions should the administrator take? (Choose THREE.)

Question 207mediummulti select
Read the full Management and Operations explanation →

A company is using Amazon Redshift for data warehousing. The database administrator needs to optimize query performance. Which TWO actions should the administrator take? (Choose TWO.)

Question 208hardmultiple choice
Read the full Management and Operations explanation →

Refer to the exhibit. A database administrator runs the AWS CLI command to check the status of an Amazon RDS MySQL DB instance. Based on the output, what action is required to apply the pending modifications?

Network Topology
db-instance-identifier mydbquery 'DBInstances[0].{Engine:EngineRefer to the exhibit."Engine": "mysql","EngineVersion": "5.7.22","DBInstanceStatus": "available","PendingModifiedValues": {"MasterUserPassword": "****","BackupRetentionPeriod": 7,"PreferredBackupWindow": "03:00-04:00"},"BackupRetentionPeriod": 1,"PreferredBackupWindow": "05:00-06:00","DBParameterGroups": {"ParameterApplyStatus": "pending-reboot"
Question 209mediummultiple choice
Read the full Management and Operations explanation →

Refer to the exhibit. A database administrator is writing an IAM policy to manage Amazon RDS snapshots. The policy allows actions on all RDS resources but denies deletion of any DB instance with the prefix 'production-'. A developer attempts to delete a snapshot named 'production-snapshot-2020'. Will this action be allowed?

Exhibit

Refer to the exhibit.

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": [
                "rds:DescribeDBInstances",
                "rds:CreateDBSnapshot",
                "rds:DeleteDBSnapshot",
                "rds:RestoreDBInstanceFromDBSnapshot"
            ],
            "Resource": "*"
        },
        {
            "Effect": "Deny",
            "Action": "rds:DeleteDBInstance",
            "Resource": "arn:aws:rds:us-east-1:123456789012:db:production-*"
        }
    ]
}
Question 210easymultiple choice
Read the full Management and Operations explanation →

Refer to the exhibit. A database administrator runs the AWS CLI command to retrieve CloudWatch metrics for an Amazon RDS DB instance. The output shows a spike in WriteLatency at 10:05 UTC. What is the most likely cause of this spike?

Network Topology
namespace AWS/RDSmetric-name WriteLatencydimensions Name=DBInstanceIdentifierstart-time 2023-01-01T00:00:00Zend-time 2023-01-02T00:00:00Zperiod 300statistics Averageoutput jsonRefer to the exhibit."Datapoints": ["Timestamp": "2023-01-01T10:00:00Z","Average": 0.002},"Timestamp": "2023-01-01T10:05:00Z","Average": 0.025"Timestamp": "2023-01-01T10:10:00Z","Average": 0.001...
Question 211easymultiple choice
Read the full Management and Operations explanation →

A developer accidentally deleted a production RDS for PostgreSQL DB instance. The company has automated backups enabled with a retention period of 7 days. What is the fastest way to restore the database to the state just before the deletion?

Question 212mediummultiple choice
Read the full Management and Operations explanation →

A company runs an Amazon RDS for MySQL Multi-AZ DB instance. The application experiences intermittent read latency spikes. The DB instance type is db.r5.large with 500 GB of General Purpose SSD (gp2) storage. The spike occurs during peak hours when read activity is high. Which action would most effectively reduce read latency?

Question 213hardmultiple choice
Read the full Management and Operations explanation →

Refer to the exhibit. An Amazon RDS for Oracle instance is experiencing ORA-00257 errors. The DBA has already increased the archive log retention setting. What is the most efficient next step to resolve the issue without manual intervention?

Exhibit

Refer to the exhibit.

-- The following error log was retrieved from Amazon RDS for Oracle:

ORA-00257: archiver error. Connect internal only, until freed.

-- The DBA checks archive log usage:

SELECT * FROM V$FLASH_RECOVERY_AREA_USAGE;
Question 214easymultiple choice
Read the full Management and Operations explanation →

A company is using Amazon DynamoDB with on-demand capacity. The application experiences increased latency during peak hours. The DynamoDB table receives about 5,000 writes per second and 10,000 reads per second. The read latency is high, but write latency is acceptable. What should the company do to reduce read latency?

Question 215mediummultiple choice
Read the full Management and Operations explanation →

A company manages multiple RDS for PostgreSQL instances in different AWS accounts. The security team requires that all DB instances have automated backups enabled with a retention period of at least 14 days. How can the company enforce this policy across all accounts?

Question 216hardmultiple choice
Read the full Management and Operations explanation →

Refer to the exhibit. An application on an EC2 instance is trying to read an object from the S3 bucket 'data-lake-prod'. The instance is in a VPC with an IP address of 10.0.1.5. The application receives an Access Denied error. What is the cause?

Exhibit

Refer to the exhibit.

-- IAM Policy attached to a role used by an EC2 instance:

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": "s3:GetObject",
      "Resource": "arn:aws:s3:::data-lake-prod/*"
    },
    {
      "Effect": "Allow",
      "Action": "s3:PutObject",
      "Resource": "arn:aws:s3:::data-lake-prod/*"
    },
    {
      "Effect": "Deny",
      "Action": "s3:*",
      "Resource": "*",
      "Condition": {
        "StringEquals": {
          "aws:SourceIp": "10.0.0.0/8"
        }
      }
    }
  ]
}
Question 217easymultiple choice
Read the full NAT/PAT explanation →

A company is running an Amazon Aurora MySQL-compatible edition DB cluster. The application reports that a recent schema change caused a significant increase in the number of deadlocks. Which parameter should the DBA check and possibly adjust to reduce deadlocks?

Question 218mediummultiple choice
Read the full Management and Operations explanation →

A company uses Amazon ElastiCache for Redis to cache frequently accessed data. The cache cluster experiences high CPU utilization during peak hours. The cluster has a single node of type cache.r5.large. What is the most cost-effective way to reduce CPU utilization while maintaining performance?

Question 219hardmultiple choice
Read the full Management and Operations explanation →

A company's RDS for SQL Server instance has been running for 3 years. The DBA notices that the DB instance's allocated storage (500 GB) is 80% full. The application is write-heavy. The DBA needs to increase storage without downtime. What is the most efficient way to achieve this?

Question 220mediummulti select
Read the full Management and Operations explanation →

A company is using Amazon RDS for MySQL with Multi-AZ deployment. The DBA receives an alert that the standby replica is lagging behind the primary. Which TWO actions should the DBA take to investigate the issue? (Choose TWO.)

Question 221hardmulti select
Read the full Management and Operations explanation →

A company uses Amazon DynamoDB with provisioned capacity for a critical application. During a traffic spike, the table experiences throttling on write requests. The DBA needs to resolve the issue quickly. Which THREE actions should the DBA take? (Choose THREE.)

Question 222easymulti select
Read the full Management and Operations explanation →

A company is planning to migrate its on-premises Oracle database to Amazon RDS for Oracle. The database uses Oracle Data Guard for disaster recovery. Which TWO AWS services can be used to assess the database and plan the migration? (Choose TWO.)

Question 223easymultiple choice
Read the full Management and Operations explanation →

Refer to the exhibit. A DBA is checking the backup configuration of an RDS MySQL instance. The current time is 2023-03-15T06:00:00Z. What is the most recent point to which the database can be restored?

Exhibit

Refer to the exhibit.

-- AWS CLI command output for describe-db-instances:

{
  "DBInstances": [
    {
      "DBInstanceIdentifier": "prod-db",
      "Engine": "mysql",
      "DBInstanceStatus": "available",
      "StorageEncrypted": false,
      "BackupRetentionPeriod": 7,
      "PreferredBackupWindow": "05:00-06:00",
      "LatestRestorableTime": "2023-03-15T04:30:00Z"
    }
  ]
}
Question 224mediummultiple choice
Read the full Management and Operations explanation →

Refer to the exhibit. A DBA deploys this CloudFormation stack. After creation, the DBA needs to enable deletion protection for the DB instance. Which modification to the template would accomplish this?

Exhibit

Refer to the exhibit.

-- CloudFormation template snippet:

Resources:
  MyDBInstance:
    Type: AWS::RDS::DBInstance
    Properties:
      DBInstanceClass: db.r5.large
      Engine: MySQL
      MultiAZ: true
      DBName: mydb
      MasterUsername: admin
      MasterUserPassword: mypassword
      DBSubnetGroupName: !Ref MyDBSubnetGroup
      VPCSecurityGroups:
        - !Ref MySecurityGroup
      StorageType: gp2
      AllocatedStorage: 100
Question 225hardmultiple choice
Read the full Management and Operations explanation →

Refer to the exhibit. An RDS for PostgreSQL instance shows frequent checkpoints every 10 seconds. What is the most likely cause?

Exhibit

Refer to the exhibit.

-- RDS for PostgreSQL log excerpt:

2023-04-01 10:15:00 UTC LOG:  checkpoint starting: time
2023-04-01 10:15:00 UTC LOG:  checkpoint complete: wrote 50000 buffers (5.0%); 0 transaction log file(s) added, 0 removed; 10.2 seconds
2023-04-01 10:15:10 UTC LOG:  checkpoint starting: time
2023-04-01 10:15:10 UTC LOG:  checkpoint complete: wrote 52000 buffers (5.2%); 0 transaction log file(s) added, 0 removed; 10.5 seconds
Question 226easymultiple choice
Read the full Management and Operations explanation →

A database administrator is troubleshooting a sudden increase in read latency on an Amazon RDS for PostgreSQL instance. The instance has 200 GB of General Purpose SSD (gp2) storage with 600 provisioned IOPS. The administrator notices that the average queue depth is consistently above 4. Which action is the MOST effective way to reduce read latency?

Question 227mediummultiple choice
Read the full Management and Operations explanation →

A company runs an Amazon Aurora MySQL database cluster with one writer and one reader instance. The application experiences intermittent connection timeouts during peak traffic. The DB cluster parameter group has 'connect_timeout' set to 5 seconds. What should a database specialist recommend to reduce connection timeouts?

Question 228hardmultiple choice
Read the full Management and Operations explanation →

A data warehouse team is migrating from Amazon Redshift to Amazon Redshift RA3 nodes. The current cluster uses 10 DC2.large nodes. The new cluster will use 4 RA3.xlarge nodes. After the migration, the team notices that query performance is significantly slower. Which factor is the MOST likely cause of the performance degradation?

Question 229easymultiple choice
Read the full Management and Operations explanation →

A developer accidentally deleted a critical table from an Amazon RDS for MySQL DB instance. Automated backups are enabled with a retention period of 7 days. The deletion occurred 3 hours ago. Which action can restore the table with minimal data loss?

Question 230mediummultiple choice
Read the full Management and Operations explanation →

A company runs a critical Amazon DynamoDB table with on-demand capacity. The table experiences throttling errors (ProvisionedThroughputExceededException) during peak hours. The table has a global secondary index (GSI) with a different partition key. What is the MOST likely cause of the throttling?

Question 231hardmultiple choice
Read the full Management and Operations explanation →

A company uses Amazon ElastiCache for Redis as a caching layer for a database. The cache cluster has one primary and one replica node. During a maintenance event, the primary node fails and the replica is promoted. After promotion, the application experiences increased latency. What should a database specialist do to reduce the impact of future failovers?

Question 232easymultiple choice
Read the full Management and Operations explanation →

An Amazon RDS for SQL Server instance is running out of storage space. The instance uses 500 GB of Magnetic storage. The database specialist needs to increase storage to 1 TB with minimal downtime. Which solution meets these requirements?

Question 233mediummultiple choice
Read the full Management and Operations explanation →

A company is using Amazon Neptune to run graph queries. The cluster has one writer and two reader instances. After a major version upgrade, the query performance degrades for complex traversal queries. The database specialist suspects that the query optimizer is not using indexes effectively. Which action should the specialist take to identify the issue?

Question 234hardmultiple choice
Read the full Management and Operations explanation →

A company is migrating an on-premises Oracle database to Amazon RDS for Oracle. The database is 2 TB in size and has a high transaction rate. The migration must have minimal downtime. Which migration strategy should a database specialist recommend?

Question 235easymulti select
Read the full Management and Operations explanation →

Which TWO of the following are valid methods to secure data at rest for an Amazon RDS for MySQL DB instance?

Question 236mediummulti select
Read the full Management and Operations explanation →

Which THREE of the following are best practices for managing Amazon DynamoDB tables with provisioned throughput?

Question 237hardmulti select
Read the full Management and Operations explanation →

Which TWO of the following are valid actions to take when an Amazon Redshift query is taking longer than expected due to disk-based operations?

Question 238mediummultiple choice
Read the full Management and Operations explanation →

A company's production RDS for PostgreSQL instance experienced a failover to the standby replica. After the failover, the application team reports that writes are failing with 'ReadOnlyException: Connection is read-only'. The DB instance status in the RDS console shows 'available'. Which action should the database administrator take to resolve the issue?

Question 239easymultiple choice
Read the full Management and Operations explanation →

A database administrator notices that Amazon RDS for MySQL is experiencing high CPU utilization during peak hours. The application is read-heavy with many SELECT queries. Which action is most cost-effective to improve performance?

Question 240hardmultiple choice
Read the full Management and Operations explanation →

A company is using Amazon DynamoDB with Auto Scaling enabled. During a flash sale, write traffic spikes and the application experiences ProvisionedThroughputExceededException errors. The DynamoDB table has provisioned write capacity of 1000 WCU and Auto Scaling is set to scale between 1000 and 10000 WCU. What is the most likely cause of the throttling?

Question 241mediummultiple choice
Read the full Management and Operations explanation →

A database administrator is troubleshooting a backup failure for an Amazon RDS for SQL Server DB instance. The error message states 'Insufficient storage capacity for backup. Free storage space is 0 GB.' The DB instance has 200 GB allocated storage. What is the most likely cause?

Question 242easymultiple choice
Read the full Management and Operations explanation →

A company has an Amazon Aurora MySQL DB cluster with a single writer and two readers. The writer instance fails, and the failover mechanism promotes one of the readers to writer. The application, which uses a custom connection pool, continues to experience errors for several minutes. What should the database administrator do to minimize downtime during future failovers?

Question 243hardmultiple choice
Read the full NAT/PAT explanation →

A development team is using Amazon DynamoDB with on-demand capacity mode for a new application. During initial testing, they notice that write requests are occasionally throttled during traffic bursts. They have enabled DynamoDB Accelerator (DAX) for read-heavy operations. What is the best recommendation to eliminate write throttling?

Question 244mediummultiple choice
Read the full Management and Operations explanation →

A company's Amazon RDS for Oracle instance is running out of storage space. The database administrator wants to add storage without downtime. Which action should be taken?

Question 245easymultiple choice
Read the full Management and Operations explanation →

A database administrator needs to audit all SQL queries executed on an Amazon RDS for PostgreSQL instance, including SELECT statements. What is the most efficient way to achieve this?

Question 246hardmultiple choice
Read the full Management and Operations explanation →

A company is using Amazon DynamoDB with provisioned capacity and Auto Scaling. They notice that during a marketing campaign, write traffic exceeded the provisioned WCU and caused throttling. Auto Scaling increased the WCU, but the throttling persisted for several minutes. Which additional measure can prevent throttling during such predictable spikes?

Question 247mediummulti select
Read the full Management and Operations explanation →

A company is running an Amazon RDS for MySQL instance with Multi-AZ. The primary instance in us-east-1a fails, and the standby in us-east-1b is promoted. The application cannot connect after failover. Which TWO steps should the database administrator take to restore connectivity?

Question 248hardmulti select
Read the full Management and Operations explanation →

A company is migrating an on-premises Oracle database to Amazon RDS for Oracle. The database is 2 TB in size and has a tight migration window of 8 hours. Which THREE steps should be taken to minimize downtime during the migration?

Question 249mediummulti select
Read the full NAT/PAT explanation →

A company uses Amazon DynamoDB for a gaming application. During a new game launch, the application experiences high latency and throttling on a table with a partition key of 'user_id' and a sort key of 'timestamp'. The access pattern is to query recent items for a given user. Which TWO design changes can improve performance?

Question 250easymultiple choice
Read the full Management and Operations explanation →

A company is running an Amazon RDS for MySQL DB instance. The database performance has degraded over time, and the company suspects that slow queries are the cause. Which AWS service should the company use to identify the slow queries and analyze the database performance?

Question 251mediummultiple choice
Read the full Management and Operations explanation →

A company is migrating its on-premises Oracle database to Amazon RDS for Oracle. The database is 2 TB in size and has a 24-hour maintenance window. The company needs to minimize downtime during the migration. Which AWS service should be used to perform the migration with minimal downtime?

Question 252hardmultiple choice
Read the full NAT/PAT explanation →

A company has a production Amazon RDS for PostgreSQL Multi-AZ DB instance. The company's security team requires that all database connections use IAM database authentication. The company also needs to ensure that connections from a specific application server are allowed only if the server has a valid IAM role. Which combination of steps should the database administrator take to meet these requirements?

Question 253easymultiple choice
Read the full Management and Operations explanation →

A company is using Amazon DynamoDB for a web application. The company notices that read requests to a particular table are throttled during peak hours. The table has a provisioned read capacity of 1000 read capacity units (RCUs). The read requests are mostly eventually consistent reads. What should the company do to reduce throttling without changing the application code?

Question 254mediummultiple choice
Read the full Management and Operations explanation →

A company is running an Amazon RDS for SQL Server DB instance. The company needs to capture changes to a specific table and replicate them to an Amazon S3 bucket in near real time. Which AWS service should be used to achieve this?

Question 255hardmultiple choice
Read the full Management and Operations explanation →

A company runs a critical application on an Amazon RDS for MySQL DB instance. The company requires that the database be available with minimal downtime during a disaster recovery scenario. The current RDS instance is in us-east-1. The company wants to have a standby database in us-west-2 with automatic failover. What should the company do to meet this requirement?

Question 256easymultiple choice
Read the full Management and Operations explanation →

A company is using Amazon DynamoDB with on-demand capacity mode. The company notices that during a flash sale, the write requests are throttled. What is the most likely cause of the throttling?

Question 257mediummultiple choice
Read the full Management and Operations explanation →

A company is using Amazon RDS for PostgreSQL with read replicas to offload read traffic. The company wants to ensure that the read replicas are always in sync with the primary instance. Which metric should the company monitor to detect replication lag?

Question 258hardmultiple choice
Read the full Management and Operations explanation →

A company is deploying an Amazon Aurora MySQL database. The company requires that the database withstand the loss of two copies of data without impacting write availability. Which configuration should the company use?

Question 259mediummulti select
Read the full Management and Operations explanation →

A company is using Amazon DynamoDB for a gaming application. The application stores player scores in a table with a partition key of player_id and a sort key of timestamp. The company wants to query the top 10 scores for a given player efficiently. Which TWO steps should the company take to optimize this query?

Question 260mediummulti select
Read the full Management and Operations explanation →

A company is migrating a large on-premises Oracle database to Amazon RDS for Oracle. The database is 5 TB in size, and the migration must be completed within a week. The company has a dedicated 10 Gbps AWS Direct Connect connection. Which TWO AWS services should the company use to minimize downtime during the migration?

Question 261hardmulti select
Read the full Management and Operations explanation →

A company is running an Amazon RDS for MySQL Multi-AZ DB instance. The company wants to implement a backup strategy that meets a recovery point objective (RPO) of 5 minutes and a recovery time objective (RTO) of 1 hour. Which THREE steps should the company take to meet these objectives?

Question 262mediummultiple choice
Read the full Management and Operations explanation →

A company is running an Amazon RDS for MySQL Multi-AZ DB instance. They notice increased latency during peak hours. The DB instance type is db.r5.large, and the storage is General Purpose SSD (gp2) with 500 GB. The application is read-heavy with frequent SELECT queries. Which action would most likely resolve the latency issue without changing the DB instance class?

Question 263hardmultiple choice
Read the full Management and Operations explanation →

An administrator is troubleshooting a permissions issue. A user with the IAM policy shown is unable to share an automated system snapshot with another AWS account. Which action should the administrator take to resolve this issue?

Exhibit

Refer to the exhibit.

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": [
        "rds:CreateDBSnapshot",
        "rds:DeleteDBSnapshot",
        "rds:DescribeDBSnapshots",
        "rds:ModifyDBSnapshotAttribute",
        "rds:CopyDBSnapshot"
      ],
      "Resource": "*"
    }
  ]
}
Question 264easymultiple choice
Read the full Management and Operations explanation →

A database specialist is configuring an Amazon RDS for PostgreSQL instance with automated backups enabled. The backup retention period is set to 7 days. The instance experiences a failure and becomes unavailable. What is the maximum amount of time the specialist has to recover the database to the most recent possible point in time?

Question 265mediummulti select
Read the full Management and Operations explanation →

A company is using Amazon DynamoDB for a high-traffic web application. The table has on-demand capacity mode. During a marketing event, the application experiences throttling. Which TWO actions should the database specialist take to prevent throttling in future events?

Question 266hardmulti select
Read the full Management and Operations explanation →

A company is migrating an on-premises Oracle database to Amazon RDS for Oracle. The database is 2 TB in size and has a 24/7 uptime requirement. The migration must have minimal downtime and support ongoing replication. Which THREE services or features should the specialist use to accomplish this?

Question 267hardmultiple choice
Read the full Management and Operations explanation →

A database specialist runs the CLI command shown. The output indicates the instance is Multi-AZ and available. The application, however, is experiencing intermittent connection timeouts to the database endpoint. What is the most likely cause?

Network Topology
$ aws rds describe-db-instancesdb-instance-identifier mydbquery "DBInstances[0].[DBInstanceClassRefer to the exhibit."db.r5.xlarge",true,"available","mysql","8.0.28"
Question 268easymultiple choice
Read the full Management and Operations explanation →

A company is using Amazon DynamoDB with auto scaling enabled. The table's read capacity is set to a minimum of 100 and maximum of 1000 read capacity units (RCUs). The actual consumed read capacity is consistently at 200 RCUs. What should the database specialist do to optimize costs without impacting performance?

Question 269mediummultiple choice
Read the full Management and Operations explanation →

A company is running an Amazon Redshift cluster with a single node. They need to improve query performance for large analytical workloads. Which action would provide the most immediate performance improvement?

Question 270easymulti select
Read the full Management and Operations explanation →

A company is using Amazon ElastiCache for Redis to cache database query results. The cache cluster is a single node. The application experiences increased latency when the cache misses. Which TWO actions can improve the cache hit ratio?

Question 271hardmultiple choice
Read the full Management and Operations explanation →

A database specialist observes the CloudWatch metric for a production RDS for MySQL instance. The max_connections parameter is set to 150. The Sum of DatabaseConnections over 1-minute periods is shown. The application reports intermittent connection failures. What is the most likely cause?

Network Topology
$ aws cloudwatch get-metric-statisticsnamespace AWS/RDSmetric-name DatabaseConnectionsdimensions Name=DBInstanceIdentifierstart-time 2024-01-01T00:00:00Zend-time 2024-01-01T01:00:00Zperiod 60statistics SumRefer to the exhibit."Label": "DatabaseConnections","Datapoints": [{"Timestamp": "2024-01-01T00:01:00Z", "Sum": 150.0},{"Timestamp": "2024-01-01T00:02:00Z", "Sum": 200.0},{"Timestamp": "2024-01-01T00:03:00Z", "Sum": 180.0},...{"Timestamp": "2024-01-01T00:59:00Z", "Sum": 190.0}
Question 272mediummultiple choice
Read the full Management and Operations explanation →

A company is using Amazon RDS for SQL Server with Always On Availability Groups. The primary DB instance is in us-east-1, and the secondary is in us-west-2. The application writes to the primary and reads from the secondary. The secondary instance becomes unreachable due to a network issue. What happens to the primary instance?

Question 273hardmulti select
Read the full Management and Operations explanation →

A company is migrating a 5 TB MySQL database to Amazon Aurora MySQL. The migration must have minimal downtime and support ongoing replication. The source database is in a corporate data center with a 500 Mbps internet connection. Which THREE steps should the database specialist take?

Question 274easymultiple choice
Read the full Management and Operations explanation →

A company is using Amazon DynamoDB with auto scaling enabled. The table's write capacity is set to a minimum of 50 and maximum of 500 write capacity units (WCUs). The actual consumed write capacity is consistently at 100 WCUs. What should the database specialist do to optimize costs without impacting performance?

Question 275mediummultiple choice
Read the full Management and Operations explanation →

An IAM user has the policy shown. The user is trying to restore a DB instance from a manual snapshot using the AWS CLI. The restore fails with an access denied error. What is the most likely reason?

Exhibit

Refer to the exhibit.

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": "rds:RestoreDBInstanceFromDBSnapshot",
      "Resource": "arn:aws:rds:us-east-1:123456789012:snapshot:*"
    },
    {
      "Effect": "Allow",
      "Action": "rds:CreateDBInstance",
      "Resource": "arn:aws:rds:us-east-1:123456789012:db:*"
    }
  ]
}
Question 276hardmultiple choice
Read the full Management and Operations explanation →

A company is using Amazon DynamoDB with auto scaling enabled. The table's read capacity is set to a minimum of 100 and maximum of 1000 read capacity units (RCUs). The actual consumed read capacity is consistently at 200 RCUs. What should the database specialist do to optimize costs without impacting performance?

Question 277easymultiple choice
Read the full Management and Operations explanation →

A company's RDS for MySQL instance is experiencing high CPU utilization. Which AWS service should be used to set up automated actions to scale the instance vertically?

Question 278mediummultiple choice
Read the full Management and Operations explanation →

A database engineer is troubleshooting an Amazon Aurora MySQL DB cluster that is experiencing frequent failovers. The failovers are occurring during periods of low write activity. The engineer notices that the primary instance's writer endpoint is being used for read traffic from a legacy application. What is the most likely cause of the failovers?

Question 279hardmulti select
Read the full NAT/PAT explanation →

A company runs a production Amazon RDS for PostgreSQL instance with Multi-AZ deployment. The DB instance has a large number of connections from application servers. The operations team wants to monitor the number of database connections and receive an alert when it exceeds 80% of the maximum connections. Which combination of steps should be taken to set up this monitoring? (Choose two.)

Question 280mediummultiple choice
Read the full NAT/PAT explanation →

A company uses Amazon DynamoDB for a gaming application. During a new game launch, the table experiences throttling on write requests. The table has a provisioned capacity of 10,000 WCU and 5,000 RCU. The write traffic pattern shows spikes up to 15,000 WCU for 5 minutes. Which action would resolve the throttling with minimal cost impact?

Question 281hardmultiple choice
Read the full Management and Operations explanation →

A company is migrating an on-premises Oracle database to Amazon RDS for Oracle. The database is 500 GB in size and has a 24/7 uptime requirement. The migration window is limited to 2 hours. Which strategy should be used to minimize downtime?

Question 282easymultiple choice
Read the full Management and Operations explanation →

A database administrator needs to track changes to an Amazon RDS DB instance's configuration, such as modifications to the DB instance class or security group. Which AWS service should be used?

Question 283mediummultiple choice
Read the full Management and Operations explanation →

A company is using Amazon DynamoDB with on-demand capacity. The operations team notices that the number of throttled write requests has increased. Which metric should be monitored to determine if the table's write capacity is being exceeded?

Question 284hardmultiple choice
Read the full Management and Operations explanation →

A company runs an Amazon Aurora MySQL database. The database experiences a sudden spike in connections and then becomes unresponsive. The DB instance has a db.r5.large class with 8 GB memory. The maximum connections parameter is set to the default. Which is the most likely cause of the unresponsiveness?

Question 285easymultiple choice
Read the full NAT/PAT explanation →

A company is running an Amazon RDS for SQL Server instance and wants to automate the patching of the database engine. Which AWS service should be used?

Question 286mediummultiple choice
Read the full Management and Operations explanation →

Refer to the exhibit. A database engineer runs the query above to troubleshoot an application error. The query returns no results even though the database is generating errors. What is the most likely reason?

Exhibit

Given the following CloudWatch Logs Insights query for an Amazon Aurora MySQL database:

fields @timestamp, @message
| filter @message like /(?i)(error|fatal|exception)/
| sort @timestamp desc
| limit 20
Question 287hardmulti select
Read the full Management and Operations explanation →

Refer to the exhibit. A database engineer is assigned this IAM policy. Which of the following actions can the engineer perform? (Choose two.)

Exhibit

Given the following IAM policy:

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": [
                "rds:CreateDBSnapshot",
                "rds:DescribeDBSnapshots"
            ],
            "Resource": "*"
        },
        {
            "Effect": "Deny",
            "Action": "rds:DeleteDBSnapshot",
            "Resource": "arn:aws:rds:us-east-1:123456789012:snapshot:prod-*"
        }
    ]
}
Question 288mediummultiple choice
Read the full Management and Operations explanation →

Refer to the exhibit. A database engineer runs the command and receives the above output. The engineer wants to convert the database to Multi-AZ. Which command should be used?

Network Topology
aws rds describe-db-instancesdb-instance-identifier mydbquery 'DBInstances[0].[DBInstanceClassoutput json"db.m5.large",false,"mysql"
Question 289hardmultiple choice
Read the full Management and Operations explanation →

A company runs an e-commerce platform using Amazon DynamoDB as the database. The table has a provisioned capacity of 5000 WCU and 3000 RCU. During a flash sale, the write traffic spikes to 8000 WCU for 10 minutes, causing significant throttling. The operations team notices that the table's WriteCapacityUnits metric shows 5000, but the ConsumedWriteCapacityUnits metric peaks at 4500. The application is experiencing errors and slow response times. The team wants to handle such spikes automatically without manual intervention and without over-provisioning. Which solution should be implemented?

Question 290mediummultiple choice
Read the full Management and Operations explanation →

An e-learning platform uses Amazon Aurora MySQL for its database. The application runs reporting queries that scan large portions of the database, causing high CPU utilization on the primary instance. The primary instance is a db.r5.2xlarge with 64 GB memory. The reporting queries are not time-sensitive but need to return results within 5 minutes. The operations team wants to reduce the impact on the primary instance without increasing costs significantly. Which action should be taken?

Question 291easymultiple choice
Read the full Management and Operations explanation →

A company uses Amazon RDS for PostgreSQL with a single-AZ deployment. The operations team needs to ensure that the database is available during a planned maintenance event that requires a reboot. The maintenance window is set for 30 minutes. The database size is 200 GB and the application can tolerate a few minutes of downtime. Which action should the team take to minimize downtime during the reboot?

Question 292mediummultiple choice
Read the full Management and Operations explanation →

A company is running an Amazon RDS for MySQL Multi-AZ DB instance. The application experiences a brief write disruption during automatic failover. The database workload has low write latency requirements. Which configuration change would minimize application impact during failover?

Question 293hardmultiple choice
Read the full Management and Operations explanation →

A company uses Amazon DynamoDB with On-Demand capacity for a gaming application. During a new game launch, write traffic spikes 10x normal for 30 minutes. Some write requests receive ProvisionedThroughputExceeded exceptions. What is the MOST likely cause and solution?

Question 294easymultiple choice
Read the full NAT/PAT explanation →

A database administrator needs to monitor Amazon RDS for PostgreSQL connections and terminate idle connections that have been open for more than 1 hour. Which combination of steps should be taken?

Question 295mediummultiple choice
Read the full Management and Operations explanation →

A company runs an Amazon Aurora MySQL database with read replicas to handle read traffic. During a recent load test, the primary instance CPU utilization reached 90%, but read replicas remained below 50%. The application uses a custom ORM that connects to a single endpoint. Which change will best distribute read traffic?

Question 296hardmultiple choice
Read the full Management and Operations explanation →

A company is migrating an on-premises Oracle database to Amazon RDS for Oracle using AWS DMS. The source database is 2 TB and has high transaction volume. The migration needs minimal downtime. Currently, full load completes but CDC task fails with 'ORA-1555: snapshot too old' errors. What should the DBA do to resolve this?

Question 297hardmulti select
Read the full Management and Operations explanation →

A company uses Amazon DynamoDB with auto scaling enabled. During a flash sale, write traffic spikes and some requests receive ThrottlingException errors. The table's write capacity auto scaling reaches the maximum configured capacity but still throttles. Which TWO actions should resolve the throttling? (Choose TWO.)

Question 298mediummulti select
Read the full Management and Operations explanation →

A company runs an Amazon RDS for SQL Server database. The database size is 500 GB. The company needs to create a test environment with a copy of the production database that refreshes daily. Which THREE steps should be taken to automate this? (Choose THREE.)

Question 299easymulti select
Read the full Management and Operations explanation →

A company is designing a disaster recovery strategy for an Amazon Aurora MySQL database with a recovery point objective (RPO) of 1 second and a recovery time objective (RTO) of 1 minute. Which TWO solutions meet these requirements? (Choose TWO.)

Question 300hardmultiple choice
Read the full Management and Operations explanation →

A financial services company runs a production Amazon Aurora MySQL database cluster (1 writer, 2 readers) in us-east-1. The database stores critical trading data. The company's disaster recovery policy requires an RPO of 5 seconds and an RTO of 1 minute for a regional failure. The current setup does not include any cross-region replication. The database is 5 TB in size. The operations team needs to implement a solution that meets the DR requirements with minimal cost and operational overhead. Which solution should the team implement?

Question 301mediummultiple choice
Read the full Management and Operations explanation →

A social media company runs a large Amazon DynamoDB table (Users) with 10 TB of data. The table uses on-demand capacity. Recently, the application started experiencing occasional ProvisionedThroughputExceeded exceptions during read-heavy periods. The table's read metrics show that consumed read capacity is consistently below 50% of provisioned capacity. The application uses eventually consistent reads. The table has a global secondary index (GSI) on the 'status' attribute. The GSI's read capacity consumption is often at 100% of its provisioned capacity. What is the most likely cause of the throttling?

Question 302easymultiple choice
Read the full Management and Operations explanation →

A startup is running an Amazon RDS for PostgreSQL database for its web application. The database size is 50 GB. The company wants to implement a backup strategy that allows point-in-time recovery (PITR) to any point within the last 35 days with minimal storage cost. Which backup strategy should be used?

Question 303mediummultiple choice
Read the full Management and Operations explanation →

A company runs an Amazon ElastiCache for Redis cluster as a caching layer for a high-traffic web application. The cluster has one primary and two replica nodes. Recently, the application experienced increased latency. Monitoring shows that the CPU utilization of the primary node is consistently above 80%, while replicas are below 40%. The application uses the cluster mode disabled. The operations team needs to reduce the CPU load on the primary node. Which solution should they implement?

Question 304hardmultiple choice
Read the full NAT/PAT explanation →

A multinational e-commerce company runs an Amazon Aurora MySQL database for its product catalog. The database is 2 TB and has a high write volume. The company needs to create a test environment that contains a subset (10%) of the production data for developers to use. The test environment must be refreshed daily with the latest production data. The operations team wants to minimize cost and ensure that the test environment does not impact production performance. Which solution should they implement?

Question 305mediummulti select
Read the full Management and Operations explanation →

A company is using Amazon RDS for MySQL with Multi-AZ deployment. The primary instance recently experienced an unexpected failover due to a hardware failure. The database is 2 TB in size and has high write throughput. Which TWO actions should the database administrator take to minimize recovery time and ensure data durability?

Question 306hardmulti select
Read the full Management and Operations explanation →

A financial services company runs an Amazon Aurora MySQL database cluster with a single writer and two readers. The cluster handles critical transactional workloads. Over the past month, the database experienced intermittent read replica lag spikes that caused stale reads in application queries. The database administrator needs to identify the root cause and reduce replica lag. Which THREE steps should the administrator take to diagnose and mitigate the issue?

Question 307easymultiple choice
Read the full Management and Operations explanation →

A database administrator is reviewing the configuration of an RDS MySQL instance. Based on the exhibit, which change would MOST improve the database's performance under heavy write workloads without increasing costs significantly?

Network Topology
$ aws rds describe-db-instancesdb-instance-identifier mydbRefer to the exhibit.```"DBInstances": ["DBInstanceIdentifier": "mydb","DBInstanceClass": "db.m5.large","Engine": "mysql","DBInstanceStatus": "available","MasterUsername": "admin","Endpoint": {"Address": "mydb.xxxxxxx.us-east-1.rds.amazonaws.com","Port": 3306},"AllocatedStorage": 500,"StorageType": "gp2","MultiAZ": true,"PubliclyAccessible": false,"BackupRetentionPeriod": 35,"DBParameterGroups": ["DBParameterGroupName": "default.mysql8.0","ParameterApplyStatus": "in-sync"
Question 308hardmultiple choice
Read the full Management and Operations explanation →

A media streaming company uses Amazon DynamoDB as the primary data store for user session information. The table has a partition key of 'user_id' (String) and a sort key of 'session_start_time' (Number). The table is provisioned with 5000 read capacity units (RCU) and 5000 write capacity units (WCU). Over the past week, the company noticed occasional throttling on writes during peak hours, even though the average consumed WCU is only 3500. The DynamoDB table also experiences hot partitions. The development team is considering using DynamoDB Accelerator (DAX) to cache read-heavy workloads, but the issue is with writes. The database administrator needs to resolve the write throttling and hot partitions. Which action should the administrator take?

Question 309mediummultiple choice
Read the full NAT/PAT explanation →

A healthcare company runs a critical application on Amazon RDS for PostgreSQL with a Multi-AZ deployment. The database stores patient records and must comply with HIPAA regulations. Recently, a security audit revealed that the database is using the default port 5432 and that SSL connections are not enforced. The security team requires that all connections to the database use SSL and that the default port be changed to 5439 to reduce the risk of automated attacks. The database administrator needs to implement these changes with minimal downtime. What should the administrator do?

Question 310easymultiple choice
Read the full Management and Operations explanation →

An e-commerce company uses Amazon ElastiCache for Redis as a session store for its web application. The application experiences occasional latency spikes during flash sales. The operations team notices that the Redis cluster's CPU utilization reaches 90% during these events. The current cluster is a single shard with a cache.r5.large node. The team wants to reduce CPU utilization and improve performance. What should the database administrator do?

Question 311mediummultiple choice
Read the full Management and Operations explanation →

A gaming company uses Amazon Aurora PostgreSQL for its leaderboard data. The database has a writer instance and two reader instances. The application frequently queries the leaderboard to display top players. The queries involve sorting and aggregation on a large table with millions of rows. Recently, the queries started timing out during peak hours. The database administrator analyzed the workload and found that the reader instances are underutilized, while the writer instance has high CPU due to write operations. The administrator wants to offload the read-heavy leaderboard queries to the readers without modifying the application code. What should the administrator do?

Question 312hardmultiple choice
Read the full NAT/PAT explanation →

A logistics company operates a fleet tracking system using Amazon DocumentDB (with MongoDB compatibility). The database stores location updates from thousands of vehicles every second. The collection has a compound index on (vehicle_id, timestamp). Recently, the company noticed that write latency has increased, and the primary instance's CPU is consistently above 80%. The storage is gp2, and the instance is a db.r5.large. The operations team suspects that index maintenance is causing high CPU. The database administrator needs to reduce write latency without sacrificing query performance for real-time location queries. What should the administrator do?

Practice tests

Scored 10-question sessions with instant feedback and explanations.

DBS-C01 Practice Test 1 — 10 Questions→DBS-C01 Practice Test 2 — 10 Questions→DBS-C01 Practice Test 3 — 10 Questions→DBS-C01 Practice Test 4 — 10 Questions→DBS-C01 Practice Test 5 — 10 Questions→DBS-C01 Practice Exam 1 — 20 Questions→DBS-C01 Practice Exam 2 — 20 Questions→DBS-C01 Practice Exam 3 — 20 Questions→DBS-C01 Practice Exam 4 — 20 Questions→Free DBS-C01 Practice Test 1 — 30 Questions→Free DBS-C01 Practice Test 2 — 30 Questions→Free DBS-C01 Practice Test 3 — 30 Questions→DBS-C01 Practice Questions 1 — 50 Questions→DBS-C01 Practice Questions 2 — 50 Questions→DBS-C01 Exam Simulation 1 — 100 Questions→

Practice by domain

Each domain maps to a weighted exam section. Focus on the domain where you are weakest.

Workload-Specific Database DesignDeployment and MigrationManagement and OperationsMonitoring and TroubleshootingDatabase Security

Practice by scenario

Filter questions by type — troubleshooting, exhibit, drag-and-drop, PBQ, ACLs, OSPF, and more.

Browse scenarios→

Continue studying

All Management and Operations setsAll Management and Operations questionsDBS-C01 Practice Hub