Quote:
Originally posted by WiccaChic
thedafna,
Is there a way to determine how lock level was set at table creation?
|
Hi,
To determine the lock level, enter the foll. command at unix prompt
dbschema -d <databasename> -t <tablename> -ss
When you create a table, you can also specify the lock mode
create table test
(
col1 char(1)
)
lock mode row
Regards,
Lloyd