I actually want create table script in oracle, for which I searched and found some SQL in below link, How can I generate (or get) a ddl script on an existing table in oracle? I have to re-create them in Hive
Which is as,
SQL> set long 100000
SQL> set head off
SQL> set echo off
SQL> set pagesize 0
SQL> set verify off
SQL> set feedback off
SQL> select dbms_metadata.get_ddl('TABLE', 'EMP') from dual
But after executing this in SQL CMD I am getting error as below,
ORA-24813: cannot send or receive an unsupported LOB
Please tell me how I can get the DDL