what pririvlege is requried to create lob table ? [message #612450] |
Fri, 18 April 2014 16:11 |
kesavansundaram
Messages: 183 Registered: October 2007 Location: MUMBAI
|
Senior Member |
|
|
Hi team,
i am trying to create below under one user. this user has only CREATE TABLE permission. what priv is additionally required ?
SQL> CREATE TABLE t1 (a CLOB)
2 LOB(a) STORE AS SECUREFILE(
3 COMPRESS LOW
4 CACHE
5 NOLOGGING
6 );
CREATE TABLE t1 (a CLOB)
*
ERROR at line 1:
ORA-01031: insufficient privileges
thank you
|
|
|
|
|
Re: what pririvlege is requried to create lob table ? [message #612474 is a reply to message #612452] |
Sat, 19 April 2014 08:45 |
kesavansundaram
Messages: 183 Registered: October 2007 Location: MUMBAI
|
Senior Member |
|
|
Hi Team,
Yes, I had given "create session" & "create table" privilege to that local user. I am able to create now. I did not do any change in permission now, but I am able to create it now. Thank you very for your time and assistance. ( My apologies for confusion )
SQL> create user u003 identified by "User123#";
User created.
SQL> grant connect,create table to u003;
Grant succeeded.
SQL> show user
USER is "U003"
SQL> CREATE TABLE t11 (a CLOB)
2 LOB(a) STORE AS SECUREFILE(
3 COMPRESS LOW
4 CACHE
5 NOLOGGING
6 );
Table created.
SQL> exit
Thanks again
|
|
|
|
|
|
|