Volatile tables and their data are only available to the session that creates them. They are not available to other sessions.
Your friend needs to run the create volatile table (including the on commit rows) plus the 2 inserts in order to be able to see them in his session.
Also he needs to make sure he has all the appropriate privileges if he is pulling data from another table to insert into the volatile table.
--Shelley
Volatile tables and their data are only available to the session that creates them. They are not available to other sessions.
Your friend needs to run the create volatile table (including the on commit rows) plus the 2 inserts in order to be able to see them in his session.
Also he needs to make sure he has all the appropriate privileges if he is pulling data from another table to insert into the volatile table.
--Shelley