Sign in
third-party-mirror
/
glassfish
/
3c6930c23e2f1cd28f460ff1133cfa76eaa9a36a
/
.
/
appserver
/
tests
/
appserv-tests
/
devtests
/
jdbc
/
config
/
alltables_oracle.sql
blob: 82a61d086a0537f36011e4773ebcd2501ced68fe [
file
] [
log
] [
blame
]
-- droping all tables from the current user db
-- delete from user_tables;
select
'drop table'
,
table_name
,
'cascade constraints;'
from
user_tables
;