Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

ORA-04043: object does not exist

Albert ChaoOct 29 2021

CSV FILE CONTENT

portal,,
ex portal,,
,,
i_id,i_name,risk
1,a,aa
2,b,bb
3,c,cc
4,d,dd
5,e,ee
6,f,ff
7,g,gg
8,h,hh
9,i,ii
10,j,jj

CONTROL FILE CONTENT

options  ( 
  skip=4,
  PARALLEL=true,
  DIRECT=true
)
LOAD DATA
INFILE 'E:\sqlloader\testfile.csv'
APPEND
INTO TABLE LOADER_TAB
FIELDS TERMINATED BY ","
(
	i_id,
	i_name,
	risk
)

I am getting object does not exist but table name does exist in the schema system

select tab.owner, tab.STATUS
from dba_tables tab
where tab.TABLE_NAME = 'LOADER_TAB';

Also tried by giving scema_name.table_name but no luck.


options  ( 
  skip=4,
  PARALLEL=true,
  DIRECT=true
)
LOAD DATA
INFILE 'E:\sqlloader\testfile.csv'
APPEND
INTO TABLE SYSTEM.LOADER_TAB
FIELDS TERMINATED BY ","
(
	i_id,
	i_name,
	risk
)

Can someone help me on this I had searched for the answer and did all possible way but not getting the solution.

Comments
Post Details
Added on Oct 29 2021
2 comments
1,927 views