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 261:

    A significant automotive manufacturer is switching a mission-critical finance application's database to Amazon DynamoDB. According to the company's risk and compliance policy, any update to the database must be documented as a log entry for auditing purposes. Each minute, the system anticipates about 500,000 log entries. Log entries should be kept in Apache Parquet files in batches of at least 100,000 records per file.

    How could a database professional approach these needs while using DynamoDB?

    A. Enable Amazon DynamoDB Streams on the table. Create an AWS Lambda function triggered by the stream. Write the log entries to an Amazon S3 object.
    B. Create a backup plan in AWS Backup to back up the DynamoDB table once a day. Create an AWS Lambda function that restores the backup in another table and compares both tables for changes. Generate the log entries and write them to an Amazon S3 object.
    C. Enable AWS CloudTrail logs on the table. Create an AWS Lambda function that reads the log files once an hour and filters DynamoDB API actions. Write the filtered log files to Amazon S3.
    D. Enable Amazon DynamoDB Streams on the table. Create an AWS Lambda function triggered by the stream. Write the log entries to an Amazon Kinesis Data Firehose delivery stream with buffering and Amazon S3 as the destination.

  • Question 262:

    A company wants to build a new invoicing service for its cloud-native application on AWS. The company has a small development team and wants to focus on service feature development and minimize operations and maintenance as much as possible. The company expects the service to handle billions of requests and millions of new records every day. The service feature requirements, including data access patterns are well- defined. The service has an availability target of 99.99% with a milliseconds latency requirement. The database for the service will be the system of record for invoicing data.

    Which database solution meets these requirements at the LOWEST cost?

    A. Amazon Neptune
    B. Amazon Aurora PostgreSQL Serverless
    C. Amazon RDS for PostgreSQL
    D. Amazon DynamoDB

  • Question 263:

    A company has deployed an e-commerce web application in a new AWS account. An Amazon RDS for MySQL Multi-AZ DB instance is part of this deployment with a database- 1.xxxxxxxxxxxx.us-east- 1.rds.amazonaws.com endpoint listening on port 3306. The company's Database Specialist is able to log in to MySQL and run queries from the bastion host using these details.

    When users try to utilize the application hosted in the AWS account, they are presented with a generic error message. The application servers are logging a "could not connect to server: Connection times out" error message to Amazon CloudWatch Logs.

    What is the cause of this error?

    A. The user name and password the application is using are incorrect.
    B. The security group assigned to the application servers does not have the necessary rules to allow inbound connections from the DB instance.
    C. The security group assigned to the DB instance does not have the necessary rules to allow inbound connections from the application servers.
    D. The user name and password are correct, but the user is not authorized to use the DB instance.

  • Question 264:

    A financial services organization employs an Amazon Aurora PostgreSQL DB cluster to host an application on AWS. No log files detailing database administrator activity were discovered during a recent examination. A database professional must suggest a solution that enables access to the database and maintains activity logs. The solution should be simple to implement and have a negligible effect on performance.

    Which database specialist solution should be recommended?

    A. Enable Aurora Database Activity Streams on the database in synchronous mode. Connect the Amazon Kinesis data stream to Kinesis Data Firehose. Set the Kinesis Data Firehose destination to an Amazon S3 bucket.
    B. Create an AWS CloudTrail trail in the Region where the database runs. Associate the database activity logs with the trail.
    C. Enable Aurora Database Activity Streams on the database in asynchronous mode. Connect the Amazon Kinesis data stream to Kinesis Data Firehose. Set the Firehose destination to an Amazon S3 bucket.
    D. Allow connections to the DB cluster through a bastion host only. Restrict database access to the bastion host and application servers. Push the bastion host logs to Amazon CloudWatch Logs using the CloudWatch Logs agent.

  • Question 265:

    A vehicle insurance company needs to choose a highly available database to track vehicle owners and their insurance details. The persisted data should be immutable in the database, including the complete and sequenced history of changes over time with all the owners and insurance transfer details for a vehicle.

    The data should be easily verifiable for the data lineage of an insurance claim.

    Which approach meets these requirements with MINIMAL effort?

    A. Create a blockchain to store the insurance details. Validate the data using a hash function to verify the data lineage of an insurance claim.
    B. Create an Amazon DynamoDB table to store the insurance details. Validate the data using AWS DMS validation by moving the data to Amazon S3 to verify the data lineage of an insurance claim.
    C. Create an Amazon QLDB ledger to store the insurance details. Validate the data by choosing the ledger name in the digest request to verify the data lineage of an insurance claim.
    D. Create an Amazon Aurora database to store the insurance details. Validate the data using AWS DMS validation by moving the data to Amazon S3 to verify the data lineage of an insurance claim.

  • Question 266:

    Amazon Neptune is being used by a corporation as the graph database for one of its products. During an ETL procedure, the company's data science team produced enormous volumes of temporary data by unintentionally. The Neptune DB cluster extended its storage capacity automatically to handle the added data, but the data science team erased the superfluous data.

    What should a database professional do to prevent incurring extra expenditures for cluster volume space that is not being used?

    A. Take a snapshot of the cluster volume. Restore the snapshot in another cluster with a smaller volume size.
    B. Use the AWS CLI to turn on automatic resizing of the cluster volume.
    C. Export the cluster data into a new Neptune DB cluster.
    D. Add a Neptune read replica to the cluster. Promote this replica as a new primary DB instance. Reset the storage space of the cluster.

  • Question 267:

    A corporation is transitioning from an IBM Informix database to an Amazon RDS for SQL Server Multi-AZ implementation with Always On Availability Groups (AGs). SQL Server Agent tasks are scheduled to execute at 5-minute intervals on the Always On AG listener to synchronize data between the Informix and SQL Server databases. After a successful failover to the backup node with minimum delay, users endure hours of stale data.

    How can a database professional guarantee that consumers view the most current data after a failover?

    A. Set TTL to less than 30 seconds for cached DNS values on the Always On AG listener.
    B. Break up large transactions into multiple smaller transactions that complete in less than 5 minutes.
    C. Set the databases on the secondary node to read-only mode.
    D. Create the SQL Server Agent jobs on the secondary node from a script when the secondary node takes over after a failure.

  • Question 268:

    A global company is creating an application. The application must be highly available. The company requires an RTO and an RPO of less than 5 minutes. The company needs a database that will provide the ability to set up an active-active configuration and near real- time synchronization of data across tables in multiple AWS Regions.

    Which solution will meet these requirements?

    A. Amazon RDS for MariaDB with cross-Region read replicas
    B. Amazon RDS With a Multi-AZ deployment
    C. Amazon DynamoDB global tables
    D. Amazon DynamoDB With a global secondary index (GSI)

  • Question 269:

    A company is deploying a solution in Amazon Aurora by migrating from an on-premises system. The IT department has established an AWS Direct Connect link from the company's data center. The company's Database Specialist has selected the option to require SSL/TLS for connectivity to prevent plaintext data from being set over the network. The migration appears to be working successfully, and the data can be queried from a desktop machine.

    Two Data Analysts have been asked to query and validate the data in the new Aurora DB cluster. Both Analysts are unable to connect to Aurora. Their user names and passwords have been verified as valid and the Database Specialist can connect to the DB cluster using their accounts. The Database Specialist also verified that the security group configuration allows network from all corporate IP addresses.

    What should the Database Specialist do to correct the Data Analysts' inability to connect?

    A. Restart the DB cluster to apply the SSL change.
    B. Instruct the Data Analysts to download the root certificate and use the SSL certificate on the connection string to connect.
    C. Add explicit mappings between the Data Analysts' IP addresses and the instance in the security group assigned to the DB cluster.
    D. Modify the Data Analysts' local client firewall to allow network traffic to AWS.

  • Question 270:

    An ecommerce company is using Amazon DynamoDB as the backend for its order- processing application. The

    steady increase in the number of orders is resulting in increased DynamoDB costs. Order verification and reporting perform many repeated GetItem functions that pull similar datasets, and this read activity is contributing to the increased costs. The company wants to control these costs without significant development efforts.

    How should a Database Specialist address these requirements?

    A. Use AWS DMS to migrate data from DynamoDB to Amazon DocumentDB
    B. Use Amazon DynamoDB Streams and Amazon Kinesis Data Firehose to push the data into Amazon Redshift
    C. Use an Amazon ElastiCache for Redis in front of DynamoDB to boost read performance
    D. Use DynamoDB Accelerator to offload the reads

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.