create directory test as 'D:/';
grant read,write on directory test to public;
create table test
(id varchar2(3),
last_name varchar2(50),
salary number
)
organization external
( default directory test
access parameters
(
fields terminated by ','
)
location ('c.txt')
)
grant read,write on directory test to public;
create table test
(id varchar2(3),
last_name varchar2(50),
salary number
)
organization external
( default directory test
access parameters
(
fields terminated by ','
)
location ('c.txt')
)
কোন মন্তব্য নেই:
একটি মন্তব্য পোস্ট করুন