select index_name, table_name from user_ind_columns where index_name='A18008_IX1'; INDEX_NAME TABLE_NAME -------------------------- ------------------------------ A18008_IX1 LAKES
col owner format a12 col index_name format a10 col index_name format a15 col grid format a25 select owner, table_name, index_name,grid from sde.st_geometry_index where index_name='A18008_IX1'; OWNER TABLE_NAME INDEX_NAME GRID(GRID1, GRID2, GRID3) ------------ ---------- --------------- ------------------------- SDECREATOR LAKES A18008_IX1 SP_GRID_INFO(8, 0, 0)
CREATE DIRECTORY dmpdir AS '/opt/oracle'; GRANT read, write ON DIRECTORY dmpdir TO map;
expdp sdecreator/sdecreator DIRECTORY=dmpdir DUMPFILE=temp.dmp TABLES='LAKES'
Hi,
i had the same problem with Oracle 11gR2 (11.2.0.3) on AIX environment.
my environment has strict security database implimentation.
you need first to grant the permission to the oracle account having these domain index problems, you may refer to: Underlying DBMS error[ORA-29902: error in executing ODCIIndexStart() routine ORA-01031: insufficient...
Then try to rebuild the domain indexes (it will work):
select 'alter index ' || OWNER || '.'||INDEX_NAME|| ' rebuild ;' from all_indexes where owner='ORACLE_USER' and INDEX_TYPE='DOMAIN';
Hi,
I faced very similar problem (*) during oracle expdp from Oracle 19 database but above hint didn't help me.
Even excluding that index from expdp resolve the issue. Only dropping from the database (but I can't do it in the production environment).
Does someone have any suggestion?
Thanks
Lorenzo
(*)
ORA-39127: unexpected error from call to status := SYS.DBMS_EXPORT_EXTENSION.GET_V2_DOMAIN_INDEX_TABLES('A164_IX1','SDE','ST_DOMAIN_METHODS','SDE',0,'19.15.00.00.00',1,0)
ORA-01422: exact fetch returns more than requested number of rows