Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

SQL

create or replace directory toy_dir as '/path/to/file';

create table toys_ext (
  toy_name varchar2(100)
) organization external (
  default directory tmp
  location ('toys.csv')
);
Source by livesql.oracle.com #
 
PREVIOUS NEXT
Tagged: #SQL
ADD COMMENT
Topic
Name
4+7 =