Global Temporary Table Concurrency
        Posted  
        
            by sahs
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by sahs
        
        
        
        Published on 2010-04-21T08:26:00Z
        Indexed on 
            2010/04/21
            8:33 UTC
        
        
        Read the original article
        Hit count: 585
        
Oracle
|concurrency
Hi,
I have a global temp table which is set as delete on commit. How does it behave on concurrency issue? I mean what happens if another session wants to use that global temporary table? The answer will probably not be "they share the same data".
Now, if my guess is correct :), is the table locked until the first connection commits, or does the dbms create a global temp table for each connection? ( something like an instance of the table? )
© Stack Overflow or respective owner