Environment information:
* Oracle version: 10g Express editio
* Operating system: XP
Hello everyone, I would like to know how I can give permission to the object, in my schema?
I created a user and would like to give permission to create tables, proc, pkg, fuction etc
I sailed after that on the net and I did not find anything specific about it, I found yes to Permission to delete system, update insert
could help me with this already my thank you
How to give Object permission Oracle 10G XE via CMD line
-
- Rank: Programador Sênior
- Posts: 67
- Joined: Tue, 08 Jan 2008 9:13 pm
- Location: são paulo
Eduardo Andrade
-
- Rank: Analista Sênior
- Posts: 153
- Joined: Thu, 01 Nov 2007 2:53 pm
- Location: Osasco
Eli Dias
Oracle Certified Professional
Oracle Certified Professional
Good afternoon,
You can grant these types of permissions through SQLPLUS.
See more information regarding the Grants of Objects in the document below
http://download.oracle.com/docs/cd/B193 ... SQLRF01603
Hugs,
You can grant these types of permissions through SQLPLUS.
See more information regarding the Grants of Objects in the document below
http://download.oracle.com/docs/cd/B193 ... SQLRF01603
Hugs,
-
- Rank: Programador Sênior
- Posts: 67
- Joined: Tue, 08 Jan 2008 9:13 pm
- Location: são paulo
Eduardo Andrade
vlw elidias7,
I did a small script for this
--- creating user in schema sysdba
99]] - giving permissions to the User Study
- VERNEOD Permission
I did a small script for this
--- creating user in schema sysdba
CREATE USER TESTE
IDENTIFIED BY TESTE
DEFAULT TABLESPACE USERS
TEMPORARY TABLESPACE TEMP
PROFILE DEFAULT
PASSWORD EXPIRE
ACCOUNT Lock
GRANT CREATE TABLE TO ESCOLA;
GRANT CREATE MATERIALIZED VIEW TO ESCOLA;
GRANT CREATE VIEW TO ESCOLA;
GRANT CREATE SESSION TO ESCOLA;
GRANT DEBUG CONNECT SESSION TO ESCOLA;
GRANT CREATE DATABASE LINK ESCOLA;
GRANT CREATE ANY PROCEDURE TO ESCOLA;
GRANT ALTER DATABASE TO ESCOLA;
GRANT CONNECT, RESOURCE TO ESCOLA
select * from dba_sys_privs where grantee = 'ESCOLA';
-
- Information
-
Who is online
Users browsing this forum: No registered users and 1 guest