Azure Database Migration Service (DMS) does not support direct migration from SQL Server to Azure Database for PostgreSQL Flexible Server. DMS is primarily designed for migrations between similar database types, such as SQL Server to SQL Database or PostgreSQL to PostgreSQL.
For migrating from SQL Server to Azure PostgreSQL, you can consider using the following approaches:
- Data Migration Assistant (DMA): This tool helps assess your SQL Server database for compatibility issues and provides recommendations for migration.
- Azure Data Factory: You can use Azure Data Factory to create data pipelines that can move data from SQL Server to PostgreSQL.
- Manual Migration: This involves exporting data from SQL Server and importing it into PostgreSQL using tools like
pgAdminorpsql.
It's recommended to evaluate your specific requirements and choose the best approach based on your scenario.