Archive of published articles on May, 2009

Back home

few more ruby links

18/05/2009
No Comments

drop all tables and sequences in oracle

18/05/2009

tables:

SELECT 'DROP TABLE ' || TABLE_NAME || ' CASCADE CONSTRAINTS;' FROM user_tables;

sequences:

SELECT 'DROP SEQUENCE ' || sequence_name || ';' FROM user_sequences;
No Comments