TOAD 9.7.2.5 - Using Schema Browser to generate CREATE USER Scripts. A nice
handy facility when migrating databases. I’m sure there is some option that will
skip adding the comments in the script, but I can’t seem to find it. Can anyone
point me in the right direction?
Thanks,
- tim
CREATE USER ABCDEFG
IDENTIFIED BY somepassword
DEFAULT TABLESPACE USERS
TEMPORARY TABLESPACE TEMP
PROFILE STANDARD_USER
ACCOUNT UNLOCK;
– 1 Role for ABCDEFG
GRANT SOME_SELECT_R TO ABCDEFG;
ALTER USER ABCDEFG DEFAULT ROLE ALL;
– 1 System Privilege for ABCDEFG
GRANT CREATE SESSION TO ABCDEFG;