MyFunnyDev

web, coding and beyond

Archive for May, 2009

few more ruby links

without comments

Written by Michał Kuklis

May 18th, 2009 at 7:24 pm

Posted in Ruby

Tagged with

drop all tables and sequences in oracle

without comments

tables:

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

sequences:

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

Written by Michał Kuklis

May 18th, 2009 at 11:07 am

Posted in Uncategorized

Tagged with