/ Published in: SQL
Generate the SQL necessary to create sequences for every table. NOTE: This doesn’t create sequences. The results need to be copied and run as a script.
Expand |
Embed | Plain Text
SELECT 'create sequence ' || table_name || '_seq start with 1 nocache ;' FROM user_tables
You need to login to post a comment.
