How to import data from AWS S3 into RDS PostgreSQL without including auto-generated primary key ID column in CSV file?

0

Hi, I am following this doc for copying CSV files from S3 directly into an Aurora serverless V2 database in RDS: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PostgreSQL.S3Import.html

However, I’m running into an issue with the primary key column on our RDS table. There is a primary key column in our table called id that is not present in the CSV file I am attempting to upload. This id column gets auto-incremented on generic inserts into the table.

A sample query I am running locally on pgadmin is:

SELECT aws_s3.table_import_from_s3 (
	'schema_ace.journal_entries',
'columna_a,column_b,column_c',
	'(format csv,header true)',
	aws_commons.create_s3_uri (
		'test-s3-bucket',
		'RDS/300_rows.csv',
		'us-west-2'
	)
);

The file I am trying to insert has all the columns in the RDS table except for the id column. When I attempt to run this query it fails. If I add an empty column called ID to the csv file the query everything inserts correctly, however the rows inserted into RDS do not have any values for id.

Does anyone know if there is a way to auto-generate the values for the primary key id column in the table during the copy command without me needing to do anything to the CSV file?

1 Answer
1
Accepted Answer

Hi, to achieve what you want,

  1. you can use type SERIAL for your id column: see https://www.postgresqltutorial.com/postgresql-tutorial/postgresql-serial/
  2. then you modify the table_import_from s3 above with only 2 columns instead of 3, the id column will autogenerate via its SERIAL type.

Best, Didier

profile pictureAWS
EXPERT
answered 10 months ago
profile picture
EXPERT
reviewed 9 months ago
  • Thank you, that worked!

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions