DBS-C01 Exam Details

  • Exam Code
    :DBS-C01
  • Exam Name
    :AWS Certified Database - Specialty (DBS-C01)
  • Certification
    :Amazon Certifications
  • Vendor
    :Amazon
  • Total Questions
    :321 Q&As
  • Last Updated
    :Jul 12, 2026

Amazon DBS-C01 Online Questions & Answers

  • Question 251:

    A company uses Amazon DynamoDB as the data store for its ecommerce website. The website receives little to no traffic at night, and the majority of the traffic occurs during the day. The traffic growth during peak hours is gradual and predictable on a daily basis, but it can be orders of magnitude higher than during off-peak hours.

    The company initially provisioned capacity based on its average volume during the day without accounting for the variability in traffic patterns. However, the website is experiencing a significant amount of throttling during peak hours. The company wants to reduce the amount of throttling while minimizing costs.

    What should a database specialist do to meet these requirements?

    A. Use reserved capacity. Set it to the capacity levels required for peak daytime throughput.
    B. Use provisioned capacity. Set it to the capacity levels required for peak daytime throughput.
    C. Use provisioned capacity. Create an AWS Application Auto Scaling policy to update capacity based on consumption.
    D. Use on-demand capacity.

  • Question 252:

    A Database Specialist needs to speed up any failover that might occur on an Amazon Aurora PostgreSQL DB cluster. The Aurora DB cluster currently includes the primary instance and three Aurora Replicas. How can the Database Specialist ensure that failovers occur with the least amount of downtime for the application?

    A. Set the TCP keepalive parameters low
    B. Call the AWS CLI failover-db-cluster command
    C. Enable Enhanced Monitoring on the DB cluster
    D. Start a database activity stream on the DB cluster

  • Question 253:

    A company recently migrated its line-of-business (LOB) application to AWS. The application uses an Amazon RDS for SQL Server DB instance as its database engine.

    The company must set up cross-Region disaster recovery for the application. The company needs a solution with the lowest possible RPO and RTO.

    Which solution will meet these requirements?

    A. Create a cross-Region read replica of the DB instance. Promote the read replica at the time of failover.
    B. Set up SQL replication from the DB instance to an Amazon EC2 instance in the disaster recovery Region. Promote the EC2 instance as the primary server.
    C. Use AWS Database Migration Service (AWS KMS) for ongoing replication of the DB instance in the disaster recovery Region.
    D. Take manual snapshots of the DB instance in the primary Region. Copy the snapshots to the disaster recovery Region.

  • Question 254:

    A company is moving its fraud detection application from on premises to the AWS Cloud and is using Amazon Neptune for data storage. The company has set up a 1 Gbps AWS Direct Connect connection to migrate 25 TB of fraud detection data from the on-premises data center to a Neptune DB instance. The company already has an Amazon S3 bucket and an S3 VPC endpoint, and 80% of the company's network bandwidth is available.

    How should the company perform this data load?

    A. Use an AWS SDK with a multipart upload to transfer the data from on premises to the S3 bucket. Use the Copy command for Neptune to move the data in bulk from the S3 bucket to the Neptune DB instance.
    B. Use AWS Database Migration Service (AWS DMS) to transfer the data from on premises to the S3 bucket. Use the Loader command for Neptune to move the data in bulk from the S3 bucket to the Neptune DB instance.
    C. Use AWS DataSync to transfer the data from on premises to the S3 bucket. Use the Loader command for Neptune to move the data in bulk from the S3 bucket to the Neptune DB instance.
    D. Use the AWS CLI to transfer the data from on premises to the S3 bucket. Use the Copy command for Neptune to move the data in bulk from the S3 bucket to the Neptune DB instance.

  • Question 255:

    On AWS, a business is developing a web application. The application needs that the database supports concurrent read and write activities in several AWS Regions. Additionally, the database must communicate data changes across Regions as they occur. The application must be highly available and have a latency of less than a few hundred milliseconds.

    Which solution satisfies these criteria?

    A. Amazon DynamoDB global tables
    B. Amazon DynamoDB streams with AWS Lambda to replicate the data
    C. An Amazon ElastiCache for Redis cluster with cluster mode enabled and multiple shards
    D. An Amazon Aurora global database

  • Question 256:

    A company has two separate AWS accounts: one for the business unit and another for corporate analytics. The company wants to replicate the business unit data stored in Amazon RDS for MySQL in us-east-1 to its corporate analytics Amazon Redshift environment in us-west-1. The company wants to use AWS DMS with Amazon RDS as the source endpoint and Amazon Redshift as the target endpoint.

    Which action will allow AVS DMS to perform the replication?

    A. Configure the AWS DMS replication instance in the same account and Region as Amazon Redshift.
    B. Configure the AWS DMS replication instance in the same account as Amazon Redshift and in the same Region as Amazon RDS.
    C. Configure the AWS DMS replication instance in its own account and in the same Region as Amazon Redshift.
    D. Configure the AWS DMS replication instance in the same account and Region as Amazon RDS.

  • Question 257:

    A company has deployed an application that uses an Amazon RDS for MySQL DB cluster. The DB cluster uses three read replicas. The primary DB instance is an 8XL-sized instance, and the read replicas are each XL-sized instances.

    Users report that database queries are returning stale data. The replication lag indicates that the replicas are 5 minutes behind the primary DB instance. Status queries on the replicas show that the SQL_THREAD is 10 binlogs behind the IO_THREAD and that the IO_THREAD is 1 binlog behind the primary.

    Which changes will reduce the lag? (Choose two.)

    A. Deploy two additional read replicas matching the existing replica DB instance size.
    B. Migrate the primary DB instance to an Amazon Aurora MySQL DB cluster and add three Aurora Replicas.
    C. Move the read replicas to the same Availability Zone as the primary DB instance.
    D. Increase the instance size of the primary DB instance within the same instance class.
    E. Increase the instance size of the read replicas to the same size and class as the primary DB instance.

  • Question 258:

    A Database Specialist is designing a new database infrastructure for a ride hailing application. The application data includes a ride tracking system that stores GPS coordinates for all rides. Real-time statistics and metadata lookups must be performed with high throughput and microsecond latency. The database should be fault tolerant with minimal operational overhead and development effort.

    Which solution meets these requirements in the MOST efficient way?

    A. Use Amazon RDS for MySQL as the database and use Amazon ElastiCache
    B. Use Amazon DynamoDB as the database and use DynamoDB Accelerator
    C. Use Amazon Aurora MySQL as the database and use Aurora's buffer cache
    D. Use Amazon DynamoDB as the database and use Amazon API Gateway

  • Question 259:

    A major organization maintains a number of Amazon DB clusters. Each of these clusters is configured differently to meet certain needs. These configurations may be classified into wider groups based on the team and use case.

    A database administrator wishes to streamline the process of storing and updating these settings. Additionally, the database administrator want to guarantee that changes to certain configuration categories are automatically implemented to all

    instances as necessary.

    Which AWS service or functionality will assist in automating and achieving this goal?

    A. AWS Systems Manager Parameter Store
    B. DB parameter group
    C. AWS Config
    D. AWS Secrets Manager

  • Question 260:

    In North America, a business launched a mobile game that swiftly expanded to 10 million daily active players. The game's backend is hosted on AWS and makes considerable use of a TTL-configured Amazon DynamoDB table.

    When an item is added or changed, its TTL is set to 600 seconds plus the current epoch time. The game logic is reliant on the purging of outdated data in order to compute rewards points properly. At times, items from the table are read that are many hours beyond their TTL expiration.

    How should a database administrator resolve this issue?

    A. Use a client library that supports the TTL functionality for DynamoDB.
    B. Include a query filter expression to ignore items with an expired TTL.
    C. Set the ConsistentRead parameter to true when querying the table.
    D. Create a local secondary index on the TTL attribute.

Tips on How to Prepare for the Exams

Nowadays, the certification exams become more and more important and required by more and more enterprises when applying for a job. But how to prepare for the exam effectively? How to prepare for the exam in a short time with less efforts? How to get a ideal result and how to find the most reliable resources? Here on Vcedump.com, you will find all the answers. Vcedump.com provide not only Amazon exam questions, answers and explanations but also complete assistance on your exam preparation and certification application. If you are confused on your DBS-C01 exam preparations and Amazon certification application, do not hesitate to visit our Vcedump.com to find your solutions here.