sql - How to specify explicit locking while creating a table in PostgreSQL -
what default locking mechanism in postgressql when create table ? row, page, table level or else?
is possible specify row level locking when create table ? below in sybase.
create table user (...) lock datrarows
or not need specify locking strategy , leave postgres choose best while dealing crud ?
cheers!
there isn't can specify @ create table time postgresql. @ run time, can select rows for update
or for share
. if you're coming postgresql platform, should skim docs on concurrency control.
Comments
Post a Comment