Skip to content

Instantly share code, notes, and snippets.

@devbhuwan
Last active January 11, 2017 07:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devbhuwan/26576f59ac4940c3a3f9154a5097c56a to your computer and use it in GitHub Desktop.
Save devbhuwan/26576f59ac4940c3a3f9154a5097c56a to your computer and use it in GitHub Desktop.
  • Create new schema or user and grant resource
  CREATE USER spagobi IDENTIFIED BY spagobi;
  grant connect, resource to spagobi;
  • Change Password User
  ALTER USER hr IDENTIFIED BY hr
  • HR sample database script
  alter user hr account unlock;
  grant connect, resource to hr;
  ALTER USER hr IDENTIFIED BY hr;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment