Created
March 31, 2012 06:53
-
-
Save bulain/2260133 to your computer and use it in GitHub Desktop.
create tablespace and user in oracle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
create tablespace demos | |
logging | |
datafile '<path>/demo01.dbf' | |
size 256m | |
autoextend on | |
next 64m maxsize 2048m | |
extent management local; | |
CREATE USER demo | |
IDENTIFIED BY demo | |
DEFAULT TABLESPACE demos ; | |
GRANT connect,resource TO demo; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment