0

db 有前项目的残余(序列、视图等)。我怎样才能完全清除 express edition(10g) 数据库以在没有以前项目的残余的情况下工作?

4

1 回答 1

1

Simplest way is to drop the schema. e.g.

DROP USER myuser CASCADE;

WARNING: it's best to assume that you cannot undo this command!

Alternatively just create a new workspace (if you have apex admin access) which will get a new schema.

于 2013-05-21T03:33:09.560 回答