1Which database type is most appropriate for structured data that requires joins and ACID transactions?
Database layer considerations and use cases
Easy
A.Graph database
B.Key-value database
C.In-memory cache
D.Relational database
Correct Answer: Relational database
Explanation:
Relational databases support structured tables, joins, and ACID transactions.
Incorrect! Try again.
2Which factor should be considered when selecting a database for an application?
Database layer considerations and use cases
Easy
A.Office network color
B.Application access patterns
C.Developer screen size
D.Source code font
Correct Answer: Application access patterns
Explanation:
Access patterns show how an application reads and writes data, helping determine the most suitable database.
Incorrect! Try again.
3Which database characteristic is most important for an online payment system?
Database layer considerations and use cases
Easy
A.Transaction consistency
B.Image compression
C.Video streaming
D.File archiving
Correct Answer: Transaction consistency
Explanation:
Payment systems require consistent transactions so that financial data remains accurate.
Incorrect! Try again.
4What is Amazon Relational Database Service (Amazon RDS)?
Amazon RDS features and connection management
Easy
A.A virtual private network service
B.A managed object storage service
C.A managed relational database service
D.A source code repository service
Correct Answer: A managed relational database service
Explanation:
Amazon RDS simplifies the setup, operation, and scaling of relational databases on AWS.
Incorrect! Try again.
5Which Amazon RDS feature pools and shares database connections to improve application scalability?
Amazon RDS features and connection management
Easy
A.Amazon Route 53
B.Amazon RDS Proxy
C.AWS Direct Connect
D.Amazon RDS Snapshot
Correct Answer: Amazon RDS Proxy
Explanation:
Amazon RDS Proxy pools and reuses database connections, reducing the connection-management load.
Incorrect! Try again.
6What should an application normally use to connect to an Amazon RDS database instance?
Amazon RDS features and connection management
Easy
A.The snapshot identifier
B.The subnet identifier
C.The backup window
D.The database endpoint
Correct Answer: The database endpoint
Explanation:
The RDS endpoint provides the hostname that applications use to connect to the database.
Incorrect! Try again.
7Which task is generally managed by Amazon RDS?
Amazon RDS features and connection management
Easy
A.Application interface design
B.Client device maintenance
C.Database software patching
D.Business data entry
Correct Answer: Database software patching
Explanation:
Amazon RDS manages common administrative tasks such as software patching and infrastructure maintenance.
Incorrect! Try again.
8What is a primary purpose of Amazon RDS automated backups?
Automated backups and read replicas in RDS
Easy
A.Converting relational data into graph data
B.Restoring a database to a point in time
C.Creating user interfaces for applications
D.Increasing the number of database tables
Correct Answer: Restoring a database to a point in time
Explanation:
Automated backups support point-in-time recovery within the configured retention period.
Incorrect! Try again.
9What is the main purpose of an Amazon RDS read replica?
Automated backups and read replicas in RDS
Easy
A.Scaling read workloads
B.Scaling write workloads
C.Managing network routing
D.Replacing all backups
Correct Answer: Scaling read workloads
Explanation:
Read replicas offload read queries from the primary database and improve read scalability.
Incorrect! Try again.
10How is data typically copied from an Amazon RDS source database to a read replica?
Automated backups and read replicas in RDS
Easy
A.Using DNS zone transfers
B.Using manual file uploads
C.Using browser-based downloads
D.Using asynchronous replication
Correct Answer: Using asynchronous replication
Explanation:
RDS read replicas generally use asynchronous replication, so a small replication delay may occur.
Incorrect! Try again.
11What type of database is Amazon DynamoDB?
Amazon DynamoDB and other purpose-built databases
Easy
A.A traditional relational database
B.A key-value and document database
C.A graph-only database
D.A ledger-only database
Correct Answer: A key-value and document database
Explanation:
Amazon DynamoDB is a fully managed NoSQL database supporting key-value and document data models.
Incorrect! Try again.
12Which key component determines how Amazon DynamoDB distributes data across partitions?
Amazon DynamoDB and other purpose-built databases
Easy
A.Encryption key
B.Foreign key
C.Partition key
D.Backup key
Correct Answer: Partition key
Explanation:
DynamoDB uses the partition key value to determine where an item is stored.
Incorrect! Try again.
13Which AWS database service is designed for highly connected graph data?
Amazon DynamoDB and other purpose-built databases
Easy
A.Amazon Neptune
B.Amazon ElastiCache
C.Amazon Timestream
D.Amazon Redshift
Correct Answer: Amazon Neptune
Explanation:
Amazon Neptune is a purpose-built graph database for relationships and highly connected datasets.
Incorrect! Try again.
14Which AWS service is designed primarily for in-memory caching?
Amazon DynamoDB and other purpose-built databases
Easy
A.Amazon ElastiCache
B.Amazon Neptune
C.Amazon RDS
D.Amazon DocumentDB
Correct Answer: Amazon ElastiCache
Explanation:
Amazon ElastiCache provides managed in-memory caching using engines such as Valkey, Memcached, and Redis OSS.
Incorrect! Try again.
15Which AWS service helps migrate data between databases while minimizing application downtime?
Migrating databases to AWS
Easy
A.AWS CloudFormation
B.AWS Database Migration Service
C.AWS Artifact
D.AWS CodeCommit
Correct Answer: AWS Database Migration Service
Explanation:
AWS Database Migration Service (AWS DMS) supports database migrations with minimal downtime.
Incorrect! Try again.
16Which AWS tool helps convert a source database schema to a different target database engine?
Migrating databases to AWS
Easy
A.AWS Security Hub
B.AWS Systems Manager
C.AWS Schema Conversion Tool
D.AWS Storage Gateway
Correct Answer: AWS Schema Conversion Tool
Explanation:
AWS Schema Conversion Tool helps convert schemas and database code for heterogeneous migrations.
Incorrect! Try again.
17What should an organization do before beginning a database migration to AWS?
Migrating databases to AWS
Easy
A.Disable database monitoring
B.Assess the source database
C.Remove access controls
D.Delete all source backups
Correct Answer: Assess the source database
Explanation:
Assessing the source database helps identify its size, dependencies, compatibility, and migration requirements.
Incorrect! Try again.
18Which practice improves database availability in the AWS Cloud?
Applying Well-Architected principles to the database layer
Easy
A.Using only one storage volume
B.Disabling automated failover
C.Keeping a single database copy
D.Deploying across multiple Availability Zones
Correct Answer: Deploying across multiple Availability Zones
Explanation:
A Multi-AZ design improves availability by providing database resources in separate Availability Zones.
Incorrect! Try again.
19Which security principle grants database users only the permissions they need?
Applying Well-Architected principles to the database layer
Easy
A.Horizontal scaling
B.Least privilege
C.Maximum throughput
D.Open access
Correct Answer: Least privilege
Explanation:
Least privilege reduces security risk by limiting users and applications to required permissions.
Incorrect! Try again.
20Which practice supports cost optimization for the database layer?
Applying Well-Architected principles to the database layer
Easy
A.Disabling usage monitoring
B.Overprovisioning every instance
C.Retaining unused databases
D.Right-sizing database resources
Correct Answer: Right-sizing database resources
Explanation:
Right-sizing matches database capacity to workload needs and helps avoid unnecessary cost.
Incorrect! Try again.
21An application requires complex joins, strong referential integrity, and transactions across several related tables. Which database type is the most appropriate choice?
Database layer considerations and use cases
Medium
A.Graph database
B.Object storage
C.Relational database
D.Key-value database
Correct Answer: Relational database
Explanation:
Relational databases support structured schemas, joins, referential integrity, and ACID transactions across related tables.
Incorrect! Try again.
22A social networking application frequently queries relationships such as friends, followers, and mutual connections. Which database model best fits this workload?
Database layer considerations and use cases
Medium
A.Graph database
B.File-based database
C.Columnar warehouse
D.Relational database
Correct Answer: Graph database
Explanation:
Graph databases are designed to represent entities and relationships, making traversal queries efficient.
Incorrect! Try again.
23An application stores session data using a unique session identifier and needs very fast lookups without complex queries. Which database pattern is most suitable?
Database layer considerations and use cases
Medium
A.Data warehouse
B.Relational database
C.Graph database
D.Key-value database
Correct Answer: Key-value database
Explanation:
Key-value databases provide efficient access when each item is retrieved primarily by a unique key.
Incorrect! Try again.
24A team wants Amazon RDS to apply minor database engine patches during a predictable maintenance window. Which configuration should they use?
Amazon RDS features and connection management
Medium
A.Parameter group family
B.Read replica schedule
C.Backup retention period
D.Preferred maintenance window
Correct Answer: Preferred maintenance window
Explanation:
The preferred maintenance window defines when routine maintenance activities, such as minor upgrades, should occur.
Incorrect! Try again.
25An application should continue connecting to an RDS database after a failover without changing its configured endpoint. Which endpoint should it use?
Amazon RDS features and connection management
Medium
A.The host server address
B.The database engine port
C.The RDS instance endpoint
D.The replica instance endpoint
Correct Answer: The RDS instance endpoint
Explanation:
The RDS endpoint is designed to redirect connections to the active database instance after failover.
Incorrect! Try again.
26A connection pool keeps many idle connections open and causes the database to reach its connection limit. Which change most directly addresses the issue?
Amazon RDS features and connection management
Medium
A.Change the storage class
B.Add a read replica
C.Reduce pool size
D.Increase backup retention
Correct Answer: Reduce pool size
Explanation:
Reducing the connection pool size limits the number of idle and active connections maintained by the application.
Incorrect! Try again.
27An organization needs database credentials to rotate automatically without storing long-lived passwords in application configuration files. Which approach is most appropriate?
Amazon RDS features and connection management
Medium
A.Embed passwords in SQL queries
B.Use AWS Secrets Manager
C.Save passwords in public parameters
D.Store passwords in user data
Correct Answer: Use AWS Secrets Manager
Explanation:
AWS Secrets Manager securely stores credentials and supports automated rotation for supported database services.
Incorrect! Try again.
28A company wants to restore an RDS database to a specific point during the last seven days after accidental data deletion. Which feature should it enable?
Automated backups and read replicas in RDS
Medium
A.Read replicas
B.Automated backups
C.Multi-AZ deployment
D.Manual snapshots only
Correct Answer: Automated backups
Explanation:
Automated backups support point-in-time recovery within the configured backup retention period.
Incorrect! Try again.
29A reporting workload is increasing read traffic on a production RDS database. The reports can tolerate slightly stale data. What is the best solution?
Automated backups and read replicas in RDS
Medium
A.Move the database to object storage
B.Increase the backup window
C.Disable automated backups
D.Create a read replica
Correct Answer: Create a read replica
Explanation:
A read replica asynchronously copies data and can serve read-only workloads, reducing read pressure on the primary instance.
Incorrect! Try again.
30A read replica has increasing replication lag during large reporting queries. Which action is most likely to reduce the impact?
Automated backups and read replicas in RDS
Medium
A.Reduce backup retention
B.Change the primary endpoint
C.Disable encryption
D.Scale the replica instance
Correct Answer: Scale the replica instance
Explanation:
Increasing the replica's compute capacity can help it process replicated changes and queries more quickly.
Incorrect! Try again.
31A database must remain available if the underlying Availability Zone becomes unavailable, with automatic failover for the primary workload. Which RDS option should be selected?
Automated backups and read replicas in RDS
Medium
A.Manual snapshot schedule
B.Single-AZ storage scaling
C.Multi-AZ deployment
D.Read replica deployment
Correct Answer: Multi-AZ deployment
Explanation:
A Multi-AZ deployment maintains a synchronous standby in another Availability Zone and supports automatic failover.
Incorrect! Try again.
32A DynamoDB table is queried by CustomerId and sorted by OrderDate. Which key design best supports this access pattern?
Amazon DynamoDB and other purpose-built databases
Medium
A.Partition key OrderDate and sort key CustomerId
B.Sort key CustomerId only
C.Partition key CustomerId and sort key OrderDate
D.Partition key CustomerId only
Correct Answer: Partition key CustomerId and sort key OrderDate
Explanation:
Using CustomerId as the partition key groups a customer's orders, while OrderDate enables ordered range queries.
Incorrect! Try again.
33A DynamoDB workload has unpredictable traffic and requires automatic capacity adjustment while maintaining low latency. Which feature is most appropriate?
Amazon DynamoDB and other purpose-built databases
Medium
A.On-demand capacity mode
B.Fixed provisioned capacity
C.Manual table backups
D.DynamoDB export only
Correct Answer: On-demand capacity mode
Explanation:
On-demand capacity automatically handles variable request rates without requiring capacity planning or provisioning.
Incorrect! Try again.
34An application needs to retrieve DynamoDB items by email address, but the table's primary key is UserId. What should be created?
Amazon DynamoDB and other purpose-built databases
Medium
A.A new Availability Zone
B.A read-only RDS replica
C.A database snapshot
D.A global secondary index
Correct Answer: A global secondary index
Explanation:
A global secondary index supports queries using attributes other than the table's primary key.
Incorrect! Try again.
35A financial application needs highly durable, scalable storage for immutable event records that are rarely updated. Which purpose-built option is most suitable?
Amazon DynamoDB and other purpose-built databases
Medium
A.Amazon S3
B.Amazon ElastiCache
C.Amazon Neptune
D.Amazon RDS
Correct Answer: Amazon S3
Explanation:
Amazon S3 provides durable, scalable object storage and is well suited to immutable event records and archival data.
Incorrect! Try again.
36A company needs to migrate a running on-premises database to AWS while minimizing downtime. Which AWS service is designed for this requirement?
Migrating databases to AWS
Medium
A.AWS Trusted Advisor
B.AWS Database Migration Service
C.AWS Snowball Edge
D.Amazon CloudFront
Correct Answer: AWS Database Migration Service
Explanation:
AWS DMS can perform ongoing replication from the source database, allowing a cutover with limited downtime.
Incorrect! Try again.
37A migration project moves from one database engine to another and requires schema and code conversion. Which AWS tool should be used with the migration service?
Migrating databases to AWS
Medium
A.Amazon Route 53
B.AWS Schema Conversion Tool
C.AWS Cost Explorer
D.Amazon Inspector
Correct Answer: AWS Schema Conversion Tool
Explanation:
AWS SCT assesses and converts schemas, stored procedures, and other database objects for heterogeneous migrations.
Incorrect! Try again.
38Before migrating a large database, the team wants to identify unsupported features and estimate conversion effort. What should it do first?
Migrating databases to AWS
Medium
A.Increase application timeouts
B.Delete unused source tables
C.Assess source compatibility
D.Disable all source indexes
Correct Answer: Assess source compatibility
Explanation:
Compatibility assessment reveals unsupported features, conversion requirements, and potential migration risks before execution.
Incorrect! Try again.
39A database contains sensitive customer information. Which design best supports the security pillar of the AWS Well-Architected Framework?
Applying Well-Architected principles to the database layer
Medium
A.Encrypt data at rest and in transit
B.Use shared administrator credentials
C.Disable audit logging
D.Expose the database publicly
Correct Answer: Encrypt data at rest and in transit
Explanation:
Encryption protects stored data and network traffic, reducing the risk of unauthorized disclosure.
Incorrect! Try again.
40A database workload varies significantly during the day, and the team wants to control costs without reducing required performance. Which practice aligns best with cost optimization?
Applying Well-Architected principles to the database layer
Medium
A.Right-size resources from metrics
B.Store every dataset in memory
C.Disable performance monitoring
D.Provision maximum capacity permanently
Correct Answer: Right-size resources from metrics
Explanation:
Monitoring actual utilization supports right-sizing, which avoids paying for unused database capacity while preserving performance.
Incorrect! Try again.
41A financial application requires strongly consistent balances, multi-row ACID transactions, complex joins, and auditable point-in-time recovery. Which database architecture best satisfies these requirements?
Database layer considerations and use cases
Hard
A.A graph database with property-based relationship indexing
B.An object store with metadata-based partition queries
C.A globally replicated key-value store with eventual consistency
D.A relational database with synchronous transactions and managed backups
Correct Answer: A relational database with synchronous transactions and managed backups
Explanation:
Relational databases are appropriate when the workload requires ACID transactions, joins, referential integrity, and structured recovery controls.
Incorrect! Try again.
42An order system receives unpredictable traffic spikes. Most requests retrieve an order by customer ID and timestamp, while writes must remain durable and highly available. Which design most directly improves scalability without introducing cross-record joins?
Database layer considerations and use cases
Hard
A.Normalize orders across several relational tables
B.Use a wide-column store with a customer-time partition key
C.Use a graph model with customer vertices and order edges
D.Store each order as a separate object without indexes
Correct Answer: Use a wide-column store with a customer-time partition key
Explanation:
A wide-column database can scale horizontally for predictable access patterns when the partition key distributes traffic and supports the required query directly.
Incorrect! Try again.
43A team plans to select a database solely by comparing benchmarked transactions per second. Which additional evaluation is most important before making the decision?
Database layer considerations and use cases
Hard
A.Compare only the database engine license fees
B.Measure access patterns, consistency needs, recovery objectives, and operational effort
C.Prefer the database with the largest number of supported data types
D.Select the engine with the highest single-node throughput
Database suitability depends on workload shape, consistency, durability, recovery, scaling, and operations, not on an isolated throughput benchmark.
Incorrect! Try again.
44An Amazon RDS database experiences connection exhaustion whenever the application scales out. Query latency is normal, but many connections remain idle. Which change best addresses the root cause?
Amazon RDS features and connection management
Hard
A.Increase the database backup retention period
B.Enable a read replica for every application instance
C.Increase the database storage volume size
D.Place a connection pooler such as RDS Proxy between clients and RDS
Correct Answer: Place a connection pooler such as RDS Proxy between clients and RDS
Explanation:
RDS Proxy pools and multiplexes connections, reducing connection churn and protecting the database from large numbers of idle client connections.
Incorrect! Try again.
45An application must reconnect automatically after an RDS Multi-AZ failover. Which connection strategy is most appropriate?
Amazon RDS features and connection management
Hard
A.Connect directly to the standby instance identifier
B.Use the RDS endpoint and implement retry with backoff
C.Resolve the endpoint once and disable DNS caching controls
D.Cache the current instance IP address permanently
Correct Answer: Use the RDS endpoint and implement retry with backoff
Explanation:
The RDS endpoint is maintained across failover. Clients should reconnect using it and retry transient connection failures with bounded backoff.
Incorrect! Try again.
46A production RDS instance is in a private subnet, while an application runs in another VPC. The application cannot connect even though the RDS security group allows its port. Which missing condition is most likely?
Amazon RDS features and connection management
Hard
A.The RDS instance has automated backups enabled
B.The application uses a Multi-AZ deployment
C.The VPCs lack private routing through peering or Transit Gateway
D.The database parameter group lacks a read-only flag
Correct Answer: The VPCs lack private routing through peering or Transit Gateway
Explanation:
Security groups permit traffic only after network reachability exists. Cross-VPC private access also requires connectivity and route-table configuration.
Incorrect! Try again.
47A database administrator changes an RDS parameter, but the engine behavior does not change immediately. Which explanation is most accurate?
Amazon RDS features and connection management
Hard
A.All RDS parameters apply immediately without restart
B.The parameter may be static and require a pending reboot
C.Parameter changes affect replicas but never the primary
D.RDS applies parameters only after a storage resize
Correct Answer: The parameter may be static and require a pending reboot
Explanation:
RDS parameters can be dynamic or static. Static parameters generally require a reboot before the new value takes effect.
Incorrect! Try again.
48A company needs recovery to any point within the last 21 days after accidental deletes. It also needs to offload reporting queries from the production database. Which combination is correct?
Automated backups and read replicas in RDS
Hard
A.A read replica with no backup retention and a larger volume
B.Multi-AZ with a cross-Region snapshot copied once
C.Automated backups with 21-day retention and a read replica
D.Manual snapshots and Multi-AZ only
Correct Answer: Automated backups with 21-day retention and a read replica
Explanation:
Automated backups support point-in-time recovery within the retention window, while read replicas serve read workloads asynchronously.
Incorrect! Try again.
49A read replica is several minutes behind the primary during a reporting burst. The business requires reports to reflect committed transactions immediately after an order confirmation. What is the best change?
Automated backups and read replicas in RDS
Hard
A.Increase backup retention on the replica
B.Disable automated backups on the primary
C.Route consistency-sensitive reads to the primary
D.Route confirmation reads to the asynchronous replica
Correct Answer: Route consistency-sensitive reads to the primary
Explanation:
RDS read replicas use asynchronous replication, so they can lag. Reads requiring current committed data must use the primary or another synchronous design.
Incorrect! Try again.
50A read replica is promoted after a primary failure. Which operational consequence must the application team account for?
Automated backups and read replicas in RDS
Hard
A.Replication stops and the promoted instance becomes independently writable
B.The promoted replica automatically becomes a Multi-AZ standby
C.All source database parameter settings are discarded
D.The original primary resumes replication without configuration
Correct Answer: Replication stops and the promoted instance becomes independently writable
Explanation:
Promotion breaks the replica relationship and makes the instance an independent primary. Rebuilding replication or redesigning topology may be required.
Incorrect! Try again.
51A team wants a read replica in another Region for disaster recovery. Which issue most directly affects the recovery design?
Automated backups and read replicas in RDS
Hard
A.Read replicas cannot be promoted in any Region
B.Automated backups are permanently disabled on the source
C.Cross-Region replication is asynchronous and may lose recent commits
D.Cross-Region replication is synchronous with zero lag
Correct Answer: Cross-Region replication is asynchronous and may lose recent commits
Explanation:
Cross-Region read-replica replication is asynchronous. The recovery point objective must account for replication lag and possible loss of recent transactions.
Incorrect! Try again.
52An RDS backup window overlaps with a nightly batch job and causes unacceptable I/O contention. Which response best reduces operational impact?
Automated backups and read replicas in RDS
Hard
A.Disable all automated backups permanently
B.Move the backup window outside the batch workload
C.Convert the primary immediately into a read replica
D.Reduce the backup retention period to one hour
Correct Answer: Move the backup window outside the batch workload
Explanation:
Scheduling the backup window during a low-traffic period reduces contention while preserving automated recovery capability.
Incorrect! Try again.
53A DynamoDB table uses tenantId as its partition key. One tenant generates 70% of all traffic, causing throttling despite unused total table capacity. What is the best redesign?
Amazon DynamoDB and other purpose-built databases
Hard
A.Add a write-sharding suffix to distribute the hot tenant
B.Create a global secondary index on the same key
C.Increase item size to improve partition utilization
D.Replace the partition key with a constant value
Correct Answer: Add a write-sharding suffix to distribute the hot tenant
Explanation:
A hot logical key can concentrate traffic on one partition. Sharding the key spreads requests across physical partitions, with reads querying the relevant shards.
Incorrect! Try again.
54A DynamoDB workload requires atomic updates to an account balance and a ledger item, rejecting the operation if either condition is invalid. Which feature best fits?
Amazon DynamoDB and other purpose-built databases
Hard
A.A transactional write with conditional expressions
B.A global secondary index with projected attributes
C.A scan followed by a batch write operation
D.A eventually consistent query followed by two independent writes
Correct Answer: A transactional write with conditional expressions
Explanation:
DynamoDB transactions provide atomicity across items, while conditional expressions enforce business invariants such as sufficient balance.
Incorrect! Try again.
55A DynamoDB item is updated with a conditional expression, but a client retry may submit the same logical request twice after a timeout. Which mechanism most directly prevents duplicate business effects?
Amazon DynamoDB and other purpose-built databases
Hard
A.Use an idempotency token stored and checked with a conditional write
B.Project all attributes into a local secondary index
C.Increase the table's provisioned read capacity
D.Use eventually consistent reads before every retry
Correct Answer: Use an idempotency token stored and checked with a conditional write
Explanation:
An idempotency record or token lets the service recognize repeated requests and conditionally apply the business operation only once.
Incorrect! Try again.
56A product catalog requires full-text search, relevance ranking, faceting, and typo tolerance, while the authoritative records remain transactional. Which architecture is most suitable?
Amazon DynamoDB and other purpose-built databases
Hard
A.Use a relational read replica for token-based relevance ranking
B.Use DynamoDB scans for every catalog search
C.Store catalog records only in an object store
D.Use DynamoDB as the source and synchronize a search service
Correct Answer: Use DynamoDB as the source and synchronize a search service
Explanation:
DynamoDB can provide durable product storage, while a purpose-built search engine handles inverted indexes, ranking, filtering, and typo tolerance.
Incorrect! Try again.
57A large production database must migrate to AWS with minimal downtime. The target schema is compatible, and changes must continue replicating during the initial data load. Which approach is most appropriate?
Migrating databases to AWS
Hard
A.Export a snapshot and accept an extended application outage
B.Run a read-only export after stopping all application writes
C.Use AWS DMS full load plus ongoing change data capture
D.Copy only the latest records after the target is created
Correct Answer: Use AWS DMS full load plus ongoing change data capture
Explanation:
AWS DMS can perform an initial full load and replicate ongoing source changes, allowing a controlled cutover with limited downtime.
Incorrect! Try again.
58During a heterogeneous migration from a commercial relational engine to Aurora PostgreSQL, incompatibilities exist in stored procedures and data types. Which sequence best reduces cutover risk?
Migrating databases to AWS
Hard
A.Disable constraints permanently and migrate only application tables
B.Start replication before assessing application compatibility
C.Assess and convert the schema, test workloads, then replicate and cut over
D.Convert the target after production traffic is redirected
Correct Answer: Assess and convert the schema, test workloads, then replicate and cut over
Explanation:
Heterogeneous migrations require schema and code conversion, compatibility testing, replication validation, and a rehearsed cutover.
Incorrect! Try again.
59A migration validation report shows equal row counts, but users report missing relationships and incorrect timestamps. Which validation improvement is most important?
Migrating databases to AWS
Hard
A.Increase the target instance class without further validation
B.Delete indexes so row counts become easier to compare
C.Compare checksums, constraints, relationships, types, and representative queries
D.Validate only the total number of target rows
Correct Answer: Compare checksums, constraints, relationships, types, and representative queries
Explanation:
Row counts alone do not detect altered values, relationships, type conversion errors, or query behavior. Validation must cover data and semantics.
Incorrect! Try again.
60A database design uses Multi-AZ for failover but has no tested restore process, no defined recovery objectives, and no alerting for replication lag. Which Well-Architected concern is most evident?
Applying Well-Architected principles to the database layer
Hard
A.Reliability is addressed completely by Multi-AZ
B.Cost optimization requires removing all replicas
C.Operational readiness and recovery planning are incomplete
Correct Answer: Operational readiness and recovery planning are incomplete
Explanation:
High availability is only one part of reliability. Tested recovery procedures, defined RPO and RTO, monitoring, and operational runbooks are also required.
Incorrect! Try again.
Did this save you a night before the exam?
LPU Notes is free, and it stays free. Ads cover part of the server bill.
The rest comes out of a student's own pocket: the domain, the storage,
and keeping the site up through the weeks everyone needs it at once.
The payment button didn't load. An ad blocker or a filtered network is the usual reason.
to try again.
Nothing here is ever locked, and nothing unlocks. Chip in only if it was worth it.
What it pays for →