Getting started with Aiven for PostgreSQL® ========================================== Aiven for PostgreSQL® is available in the `Aiven console `_. Create an Aiven for PostgreSQL® service --------------------------------------- 1. Log in to the `Aiven web console `_. 2. Follow :doc:`these instructions ` to create a new Aiven for PostgreSQL service. Once the service is ready, the status changes to *Running*. This typically takes a couple of minutes, depending on your selected cloud provider and region. Connect to PostgreSQL with ``psql`` ----------------------------------- 1. Log in to `Aiven Console `_. 2. Navigate to your service's page, and select **Overview** for the left sidebar. 3. In the **Connection information** section, identify **Service URI**, which is the direct PostgreSQL connection endpoint. .. seealso:: For more information on direct connections and connection pooling, visit the dedicated :doc:`page `. 4. Use :doc:`psql ` to connect to the PostgreSQL instance by the following command: .. code:: psql SERVICE_URI_OF_YOUR_SERVICE Load a test dataset in PostgreSQL --------------------------------- If you're checking out PostgreSQL, loading a test dataset will give you something to look at. This example uses ``dellstore2``, a standard store dataset with products, orders, inventory and customer information. 1. Download the ``dellstore2-normal-1.0.tar.gz`` file from the `PostgreSQL website `_ and unzip it. 2. Navigate to the ``dellstore2-normal-1.0`` folder on your terminal. 3. Connect to your PostgreSQL instance with ``psql`` as shown above. 4. Create a ``dellstore`` database and connect to it with the following command from ``psql``: .. code:: CREATE DATABASE dellstore; \c dellstore .. Tip:: Your ``psql`` terminal prefix will change to ``dellstore==>`` when you are connected to the correct database. 5. Populate the database by executing the following command from ``psql``: .. code:: \i dellstore2-normal-1.0.sql 6. Verify which objects have been created from ``psql``: .. code:: \d The output should look like this: .. code:: List of relations Schema | Name | Type | Owner --------+--------------------------+----------+---------- public | categories | table | avnadmin public | categories_category_seq | sequence | avnadmin public | cust_hist | table | avnadmin public | customers | table | avnadmin public | customers_customerid_seq | sequence | avnadmin public | inventory | table | avnadmin public | orderlines | table | avnadmin public | orders | table | avnadmin public | orders_orderid_seq | sequence | avnadmin public | products | table | avnadmin public | products_prod_id_seq | sequence | avnadmin public | reorder | table | avnadmin (12 rows) .. seealso:: - Code examples for connecting to PostgreSQL from your application: - :doc:`Go ` - :doc:`Python ` - How to :doc:`use PgAdmin ` with Aiven for PostgreSQL - How to :doc:`migrate your PostgreSQL to Aiven ` - Learn PostgreSQL with some `PostgreSQL Exercises `_ - The `awesome PostgreSQL ecosystem `_ of tools and solutions