oracle indextype-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 3977571
  • 博文数量: 536
  • 博客积分: 10470
  • 博客等级: 上将
  • 技术积分: 4825
  • 用 户 组: 普通用户
  • 注册时间: 2006-05-26 14:08
文章分类

全部博文(536)

文章存档

2024年(3)

2021年(1)

2019年(1)

2017年(1)

2016年(2)

2013年(2)

2012年(10)

2011年(43)

2010年(10)

2009年(17)

2008年(121)

2007年(252)

2006年(73)

相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: oracle

2007-03-14 17:51:26

create index salary_index on employees(salary)
   indextype is position_indextype;

ora-29855: error occurred in the execution of odciindexcreate routine
ora-01031: insufficient privileges
ora-06512: at "usergan.type_name", line 1

 static function odciindexcreate (ia sys.odciindexinfo, parms varchar2, env sys.odcienv) return number
  is
   stmt   varchar2(2000);
  begin
   -- construct the sql statement
   stmt := 'create table ' || ia.indexschema || '.' || ia.indexname ||
           '_storage_tab' || '(col_val, base_rowid, constraint pk primary key ' ||
           '(col_val, base_rowid)) organization index as select ' ||
           ia.indexcols(1).colname || ', rowid from ' ||
           ia.indexcols(1).tableschema || '.' || ia.indexcols(1).tablename;

   execute immediate stmt;
   return odciconst.success;
  end;

the user i set it "connect, resource" privileges.
find more information about the error, i have not found it.
set the create user with dba privilege, and the also is error ora-01031.
the last time i find it, must set create any table privilege.

if you want learn more about indextype, see oracle document about "using extensible index", or use google find more.
阅读(1462) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图