Creating an External Table
Basic Syntax) CREATE TABLE ( , …..) ORGANIZATION EXTERNAL (TYPE DEFAULT DIRECTORY ACCESS PARAMETERS ( … ) ) LOCATION ('') ) REJECT LIMIT [0 | | UNLIMITED]; ORGANIZATION EXTERNAL : The clause to create an external clause. In fact, you will not create an actual table in the database, instead you will create metadata in the data dictionary which can be used to access to the external table. The exte..