shutdown abort; startup mount exclusive restrict; drop database; exit
November 18, 2008
How to drop oracle database
Drop all tables in a tablespace
select ‘drop table ‘, table_name, ‘cascade constraints \;’ from user_tables;
November 17, 2008
How to insert a character in a delimited chain
echo “e_ff_0123_1″ | awk -F_ ‘{print $1″_”$2″_”$3″_0″$4}’