i've used mysql before and i'm now switching to oracle.
I've already created a user in oracle. Now i want to give it "all privileges" for a schema.
In mysql i can give all privileges (DML/DDL) for a schema "mySchema" without grant (DCL) like this:
GRANT ALL PRIVILEGES ON mySchema.* TO 'user';
What's the oracle equivalent?