- Newest
- Most votes
- Most comments
This warning message "Resolving object ID by partition ID could not be accomplished for partition" is related to how AWS DMS processes SQL Server tables during Change Data Capture (CDC) operations.
When running CDC on SQL Server tables, AWS DMS parses the SQL Server transaction logs (tlogs) and needs to understand the table structure, including any partitioning information. During this process, DMS reads table metadata from SQL Server system tables to identify column properties and internal structures.
Even though your query didn't return any explicitly partitioned tables, SQL Server internally uses partitioning for various objects, including heaps and indexes. The warning you're seeing might be related to an internal SQL Server partition that DMS is encountering during the log parsing process.
This warning is generally safe to ignore if:
- Your migration is proceeding normally
- Data is being replicated correctly
- You don't see any actual errors or task failures
If you're concerned about the warning, you might want to check:
- Permissions: Ensure the SQL Server user account used for DMS has the "VIEW SERVER STATE" permission
- SQL Server configuration: Verify CDC is properly enabled on the source database
- Lock issues: In some cases, DMS operations can cause lock contention, which might indirectly relate to partition handling
If the migration is otherwise working correctly, this warning can typically be ignored as it appears to be informational rather than indicating a critical problem with your replication task.
Sources
Why I'm receiving dm_db_partition_stats is not supported on DMS task with Sql Server as source? | AWS re:Post
Troubleshooting migration tasks in AWS Database Migration Service - AWS Database Migration Service
On-Prem to RDS SQL Server Replication - Can't Get Exclusive Lock Due to Incoming DMS CDC Churn | AWS re:Post
Relevant content
- asked a year ago
- asked 3 years ago
- AWS OFFICIALUpdated 7 months ago
- AWS OFFICIALUpdated 4 years ago
