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 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则