我已经在配置单元中有一个内部表。现在我想创建一个外部表,其中包含基于日期的分区。但当我尝试创建它时,它会抛出错误。示例代码:
create external table db_1.T_DATA1 partitioned by (date string) as select * from db_2.temp LOCATION 'file path';
错误:parseexception行2:0无法识别表源中“位置”文件路径“”附近的输入
sq1bmfud1#
根据提供的答案https://stackoverflow.com/a/26722320/4326922 您应该能够使用CTA创建外部表。
1条答案
按热度按时间sq1bmfud1#
根据提供的答案https://stackoverflow.com/a/26722320/4326922 您应该能够使用CTA创建外部表。