connect system/system
CREATE USER user3 -- define user name
IDENTIFIED BY pass3 -- assign password
DEFAULT TABLESPACE users -- assign tablespace for their work (select tablespace_name from dba_data_files;)
TEMPORARY TABLESPACE temp -- assign temp space for 'order bys'
QUOTA 0 ON SYSTEM -- allow no usage of this area
QUOTA UNLIMITED ON users -- allow as much as they need here
PROFILE clerk -- attach a profile
ACCOUNT LOCK
;
CREATE USER user3
IDENTIFIED BY pass3
TEMPORARY TABLESPACE temp
QUOTA 0 ON SYSTEM
QUOTA UNLIMITED ON users
PROFILE clerk
ACCOUNT LOCK
;
How to get URL of commentator
-
We sometimes get questions about how to get the web address/URL of a
commentator in our blog. Blogger.com has not provided any way to do that.
However, the...
7 years ago
No comments:
Post a Comment