If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > Oracle > create table error

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 01-28-03, 06:03
pappagone1 pappagone1 is offline
Registered User
 
Join Date: Jan 2003
Posts: 34
create table error

Hi Friends,

I'm trying to create a table with this command:

execute immediate 'create table aaa .........' ;

in a Package Body.

I receive the following error:

ORA-01031 Insufficient privileges

(ORACLE 9i)

What is the Problem?

Thank you in advance!
Reply With Quote
  #2 (permalink)  
Old 01-28-03, 06:07
remivisser remivisser is offline
Registered User
 
Join Date: Dec 2002
Location: Netherlands
Posts: 118
Explicit grant

Hi

You'll need an EXCPLICIT grant for the create table privilege:

SQL> GRANT CREATE TABLE TO <user_who_is_executing_procedure>

Good luck

Remi
__________________
Remi Visser

Oracle Database Administrator
(OCP certified 8i)

Homepage: http://home.remidian.com/
Reply With Quote
  #3 (permalink)  
Old 01-28-03, 06:18
pappagone1 pappagone1 is offline
Registered User
 
Join Date: Jan 2003
Posts: 34
Re: Explicit grant

Quote:
Originally posted by remivisser
Hi

You'll need an EXCPLICIT grant for the create table privilege:

SQL> GRANT CREATE TABLE TO <user_who_is_executing_procedure>

Good luck

Remi


------------------------
Many many tanks for you help to all my daily questions!

Gratefully
Pappagone
Reply With Quote
  #4 (permalink)  
Old 01-28-03, 06:19
remivisser remivisser is offline
Registered User
 
Join Date: Dec 2002
Location: Netherlands
Posts: 118
No worries!

You are very welcome!!
__________________
Remi Visser

Oracle Database Administrator
(OCP certified 8i)

Homepage: http://home.remidian.com/
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On