Search
 
SCRIPT & CODE EXAMPLE
 

SQL

install postgres ubuntu

# from the official postgresql site: https://www.postgresql.org/download/linux/ubuntu/
# this will install the latest version of the postgresql.

# Create the file repository configuration:
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'

# Import the repository signing key:
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -

# Update the package lists:
sudo apt-get update

# Install the latest version of PostgreSQL.
# If you want a specific version, use 'postgresql-12' or similar instead of 'postgresql':
sudo apt-get -y install postgresql
Comment

PREVIOUS NEXT
Code Example
Sql :: mysql update field from one table to another 
Sql :: get the next auto_increment value mysql 
Sql :: mysql first day of year 
Sql :: update part of a string in mysql 
Sql :: mysql copy table with new name 
Sql :: flutter sqlite auto incrementing id primary key 
Sql :: how to drop databaselink in oracle 
Sql :: how to start mysql 
Sql :: oracle all_source package body 
Sql :: find table from column name in sql 
Sql :: open postgress in terminal mac 
Sql :: delete first row in sql 
Sql :: postgres stop server mac 
Sql :: revoke a role from user microsoft sql server 
Sql :: drop a row in mysql 
Sql :: add column table sql default value 
Sql :: CREATE DATABASE db; SyntaxError: Unexpected identifier 
Sql :: mysql count words 
Sql :: oracle sleep 1 second 
Sql :: search column name sql 
Sql :: drop db syntax 
Sql :: postgres delete last row 
Sql :: current setting postgres timezone 
Sql :: invalid reference to FROM-clause entry for table "unidades 
Sql :: mysql id of inserted row 
Sql :: sql server utc to local 
Sql :: mysql between start date and end date 
Sql :: hw to delete a procedure in pl sql 
Sql :: sql list users and roles 
Sql :: change table to innodb mysql 
ADD CONTENT
Topic
Content
Source link
Name
6+5 =