Smart questions
Smart answers
Smart people
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Member Login

Come Join Us!

Are you a
Computer / IT professional?
Join Tek-Tips now!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

Join Tek-Tips
*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

LINK TO THIS FORUM!

Add Stickiness To Your Site By Linking To This Professionally Managed Technical Forum.
Just copy and paste the
code below into your site.

Partner With Us!

"Best Of Breed" Forums Add Stickiness To Your Site
Partner Button
(Download This Button Today!)

Feedback

"...I'm a freelance consultant, and your site's helped me with many issues. I just wanted you to know that someone does appreciate the intelligent help your site offers."

Geography

Where in the world do Tek-Tips members come from?
kv444 (Programmer)
8 Jun 12 11:34
Hi,

How do i lock table in oracle, i tried LOCK TABLE Table_name IN EXCLUSIVE MODE and 3 other modes but still i was able to insert data in to the table. I want to lock the table so that the table would reject any data that is being inserted or updated in to this table.



Thanks
karluk (MIS)
8 Jun 12 12:46
Locking the table in exclusive mode should have prevented other sessions from updating the table for the duration of the transaction that's holding the lock, but doesn't prevent updates from the session that created the lock. If that's your intent - to prevent yourself from accidentally updating the table while running a query, you should try using "SET TRANSACTION" to create a read-only transaction. An example of doing this can be found in the Oracle documentation, for example

http://docs.oracle.com/cd/B19306_01/appdev.102/b14261/sqloperations.htm#BABJIHCC
kv444 (Programmer)
8 Jun 12 16:48
Thanks for the reply.

I am trying to lock the whole table,not allow any transcation to the table what so ever. Will SET TRANSACTION work?


Thanks
stefanhei (TechnicalUser)
12 Jun 12 2:22
Hi,
do you try to make the table read only? The syntax for this is:

CODE

ALTER TABLE table_name READ ONLY;
Its a new feature in 11g and will prevent the owner from updating/inserting too.

Reply To This Thread

Posting in the Tek-Tips forums is a member-only feature.

Click Here to join Tek-Tips and talk with other members!

Close Box

Join Tek-Tips® Today!

Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.

Here's Why Members Love Tek-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close