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

Popular posts from this blog

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -