You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since we're moving data between different schemas, I believe the easiest way to do this is store table data as a csv file, then parse it & load it into the new database using a python script.
We start by using the following sql command to move details from a specific table to a csv file
COPY (SELECT*frompublic.about_officer) TO '/tmp/about_officers.csv' WITH CSV DELIMITER ',' HEADER;