As long as your default database is your username, you can just create a volatile table straight-off without using any db qualifications. Here is how you change your default database to your username and create a volatile table.
MODIFY USER <USERNAME> AS
DEFAULT DATABASE = <USERNAME>;
CREATE VOLATILE TABLE <TABLENAME>
(COLUMNS....
)
ON COMMIT PRESERVE ROWS;
This genertally helps during your batch process.
Hope that helps.
As long as your default database is your username, you can just create a volatile table straight-off without using any db qualifications. Here is how you change your default database to your username and create a volatile table.
This genertally helps during your batch process.
Hope that helps.