Export a CSV file

This page describes how to export data in an AlloyDB database to a CSV file.

The procedure to perform the export involves these tasks:

  1. Create a Cloud Storage bucket to store the CSV file in.

  2. Prepare a client host to perform the export operation.

  3. Export data to a CSV file on the client host, and then copy it to the storage bucket.

  4. Clean up the resources created to perform the procedure.

Before you begin

  • You must have the Owner (roles/owner) or Editor (roles/editor) basic IAM role in the Google Cloud project you are using, or you must have these predefined IAM roles:
    • AlloyDB Admin (roles/alloydb.admin) or AlloyDB Viewer (roles/alloydb.viewer)
    • Storage Admin (roles/storage.admin)
    • Compute Instance Admin (v1) (roles/compute.instanceAdmin.v1)

Create a Cloud Storage bucket

Create a standard storage, regional storage bucket in the project and region where your AlloyDB database is located.

Prepare a client host

To prepare a client host to perform the export operation, you create a Compute Engine VM that can connect to the AlloyDB primary instance where your database is located, and install the psql and gsutil tools on that VM.

  1. Follow the instructions Connect a psql client to an instance to create a Compute Engine VM with the proper connectivity and the psql tool installed. When following these instructions, make sure to allocate enough local storage to the Compute Engine VM to accommodate the CSV file you will create.

  2. Install the gsutil tool to provide command-line access to create the CSV file in the Cloud Storage bucket.

Export data

To export data to a CSV file, you get the IP address of the AlloyDB primary instance where your database is located and then run the psql tool's \copy command.

  1. Get the IP address of the AlloyDB primary instance where your database is located by viewing its details.
  2. SSH into the Compute Engine VM.

    Console

    1. In the Google Cloud console, go to the VM instances page.

      Go to VM instances

    2. In the list of virtual machine instances, click SSH in the row of the instance you created.

      SSH button next to instance name.

    gcloud

    Use the gcloud compute ssh command to connect to the instance you created.

    gcloud compute ssh --project=PROJECT_ID --zone=ZONE VM_NAME

    Replace the following:

    • PROJECT_ID: The ID of the project that contains the instance.
    • ZONE: The name of the zone in which the instance is located.
    • VM_NAME: The name of the instance.
  3. Export data to a CSV file:
    1. Run the psql client tool and then, at the psql prompt, connect to the database:
      psql -h IP_ADDRESS -U postgres
      \c DB_NAME
      

      You will be prompted to enter the password of the postgres user.

      • IP_ADDRESS: The IP address of the primary instance.
      • DB_NAME: The name of the database where the data you want to export is located.
    2. Run the \copy command to export data to a CSV file on the client host's local file system:
      \copy TABLE_NAME
        TO 'CSV_FILE_NAME'
        WITH DELIMITER ','
        CSV HEADER
      ;
      
      • TABLE_NAME: The name of the table whose data you want to export.
      • CSV_FILE_NAME: Provide a file name for the CSV file to create on the client host's local file system.

      For information about the wide range of options that the \copy command supports in psql, see the documentation for COPY, its underlying PostgreSQL command.

    3. Enter \q to exit psql and then copy the CSV file to the Cloud Storage bucket you created earlier:
      gsutil cp CSV_FILE_NAME gs://BUCKET_NAME
      

    Clean up resources

    After successfully exporting the CSV file and copying it to the storage bucket, you can delete the Compute Engine VM you used during the export procedure.