创建PostgreSQL表
与MySQL创建表不同的是SQLServer/PostgreSQL的table_mapping中要指定Schema的名字和表名:
create external table person (
id int,
name varchar(1023),
age int
) tblproperties(
table_mapping = 'public.person'
);
接下来您就可以通过PostgreSQL客户端连接DLA,读取PostgreSQL中的数据,或者将OSS/Table Store中的数据清洗出来并写入PostgreSQL。详细操作步骤,请参见创建MySQL表并读写数据中的从OSS中清洗数据并写入RDS。