Archives of the TeradataForum
Message Posted: Mon, 12 Jul 2004 @ 01:31:50 GMT
Subj: | | Re: How to release locks from a table. |
|
From: | | McCall, Glenn D |
Sometimes an archive (arcmain utility) may have failed to complete in which case a lock can be held. In this scenario typically nothing happens
when you try to access the table(s) affected.
To release locks on a database use a job such as the following.
logon uid,password;
release lock (affected_database_name) ;
logoff;
Note the affected_database_name must be enclosed in brackets as shown.
Hope this helps
Glenn Mc
|