Amy
2012-11-21 15:01:57 UTC
1. Create a role and for its name, use the concatenation of your user account and the word “Role”. For instance, the role may be called JobesB_Role (where “JonesB” represents your user name).
CREATE ROLE JonesB_Role;
2. Grant to your role the system privileges that facilitate application development.
GRANT CREATE SESSION, CREATE TABLE, CREATE SEQUENCE,
CREATE VIEW, CREATE ROLE, CREATE PROCEDURE,
CREATE TRIGGER, CREATE TABLESPACE, CREATE SYNONYM,
INSERT ANY TABLE, ANALYZE ANY SELECT ANY DICTIONARY TO JonesB_Role;
error thrown saying im missing or invalid privilege...
Please help?!