ݺߣ

ݺߣShare a Scribd company logo
2
Most read
PostgreSqlCheatSheet
PostgreSQLalsoknownasPostgres,isafreeandopen-sourcerelationaldatabase
managementsystem(RDBMS)emphasizingextensibilityandSQLcompliance.
bylam
?PSQL
Login
psql -U postgres
Someinterestingflags(tosee
all,use-hor--help
dependingonyourpsql
version):
-E:willdescribethe
underlayingqueriesofthe
commands(coolfor
learning!)
-l:psqlwilllistall
databasesandthenexit
(usefuliftheuseryou
connectwithdoesn'thas
adefaultdatabase,likeat
AWSRDS)
Mostdcommandssupport
additionalparamof
__schema__.name__and
acceptwildcardslike*.*
q:Quit/Exit
c__database__:Connect
toadatabase
d__table__:Showtable
definition(columns,etc.)
includingtriggers
d+__table__:More
detailedtabledefinition
includingdescriptionand
physicaldisksize
l:Listdatabases
dy:Listevents
df:Listfunctions
di:Listindexes
dn:Listschemas
?Configuration
Servicemanagement
commands:
sudo service postgresq
l stop
sudo service postgresq
l start
sudo service postgresq
l restart
Changingverbosity&
queryingPostgreslog:
Firstedittheconfigfile,seta
decentverbosity,saveand
restartpostgres:
sudo vim /etc/postgresq
l/9.3/main/postgresql.c
onf
# Uncomment/Change insi
de:
log_min_messages = debu
g5
log_min_error_statemen
t = debug5
log_min_duration_statem
ent = -1
sudo service postgresq
l restart
Nowyouwillgettonsof
detailsofeverystatement,
error,andevenbackground
taskslikeVACUUMs
tail -f /var/log/postgr
esql/postgresql-9.3-mai
n.log
Howtoadduserwho
executedaPGstatementto
log(editingpostgresql.conf):
log_line_prefix = '%t %
?Createcommand
TherearemanyCREATE
choices,likeCREATE
DATABASE
__database_name__,CREATE
TABLE__table_name__...
Parametersdifferbutcanbe
checkedattheofficial
documentation.
?Handyqueries
Listprocedure/function
SELECT * FROM pg_proc W
HERE proname='__procedu
rename__'
Listview(includingthe
definition)
SELECT * FROM pg_views
WHERE viewname='__viewn
ame__';
ShowDBtablespaceinuse
SELECT pg_size_pretty(p
g_total_relation_size
('__table_name__'));
ShowDBspaceinuse
SELECT pg_size_pretty(p
g_database_size('__data
base_name__'));
Showcurrentuser's
statementtimeout
show statement_timeout;
Showtableindexes
SELECT * FROM pg_indexe
?
?
dt .:Listtablesfromall
schemas(if*.*isomitted
willonlyshow
SEARCH_PATHones)
dT+:Listalldatatypes
dv:Listviews
dx:Listallextensions
installed
df+__function__:Show
functionSQLcode.
x:Pretty-formatquery
resultsinsteadofthenot-
so-usefulASCIItables
copy(SELECT*FROM
__table_name__)TO
'file_path_and_name.csv'
WITHCSV:Exportatable
asCSV
des+:Listallforeign
servers
dE[S+]:Listallforeign
tables
UserRelated:
du:Listusers
du__username__:Lista
usernameifpresent.
createrole__test1__:
Createarolewithan
existingusername.
createrole__test2__
noinheritloginpassword
__passsword__;:Createa
rolewithusernameand
password.
setrole__test__;:Change
roleforcurrentsessionto
__test__.
grant__test2__to
__test1__;:Allow__test1__
tosetitsroleas__test2__.
deu+:Listalluser
mappingonserver
u %d %a ' s WHERE tablename='__ta
ble_name__' AND scheman
ame='__schema_name__';
Getallindexesfromalltables
ofaschema:
SELECT
t.relname AS table_n
ame,
i.relname AS index_n
ame,
a.attname AS column_
name
FROM
pg_class t,
pg_class i,
pg_index ix,
pg_attribute a,
pg_namespace n
WHERE
t.oid = ix.indrelid
AND i.oid = ix.index
relid
AND a.attrelid = t.o
id
AND a.attnum = ANY(i
x.indkey)
AND t.relnamespace
= n.oid
AND n.nspname = 'ka
rtones'
ORDER BY
t.relname,
i.relname
Executiondata
SELECT datname, applica
tion_name, pid, backend
_start, query_start, st
ate_change, state, quer
y
FROM pg_stat_activit
y
WHERE datname='__data
base_name__';
Getallqueriesfromalldbs
waitingfordata(mightbe
hung)
SELECT * FROM pg_stat_a
ctivity WHERE waiting
='t'
Currentlyrunningquerieswith
processpid:
?
?
CheatSheetMaker.com SimpleCheatSheet.com
SELECT pg_stat_get_back
end_pid(s.backendid) A
S procpid,
pg_stat_get_backend_ac
tivity(s.backendid) AS
current_query
FROM (SELECT pg_stat_ge
t_backend_idset() AS ba
ckendid) AS s;
Casting
CAST(columnAStype)
orcolumn::type
'__table_name__'::regclass::oid:
Getoidhavingatable
name
Queryanalysis
EXPLAIN__query__:see
thequeryplanforthe
givenquery
EXPLAINANALYZE
__query__:seeand
executethequeryplan
forthegivenquery
ANALYZE[__table__]:
collectstatistics
?Generatingrandomdata
INSERT INTO some_table
(a_float_value) SELECT
random() * 100000 FROM
generate_series(1, 1000
000) i;
?
?
Ad

Recommended

Improving Apache Spark Downscaling
Improving Apache Spark Downscaling
Databricks
?
Database Management systems - Data Independence
Database Management systems - Data Independence
DEEPIKAP92
?
db tech showcase 2019 SQL Server 2019 - SQL ServerMޤȤƤ줱
db tech showcase 2019 SQL Server 2019 - SQL ServerMޤȤƤ줱
Masayuki Ozawa
?
Zero Downtime Schema Changes - Galera Cluster - Best Practices
Zero Downtime Schema Changes - Galera Cluster - Best Practices
Severalnines
?
PTC Live: Integrating PTC Windchill with Cadence PCB Design
PTC Live: Integrating PTC Windchill with Cadence PCB Design
EMA Design Automation
?
Your Data, Your Search, ElasticSearch (EURUKO 2011)
Your Data, Your Search, ElasticSearch (EURUKO 2011)
Karel Minarik
?
Scaling your analytics with Amazon EMR
Scaling your analytics with Amazon EMR
Israel AWS User Group
?
ORACLE ARCHITECTURE
ORACLE ARCHITECTURE
Manohar Tatwawadi
?
Postgresql Up And Running Regina Obe Leo Hsu
Postgresql Up And Running Regina Obe Leo Hsu
zahidtraaslw
?
GSoC2014 - PGDay Ijui/RS Presentation October, 2016
GSoC2014 - PGDay Ijui/RS Presentation October, 2016
Fabrzio Mello
?
9.6_Course Material-Postgresql_002.pdf
9.6_Course Material-Postgresql_002.pdf
sreedb2
?
Learning postgresql
Learning postgresql
DAVID RAUDALES
?
Postgresql quick guide
Postgresql quick guide
Ashoka Vanjare
?
Getting started with postgresql
Getting started with postgresql
botsplash.com
?
Object Relational Database Management System
Object Relational Database Management System
Amar Myana
?
GSoC2014 - Uniritter Presentation May, 2015
GSoC2014 - Uniritter Presentation May, 2015
Fabrzio Mello
?
PostgreSQL- An Introduction
PostgreSQL- An Introduction
Smita Prasad
?
Chjkkkkkkkkkkkkkkkkkjjjjjjjjjjjjjjjjjjjjjjjjjj01_The Basics.pptx
Chjkkkkkkkkkkkkkkkkkjjjjjjjjjjjjjjjjjjjjjjjjjj01_The Basics.pptx
MhmdMk10
?
Bn 1016 demo postgre sql-online-training
Bn 1016 demo postgre sql-online-training
conline training
?
Postgresql tutorial
Postgresql tutorial
Ashoka Vanjare
?
0292-introduction-postgresql.pdf
0292-introduction-postgresql.pdf
Mustafa Keskin
?
Introduction to PostgreSQL for System Administrators
Introduction to PostgreSQL for System Administrators
Jignesh Shah
?
OpenGurukul : Database : PostgreSQL
OpenGurukul : Database : PostgreSQL
Open Gurukul
?
Postgresql
Postgresql
NexThoughts Technologies
?
Getting by with just psql
Getting by with just psql
Corey Huinker
?
PostgreSQL - Case Study
PostgreSQL - Case Study
S.Shayan Daneshvar
?
An evening with Postgresql
An evening with Postgresql
Joshua Drake
?
Postgresql v15.1
Postgresql v15.1
Banking at Ho Chi Minh city
?
Py spark cheat sheet by cheatsheetmaker.com
Py spark cheat sheet by cheatsheetmaker.com
Lam Hoang
?
VS Code cheat sheet
VS Code cheat sheet
Lam Hoang
?

More Related Content

Similar to PostgreSql cheat sheet (20)

Postgresql Up And Running Regina Obe Leo Hsu
Postgresql Up And Running Regina Obe Leo Hsu
zahidtraaslw
?
GSoC2014 - PGDay Ijui/RS Presentation October, 2016
GSoC2014 - PGDay Ijui/RS Presentation October, 2016
Fabrzio Mello
?
9.6_Course Material-Postgresql_002.pdf
9.6_Course Material-Postgresql_002.pdf
sreedb2
?
Learning postgresql
Learning postgresql
DAVID RAUDALES
?
Postgresql quick guide
Postgresql quick guide
Ashoka Vanjare
?
Getting started with postgresql
Getting started with postgresql
botsplash.com
?
Object Relational Database Management System
Object Relational Database Management System
Amar Myana
?
GSoC2014 - Uniritter Presentation May, 2015
GSoC2014 - Uniritter Presentation May, 2015
Fabrzio Mello
?
PostgreSQL- An Introduction
PostgreSQL- An Introduction
Smita Prasad
?
Chjkkkkkkkkkkkkkkkkkjjjjjjjjjjjjjjjjjjjjjjjjjj01_The Basics.pptx
Chjkkkkkkkkkkkkkkkkkjjjjjjjjjjjjjjjjjjjjjjjjjj01_The Basics.pptx
MhmdMk10
?
Bn 1016 demo postgre sql-online-training
Bn 1016 demo postgre sql-online-training
conline training
?
Postgresql tutorial
Postgresql tutorial
Ashoka Vanjare
?
0292-introduction-postgresql.pdf
0292-introduction-postgresql.pdf
Mustafa Keskin
?
Introduction to PostgreSQL for System Administrators
Introduction to PostgreSQL for System Administrators
Jignesh Shah
?
OpenGurukul : Database : PostgreSQL
OpenGurukul : Database : PostgreSQL
Open Gurukul
?
Postgresql
Postgresql
NexThoughts Technologies
?
Getting by with just psql
Getting by with just psql
Corey Huinker
?
PostgreSQL - Case Study
PostgreSQL - Case Study
S.Shayan Daneshvar
?
An evening with Postgresql
An evening with Postgresql
Joshua Drake
?
Postgresql v15.1
Postgresql v15.1
Banking at Ho Chi Minh city
?
Postgresql Up And Running Regina Obe Leo Hsu
Postgresql Up And Running Regina Obe Leo Hsu
zahidtraaslw
?
GSoC2014 - PGDay Ijui/RS Presentation October, 2016
GSoC2014 - PGDay Ijui/RS Presentation October, 2016
Fabrzio Mello
?
9.6_Course Material-Postgresql_002.pdf
9.6_Course Material-Postgresql_002.pdf
sreedb2
?
Getting started with postgresql
Getting started with postgresql
botsplash.com
?
Object Relational Database Management System
Object Relational Database Management System
Amar Myana
?
GSoC2014 - Uniritter Presentation May, 2015
GSoC2014 - Uniritter Presentation May, 2015
Fabrzio Mello
?
PostgreSQL- An Introduction
PostgreSQL- An Introduction
Smita Prasad
?
Chjkkkkkkkkkkkkkkkkkjjjjjjjjjjjjjjjjjjjjjjjjjj01_The Basics.pptx
Chjkkkkkkkkkkkkkkkkkjjjjjjjjjjjjjjjjjjjjjjjjjj01_The Basics.pptx
MhmdMk10
?
Bn 1016 demo postgre sql-online-training
Bn 1016 demo postgre sql-online-training
conline training
?
0292-introduction-postgresql.pdf
0292-introduction-postgresql.pdf
Mustafa Keskin
?
Introduction to PostgreSQL for System Administrators
Introduction to PostgreSQL for System Administrators
Jignesh Shah
?
OpenGurukul : Database : PostgreSQL
OpenGurukul : Database : PostgreSQL
Open Gurukul
?
Getting by with just psql
Getting by with just psql
Corey Huinker
?
An evening with Postgresql
An evening with Postgresql
Joshua Drake
?

More from Lam Hoang (14)

Py spark cheat sheet by cheatsheetmaker.com
Py spark cheat sheet by cheatsheetmaker.com
Lam Hoang
?
VS Code cheat sheet
VS Code cheat sheet
Lam Hoang
?
Nginx cheat sheet
Nginx cheat sheet
Lam Hoang
?
MySql cheat sheet
MySql cheat sheet
Lam Hoang
?
Html cheat sheet
Html cheat sheet
Lam Hoang
?
Git cheat sheet
Git cheat sheet
Lam Hoang
?
Django cheat sheet
Django cheat sheet
Lam Hoang
?
Css cheat sheet
Css cheat sheet
Lam Hoang
?
Apache cheat sheet
Apache cheat sheet
Lam Hoang
?
Battle chatter minecraft 1.4.7 mod
Battle chatter minecraft 1.4.7 mod
Lam Hoang
?
On thi dai_hoc_mon_van_2010 (1)
On thi dai_hoc_mon_van_2010 (1)
Lam Hoang
?
?n thi m?n v?n
?n thi m?n v?n
Lam Hoang
?
On thi dai_hoc_mon_van_2010
On thi dai_hoc_mon_van_2010
Lam Hoang
?
gio trnh c c?n b?n
gio trnh c c?n b?n
Lam Hoang
?
Py spark cheat sheet by cheatsheetmaker.com
Py spark cheat sheet by cheatsheetmaker.com
Lam Hoang
?
VS Code cheat sheet
VS Code cheat sheet
Lam Hoang
?
Nginx cheat sheet
Nginx cheat sheet
Lam Hoang
?
MySql cheat sheet
MySql cheat sheet
Lam Hoang
?
Html cheat sheet
Html cheat sheet
Lam Hoang
?
Git cheat sheet
Git cheat sheet
Lam Hoang
?
Django cheat sheet
Django cheat sheet
Lam Hoang
?
Css cheat sheet
Css cheat sheet
Lam Hoang
?
Apache cheat sheet
Apache cheat sheet
Lam Hoang
?
Battle chatter minecraft 1.4.7 mod
Battle chatter minecraft 1.4.7 mod
Lam Hoang
?
On thi dai_hoc_mon_van_2010 (1)
On thi dai_hoc_mon_van_2010 (1)
Lam Hoang
?
On thi dai_hoc_mon_van_2010
On thi dai_hoc_mon_van_2010
Lam Hoang
?
gio trnh c c?n b?n
gio trnh c c?n b?n
Lam Hoang
?
Ad

Recently uploaded (20)

Complete guidance book of Asp.Net Web API
Complete guidance book of Asp.Net Web API
Shabista Imam
?
How to Un-Obsolete Your Legacy Keypad Design
How to Un-Obsolete Your Legacy Keypad Design
Epec Engineered Technologies
?
Rapid Prototyping for XR: Lecture 3 - Video and Paper Prototyping
Rapid Prototyping for XR: Lecture 3 - Video and Paper Prototyping
Mark Billinghurst
?
LECTURE 7 COMPUTATIONS OF LEVELING DATA APRIL 2025.pptx
LECTURE 7 COMPUTATIONS OF LEVELING DATA APRIL 2025.pptx
rr22001247
?
20CE404-Soil Mechanics - ݺߣ Share PPT
20CE404-Soil Mechanics - ݺߣ Share PPT
saravananr808639
?
????? ?? ??????? ?????????? ????? ?????? ??? ????.pdf
????? ?? ??????? ?????????? ????? ?????? ??? ????.pdf
???? ??? ?????
?
AI_Presentation (1). Artificial intelligence
AI_Presentation (1). Artificial intelligence
RoselynKaur8thD34
?
Solar thermal C Flat plate and concentrating collectors .pptx
Solar thermal C Flat plate and concentrating collectors .pptx
jdaniabraham1
?
Data Structures Module 3 Binary Trees Binary Search Trees Tree Traversals AVL...
Data Structures Module 3 Binary Trees Binary Search Trees Tree Traversals AVL...
resming1
?
Mobile database systems 20254545645.pptx
Mobile database systems 20254545645.pptx
herosh1968
?
Deep Learning for Natural Language Processing_FDP on 16 June 2025 MITS.pptx
Deep Learning for Natural Language Processing_FDP on 16 June 2025 MITS.pptx
resming1
?
Modern multi-proposer consensus implementations
Modern multi-proposer consensus implementations
Fran?ois Garillot
?
Industrial internet of things IOT Week-3.pptx
Industrial internet of things IOT Week-3.pptx
KNaveenKumarECE
?
special_edition_using_visual_foxpro_6.pdf
special_edition_using_visual_foxpro_6.pdf
Shabista Imam
?
Generative AI & Scientific Research : Catalyst for Innovation, Ethics & Impact
Generative AI & Scientific Research : Catalyst for Innovation, Ethics & Impact
AlqualsaDIResearchGr
?
݆iY_Miipher and Miipher2 .
݆iY_Miipher and Miipher2 .
ʽ
?
FUNDAMENTALS OF COMPUTER ORGANIZATION AND ARCHITECTURE
FUNDAMENTALS OF COMPUTER ORGANIZATION AND ARCHITECTURE
Shabista Imam
?
Stability of IBR Dominated Grids - IEEE PEDG 2025 - short.pptx
Stability of IBR Dominated Grids - IEEE PEDG 2025 - short.pptx
ssuser307730
?
Introduction to sensing and Week-1.pptx
Introduction to sensing and Week-1.pptx
KNaveenKumarECE
?
Introduction to Python Programming Language
Introduction to Python Programming Language
merlinjohnsy
?
Complete guidance book of Asp.Net Web API
Complete guidance book of Asp.Net Web API
Shabista Imam
?
Rapid Prototyping for XR: Lecture 3 - Video and Paper Prototyping
Rapid Prototyping for XR: Lecture 3 - Video and Paper Prototyping
Mark Billinghurst
?
LECTURE 7 COMPUTATIONS OF LEVELING DATA APRIL 2025.pptx
LECTURE 7 COMPUTATIONS OF LEVELING DATA APRIL 2025.pptx
rr22001247
?
20CE404-Soil Mechanics - ݺߣ Share PPT
20CE404-Soil Mechanics - ݺߣ Share PPT
saravananr808639
?
????? ?? ??????? ?????????? ????? ?????? ??? ????.pdf
????? ?? ??????? ?????????? ????? ?????? ??? ????.pdf
???? ??? ?????
?
AI_Presentation (1). Artificial intelligence
AI_Presentation (1). Artificial intelligence
RoselynKaur8thD34
?
Solar thermal C Flat plate and concentrating collectors .pptx
Solar thermal C Flat plate and concentrating collectors .pptx
jdaniabraham1
?
Data Structures Module 3 Binary Trees Binary Search Trees Tree Traversals AVL...
Data Structures Module 3 Binary Trees Binary Search Trees Tree Traversals AVL...
resming1
?
Mobile database systems 20254545645.pptx
Mobile database systems 20254545645.pptx
herosh1968
?
Deep Learning for Natural Language Processing_FDP on 16 June 2025 MITS.pptx
Deep Learning for Natural Language Processing_FDP on 16 June 2025 MITS.pptx
resming1
?
Modern multi-proposer consensus implementations
Modern multi-proposer consensus implementations
Fran?ois Garillot
?
Industrial internet of things IOT Week-3.pptx
Industrial internet of things IOT Week-3.pptx
KNaveenKumarECE
?
special_edition_using_visual_foxpro_6.pdf
special_edition_using_visual_foxpro_6.pdf
Shabista Imam
?
Generative AI & Scientific Research : Catalyst for Innovation, Ethics & Impact
Generative AI & Scientific Research : Catalyst for Innovation, Ethics & Impact
AlqualsaDIResearchGr
?
݆iY_Miipher and Miipher2 .
݆iY_Miipher and Miipher2 .
ʽ
?
FUNDAMENTALS OF COMPUTER ORGANIZATION AND ARCHITECTURE
FUNDAMENTALS OF COMPUTER ORGANIZATION AND ARCHITECTURE
Shabista Imam
?
Stability of IBR Dominated Grids - IEEE PEDG 2025 - short.pptx
Stability of IBR Dominated Grids - IEEE PEDG 2025 - short.pptx
ssuser307730
?
Introduction to sensing and Week-1.pptx
Introduction to sensing and Week-1.pptx
KNaveenKumarECE
?
Introduction to Python Programming Language
Introduction to Python Programming Language
merlinjohnsy
?
Ad

PostgreSql cheat sheet