I have a global temp table that is set as commit on commit. How does it relate to the concurrency problem? I mean, what happens if another session wants to use this global temporary table? The answer probably will not be "they have the same data."
Now, if my guess is correct :), is the table locked until the first connection occurs, or does dbms create a global tempo table for each connection? (something like a table instance?)
source
share