git @ Cat's Eye Technologies The-Glosscubator / b079911
Add PostgreSQL topic, and 11 web pages therein. Chris Pressey 8 months ago
6 changed file(s) with 207 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
1717
1818 <!-- TOTALS -->
1919
20 Currently it consists of **671** web pages, **82** repositories, **175** papers, and **178** books in **99** topics.
20 Currently it consists of **682** web pages, **82** repositories, **175** papers, and **178** books in **100** topics.
2121 Of these, [**110** have the highest rating](by-rating/Top-rated.md),
2222 [**33** are considered classics](by-rating/Classic.md),
23 [**73** are considered very interesting](by-rating/Very%20Interesting.md),
23 [**74** are considered very interesting](by-rating/Very%20Interesting.md),
2424 while [**70** are yet to be rated](by-rating/Unrated.md).
2525
2626 <!-- /TOTALS -->
9999 * [Philosophy](by-topic/Philosophy/README.md#philosophy)
100100 * [Phraseology](by-topic/Phraseology/README.md#phraseology)
101101 * [Physics](by-topic/Physics/README.md#physics)
102 * [PostgreSQL](by-topic/PostgreSQL/README.md#postgresql)
102103 * [Probability Theory](by-topic/Probability%20Theory/README.md#probability-theory)
103104 * [Programming Languages](by-topic/Programming%20Languages/README.md#programming-languages)
104105 * [Prolog](by-topic/Prolog/README.md#prolog)
743743
744744 .
745745
746 ### PostgreSQL
747
748 * used-in: bookmarks
749
750 Works pertaining to the use and study of the open-source relational database software PostgreSQL
751 (a.k.a. Postgres).
752
746753 ### Practice
747754
748755 * used-in: books
107107
108108 * [The Philosophy of Computer Science (Stanford Encyclopedia of Philosophy)](https://plato.stanford.edu/entries/computer-science/)
109109
110 ### PostgreSQL
111
112 * [PostgreSQL notifications with Psycopg2 and Eventlet --- Psycopg](https://www.psycopg.org/articles/2010/12/01/postgresql-notifications-psycopg2-eventlet/)
113
110114 ### Public Domain
111115
112116 * [David Ahl places all his classic computing publications into the Public Domain « Adafruit Industries](https://blog.adafruit.com/2022/06/16/david-ahl-places-all-his-classic-computing-publications-into-the-public-domain/)
0 PostgreSQL
1 ----------
2
3 <!--
4 SPDX-FileCopyrightText: Chris Pressey, the original author of this work, has dedicated it to the public domain.
5
6 SPDX-License-Identifier: CC0-1.0
7 -->
8
9 [(Up)](../../README.md#topics)
10
11 - - - -
12
13
14 ### Web resources
15
16 [PostgreSQL: The world's most advanced open source database](https://www.postgresql.org/)
17
18 [PostgreSQL - Community Help Wiki (Ubuntu)](https://help.ubuntu.com/community/PostgreSQL)
19
20 [postgresql - How do you find the row count for all your tables in Postgres - Stack Overflow](https://stackoverflow.com/questions/2596670/how-do-you-find-the-row-count-for-all-your-tables-in-postgres)
21
22 [schema compare - How to check difference between two databases in PostgreSQL? - Stack Overflow](https://stackoverflow.com/questions/4804779/how-to-check-difference-between-two-databases-in-postgresql)
23
24 [postgresql - Insert- and Read-only table in Postgres - Database Administrators Stack Exchange](https://dba.stackexchange.com/questions/232463/insert-and-read-only-table-in-postgres)
25
26 [postgresql - How to avoid deadlocks in Postgres? - Stack Overflow](https://stackoverflow.com/questions/25507688/how-to-avoid-deadlocks-in-postgres)
27
28 [sql - Postgres could not serialize access due to concurrent update - Stack Overflow](https://stackoverflow.com/questions/50797097/postgres-could-not-serialize-access-due-to-concurrent-update)
29
30 [Solution of psql: FATAL: Peer authentication failed for user "postgres" (or any user)](https://gist.github.com/AtulKsol/4470d377b448e56468baef85af7fd614)
31
32 [PostgreSQL JSON Tutorial](https://www.postgresqltutorial.com/postgresql-json/)
33
34 [Understanding PostgreSQL Timestamp Data Types](https://www.postgresqltutorial.com/postgresql-timestamp/)
35
36 [PostgreSQL notifications with Psycopg2 and Eventlet --- Psycopg](https://www.psycopg.org/articles/2010/12/01/postgresql-notifications-psycopg2-eventlet/)
0 PostgreSQL
1 ==========
2
3 <!--
4 SPDX-FileCopyrightText: Chris Pressey, the original author of this work, has dedicated it to the public domain.
5
6 SPDX-License-Identifier: CC0-1.0
7 -->
8
9 ### PostgreSQL: The world's most advanced open source database
10
11 * url: https://www.postgresql.org/
12
13 .
14
15 ### PostgreSQL - Community Help Wiki (Ubuntu)
16
17 * url: https://help.ubuntu.com/community/PostgreSQL
18
19 .
20
21 ### postgresql - How do you find the row count for all your tables in Postgres - Stack Overflow
22
23 * url: https://stackoverflow.com/questions/2596670/how-do-you-find-the-row-count-for-all-your-tables-in-postgres
24
25 .
26
27 ### schema compare - How to check difference between two databases in PostgreSQL? - Stack Overflow
28
29 * url: https://stackoverflow.com/questions/4804779/how-to-check-difference-between-two-databases-in-postgresql
30
31 .
32
33 ### postgresql - Insert- and Read-only table in Postgres - Database Administrators Stack Exchange
34
35 * url: https://dba.stackexchange.com/questions/232463/insert-and-read-only-table-in-postgres
36
37 .
38
39 ### postgresql - How to avoid deadlocks in Postgres? - Stack Overflow
40
41 * url: https://stackoverflow.com/questions/25507688/how-to-avoid-deadlocks-in-postgres
42
43 .
44
45 ### sql - Postgres could not serialize access due to concurrent update - Stack Overflow
46
47 * url: https://stackoverflow.com/questions/50797097/postgres-could-not-serialize-access-due-to-concurrent-update
48
49 .
50
51 ### Solution of psql: FATAL: Peer authentication failed for user "postgres" (or any user)
52
53 * url: https://gist.github.com/AtulKsol/4470d377b448e56468baef85af7fd614
54
55 .
56
57 ### PostgreSQL JSON Tutorial
58
59 * url: https://www.postgresqltutorial.com/postgresql-json/
60
61 .
62
63 ### Understanding PostgreSQL Timestamp Data Types
64
65 * url: https://www.postgresqltutorial.com/postgresql-timestamp/
66
67 .
68
69 ### PostgreSQL notifications with Psycopg2 and Eventlet --- Psycopg
70
71 * url: https://www.psycopg.org/articles/2010/12/01/postgresql-notifications-psycopg2-eventlet/
72
73 .
0 Commentary by Chris Pressey
1 ===========================
2
3 <!--
4 Copyright (c) 2024 Chris Pressey, Cat's Eye Technologies.
5
6 SPDX-License-Identifier: CC-BY-ND-4.0
7 -->
8
9 This work is distributed under a CC-BY-ND-4.0 license, with the following explicit
10 exception: the ratings may be freely used for any purpose with no limitations.
11
12 PostgreSQL
13 ----------
14
15 ### PostgreSQL: The world's most advanced open source database
16
17 * rating: 1
18 * useful: true
19
20 .
21
22 ### PostgreSQL - Community Help Wiki (Ubuntu)
23
24 * rating: 1
25 * useful: true
26
27 .
28
29 ### postgresql - How do you find the row count for all your tables in Postgres - Stack Overflow
30
31 * rating: 1
32
33 .
34
35 ### schema compare - How to check difference between two databases in PostgreSQL? - Stack Overflow
36
37 * rating: 1
38
39 .
40
41 ### postgresql - Insert- and Read-only table in Postgres - Database Administrators Stack Exchange
42
43 * rating: 1
44
45 .
46
47 ### postgresql - How to avoid deadlocks in Postgres? - Stack Overflow
48
49 * rating: 1
50
51 .
52
53 ### sql - Postgres could not serialize access due to concurrent update - Stack Overflow
54
55 * rating: 1
56
57 .
58
59 ### Solution of psql: FATAL: Peer authentication failed for user "postgres" (or any user)
60
61 * rating: 1
62
63 .
64
65 ### PostgreSQL JSON Tutorial
66
67 * rating: 1
68
69 .
70
71 ### Understanding PostgreSQL Timestamp Data Types
72
73 * rating: 1
74
75 .
76
77 ### PostgreSQL notifications with Psycopg2 and Eventlet --- Psycopg
78
79 * rating: 2
80
81 .