skip to Main Content

Is there any way so that I use Apache AGE extension in pgAdmin ?

2

Answers


  1. You just need to:

    • Install AGE
    • Login to postgres server using psql -U username dbname
    • Run CREATE EXTENSION AGE;
    • LOAD 'age';
    • SET search_path = ag_catalog, "$user", public;

    Then you should be able use AGE extension in pgAdmin since its an IDE.

    I also found this answer about installing extension in pgAdmin.

    Login or Signup to reply.
  2. Yes, you can do it.

    1. firstly download and install Apache AGE on your machine. If you need help installing apache age read this.

    2. Then install pgAdmin on your local machine or server. You can download pgAdmin from the official website.

    3. Right-click on the database and select "Query Tool" to open the SQL editor.

    4. In the SQL editor,run "CREATE EXTENSION age;" without quotes.

      You can now use Apache AGE commands and functions in your SQL queries to perform graph-related operations.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search