Home » RDBMS Server » Security » How to create a user account with some right?
How to create a user account with some right? [message #29054] Mon, 09 February 2004 20:23 Go to next message
rushing
Messages: 135
Registered: January 2004
Location: Beijing,China
Senior Member
For example, add a new person, and give the write and read right to one object.

Do not use tools, but by code.

Thanks!
Re: How to create a user account with some right? [message #29077 is a reply to message #29054] Tue, 10 February 2004 03:50 Go to previous message
Barbara Boehmer
Messages: 9086
Registered: November 2002
Location: California, USA
Senior Member
The following example creates a user named new_person with a password of new_password and grants select, insert, update, and delete on the emp table in scott's schema to new_person, then demonstrates that new_person can connect and exercise all of those privileges.

scott@ORA92> CREATE USER new_person IDENTIFIED BY new_password;

User created.

scott@ORA92> GRANT CONNECT, RESOURCE TO new_person;

Grant succeeded.

scott@ORA92> GRANT SELECT, INSERT, UPDATE, DELETE ON scott.emp TO new_person;

Grant succeeded.

scott@ORA92> @CONNECT new_person/new_password
new_person@ORA92> SELECT * FROM scott.emp;

     EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
---------- ---------- --------- ---------- --------- ---------- ---------- ----------
      7369 SMITH      CLERK           7902 17-DEC-80        800                    20
      7499 ALLEN      SALESMAN        7698 20-FEB-81       1600        300         30
      7521 WARD       SALESMAN        7698 22-FEB-81       1250        500         30
      7566 JONES      MANAGER         7839 02-APR-81       2975                    20
      7654 MARTIN     SALESMAN        7698 28-SEP-81       1250       1400         30
      7698 BLAKE      MANAGER         7839 01-MAY-81       2850                    30
      7782 CLARK      MANAGER         7839 09-JUN-81       2450                    10
      7788 SCOTT      ANALYST         7566 19-APR-87       3000                    20
      7839 KING       PRESIDENT            17-NOV-81       5000                    10
      7844 TURNER     SALESMAN        7698 08-SEP-81       1500          0         30
      7876 ADAMS      CLERK           7788 23-MAY-87       1100                    20
      7900 JAMES      CLERK           7698 03-DEC-81        950                    30
      7902 FORD       ANALYST         7566 03-DEC-81       3000                    20
      7934 MILLER     CLERK           7782 23-JAN-82       1300                    10

14 rows selected.

new_person@ORA92> INSERT INTO scott.emp (empno, deptno) VALUES (9999, 40);

1 row created.

new_person@ORA92> UPDATE scott.emp SET deptno = 30 WHERE empno = 9999;

1 row updated.

new_person@ORA92> DELETE FROM scott.emp WHERE empno = 9999;

1 row deleted.

new_person@ORA92> COMMIT;

Commit complete.
Previous Topic: grant?
Next Topic: SYS & SYSTEM password lost!
Goto Forum:
  


Current Time: Tue Apr 16 16:57:42 CDT 2024