Error metadata loading was interrupted because of data fetching issues

0

Hi there,
In an attempt to migrate a local MS SQL Server 2017 database of ~40GB to AWS RDS (Aurora in Postgres mode) I am getting error at the stage where the source database metadata discovery occurs:
Metadata loading was interrupted because of data fetching issues. For details, see the log
This happens fairly quickly, roughly after 20 sec. I use AWS SCT locally where the database resides using the latest JDBC drivers.

질문됨 4년 전1165회 조회
1개 답변
0

I perceive it as the SCT bug unable to proceed in case the collation of a database is different from the server instance.
This is because I see this error in the log:

Error executing 'get-server-config' query: com.microsoft.sqlserver.jdbc.SQLServerException: Cannot resolve the collation conflict between "SQL_Latin1_General_CP1_CI_AS" and "Latin1_General_CI_AS" in the equal to operation

So my server was on the SQL_Latin1_General_CI_AS, but the database on the Latin1_General_CI_AS collation which is a valid setup in my view. Alas, the tool can't support this simple case.
Remedied by

ALTER DATABASE <name>
COLLATE SQL_Latin1_General_CP1_CI_AS; 
답변함 4년 전

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠