Search
 
SCRIPT & CODE EXAMPLE
 

SQL

install postgresql centos 5

# centos 5 32bit
rpm -Uvh http://yum.postgresql.org/9.1/redhat/rhel-5-i386/pgdg-centos91-9.1-4.noarch.rpm
yum install postgresql91-server
/etc/init.d/postgresql-9.1 initdb
service postgresql-9.1 start
chkconfig postgresql-9.1 on
Comment

install postgresql 10 centos 7

# yum install https://download.postgresql.org/pub/repos/yum/10/redhat/rhel-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm -y
Comment

install postgresql 10 centos 7

# yum install postgresql10 postgresql10-server postgresql10-contrib postgresql10-libs -y
Comment

install postgresql 10 centos 7

# /usr/pgsql-10/bin/postgresql-10-setup initdb
Initializing database ... OK 
Comment

install postgresql 10 centos 7

# systemctl enable postgresql-10.service
# systemctl start postgresql-10.service
Comment

PREVIOUS NEXT
Code Example
Sql :: duplicate table sql 
Sql :: get value from a table an insert it with other values in another table sql 
Sql :: sql view where tables have same column name combine results 
Sql :: oracle replace 
Sql :: mysql ifnull 
Sql :: oracle trigger 
Sql :: how to get duplicate records with multiple field in sql 
Sql :: sql limit results returned 
Sql :: SQL Remove Index From Tables 
Sql :: SQL Server - Count number of times a specific character appears in a string 
Sql :: mysql insert value date 
Sql :: SQL COUNT() with DISTINCT 
Sql :: count characters of string mysql 
Sql :: how to truncate all table in mysql workbench 
Sql :: sql drop default 
Sql :: DB: in eloquent using sql 
Sql :: How do I add a user to a postgres database? cli 
Sql :: oracle nextval insert 
Sql :: date format in postgresql 
Sql :: syntaxerror unexpected identifier mysql 
Sql :: condition in count sql 
Sql :: oracle remove line breaks 
Sql :: vowels in sql 
Sql :: install mysql 5.7 
Sql :: oracle revoke grant 
Sql :: function in plsql 
Sql :: sql left characters 
Sql :: select 2 rows in sql 
Sql :: sql count null values in all columns 
Sql :: show column names in sql table 
ADD CONTENT
Topic
Content
Source link
Name
1+4 =