Postgresql acid components

Started by Rama Krishnanover 3 years ago3 messagesgeneral
Jump to latest
#1Rama Krishnan
raghuldrag@gmail.com

Hi all,

In ACID property which postgresql components is supporting it

#2Adrian Klaver
adrian.klaver@aklaver.com
In reply to: Rama Krishnan (#1)
Re: Postgresql acid components

On 9/12/22 09:34, Rama Krishnan wrote:

Hi all,

In ACID property which postgresql components is supporting it

The database as whole is ACID compliant per:

https://www.postgresql.org/about/

"...has been ACID-compliant since 2001...".

From what I remember there are some commands that do not run in a
transaction block:

https://www.postgresql.org/docs/current/sql-createdatabase.html

https://www.postgresql.org/docs/current/sql-vacuum.html

Some forms of below do not run in transaction block:

https://www.postgresql.org/docs/14/sql-reindex.html

https://www.postgresql.org/docs/14/sql-altersubscription.html

https://www.postgresql.org/docs/14/sql-alterdatabase.html

Your best bet is to look at the commands listed here:

https://www.postgresql.org/docs/14/sql-commands.html

to check before using for first time.

--
Adrian Klaver
adrian.klaver@aklaver.com

#3Rama Krishnan
raghuldrag@gmail.com
In reply to: Adrian Klaver (#2)
Re: Postgresql acid components

Hi Adrian

Thanks for your valuable reply.

On Wed, 14 Sep, 2022, 01:11 Adrian Klaver, <adrian.klaver@aklaver.com>
wrote:

Show quoted text

On 9/12/22 09:34, Rama Krishnan wrote:

Hi all,

In ACID property which postgresql components is supporting it

The database as whole is ACID compliant per:

https://www.postgresql.org/about/

"...has been ACID-compliant since 2001...".

From what I remember there are some commands that do not run in a
transaction block:

https://www.postgresql.org/docs/current/sql-createdatabase.html

https://www.postgresql.org/docs/current/sql-vacuum.html

Some forms of below do not run in transaction block:

https://www.postgresql.org/docs/14/sql-reindex.html

https://www.postgresql.org/docs/14/sql-altersubscription.html

https://www.postgresql.org/docs/14/sql-alterdatabase.html

Your best bet is to look at the commands listed here:

https://www.postgresql.org/docs/14/sql-commands.html

to check before using for first time.

--
Adrian Klaver
adrian.klaver@aklaver.com