Athena CTAS Internal Error

0

Executing a simple CTAS query produces an internal error:
The Query:

CREATE TABLE "myDatabase"."newTable" AS
SELECT *
FROM "myDatabase"."oldTable";

The Error:

[ErrorCode: INTERNAL_ERROR_QUERY_ENGINE] Amazon Athena an experienced an internal error while executing this query. Please contact AWS support for further assistance. You will not be charged for this query. We apologize for the inconvenience.

Syntax From AWS Documentation https://docs.aws.amazon.com/athena/latest/ug/ctas-examples.html

CREATE TABLE new_table AS 
SELECT * 
FROM old_table;

Either this error message is incorrect/completely useless, or there has been a change made to the CTAS functionality.

Edited by: Jfarrin1 on Mar 22, 2019 2:23 AM

已提問 5 年前檢視次數 973 次
1 個回答
0

The issue is that CTAS queries do not work with table names using special characters. So any table name using - produces this error.
For information about the CTAS query syntax, please see Considerations and Limitations for CTAS Queries https://docs.aws.amazon.com/athena/latest/ug/considerations-ctas.html. It is stated there, quoting:
"Table, database, or column names for CTAS queries should not contain quotes or backticks. To ensure this, check that your table, database, or column names do not represent reserved words: https://docs.aws.amazon.com/athena/latest/ug/reserved-words.html, and do not contain special characters (which require enclosing them in quotes or backticks). For more information, see Names for Tables, Databases, and Columns, in https://docs.aws.amazon.com/athena/latest/ug/tables-databases-columns-names.html."

Edited by: JM-AWS on Mar 25, 2019 1:38 PM

Edited by: JM-AWS on Mar 25, 2019 1:42 PM

Edited by: JM-AWS on Mar 25, 2019 1:43 PM

已回答 5 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南