AWS 中国区:从S3导入csv到RDS PostgreSQL

根据文档测试即可:

https://docs.amazonaws.cn/AmazonRDS/latest/UserGuide/USER_PostgreSQL.S3Import.html

postgres=> create extension aws_s3 cascade;
NOTICE:  installing required extension "aws_commons"
CREATE EXTENSION

postgres=> SELECT aws_commons.create_s3_uri(
postgres(>    '<yours3bucket>',
postgres(>    'test.csv',
postgres(>    'cn-north-1'
postgres(> ) AS s3_uri \gset
postgres=>

postgres=> SELECT aws_s3.table_import_from_s3(
postgres(>    'test',
postgres(>    'a,b,c,d',
postgres(>    'DELIMITER ''|''',
postgres(>    aws_commons.create_s3_uri('<yours3bucket>', 'test.csv', 'cn-north-1')
postgres(> );
                        table_import_from_s3
---------------------------------------------------------------------
 4 rows imported into relation "test" from file test.csv of 88 bytes
(1 row)

postgres=> select * from test;
 a |  b   |  c   |     d
---+------+------+-----------
 1 | foo1 | bar1 | elephant1
 2 | foo2 | bar2 | elephant2
 3 | foo3 | bar3 | elephant3
 4 | foo4 | bar4 | elephant4
(4 rows)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值