vote up 0 vote down star
1

Is there a way to know if a table is locked and what kind of lock is currently on a table? I was hoping for something through the DBC tables in teradata, but I can't find any reference to anything like this. I have normal user access and the DBA is no help. Thanks.

flag

1 Answer

vote up 0 vote down check

AFAIK only DBA utilities are available to determine the type of lock on a table.

With only user-level rights you can do something like the following (from here):

Lock Table dbName.myTable for Access nowait
Select * from dbName.myTable;

And according to the master himself (Geoffrey Rommel):

If the table is locked, you will get error 7423, "Object already locked and NOWAIT. Transaction Aborted."

link|flag
1  
I would think you have to use FOR WRITE instead of FOR ACCESS, since FOR ACCESS will succeed even if the table is locked for write. – Carlos A. Ibarra Jul 20 at 18:22
@Carlos: thank you for adding that info. – Adam Bernier Jul 21 at 5:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.