1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
test_schema@OR11203> create table EXTERNAL_TABLE1(
ID number,
VAL number
)
organization external(
type oracle_loader
default directory EXTERNAL_TABLES_DIR
access parameters(
records delimited by newline
nobadfile
nologfile
fields terminated by ','
missing field values are null
)
location ('external_table1')
)
reject limit 0
/
Table créée.
test_schema@OR11203> select * from EXTERNAL_TABLE1;
ID VAL
---------- ----------
1 2
3 4
test_schema@OR11203> LOCK TABLE EXTERNAL_TABLE1 IN EXCLUSIVE MODE NOWAIT;
Table(s) verrouillée(s). |
Partager