DBAsupport.com Forums - Powered by vBulletin
Results 1 to 3 of 3

Thread: Record blocking

  1. #1
    Join Date
    Jul 2004
    Posts
    9

    Record blocking

    Hello, all!

    I want permit access to any record in database only for one session and blocking this record for other session. I use expression:

    create or replace procedure ....
    (input/output parameters)
    begin

    select
    balance
    into
    card_balance
    from
    xcard
    for
    update nowait;

    any action.....
    end;

    This stored procedure I called from Perl's script and not get block action in procedure.

    It is correct way?

  2. #2
    Join Date
    May 2000
    Location
    ATLANTA, GA, USA
    Posts
    3,135
    Do you want serialized transactions?

    Tamil

  3. #3
    Join Date
    Jul 2004
    Posts
    9

    serialized transactions

    Originally posted by tamilselvan
    Do you want serialized transactions?

    Tamil
    It is an approximate equivalent action?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width