Domanda

db has remnants(sequences, views, etc) of former project. How can i entirely clear the express edition(10g) database to work without remnants of the previous project?

È stato utile?

Soluzione

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.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top