Answers for "connecting to timescaledb from terminal"

0

connecting to timescaledb from terminal

CREATE database test_db;

#change into the test_db:
\c test_db

Output:
You are now connected to database "test_db" as user "postgres".

#create TimescaleDB extension:
CREATE EXTENSION IF NOT EXISTS timescaledb CASCADE;
Posted by: Guest on November-21-2019
0

connecting to timescaledb from terminal

sudo su -l postgres
psql
Posted by: Guest on November-21-2019

Code answers related to "connecting to timescaledb from terminal"

Browse Popular Code Answers by Language