I want to extract the data from 400 tables. how to extract the data with a single command using sqlplus.
example table name
EMPLOYEE
STUDENT
.....
SCHOOL_NAME
example table structure
EMPLOYEE ( NAME VARCHAR(255), AGE VARCHAR(255))
STUDENT (NAME VARCHAR(255), AGE VARCHAR(255), SEX VARCHAR(255))
SCHOOL_NAME (SCHOOL VARCHAR(255), LOCATION VARCHAR(255))
if i'm using a sqlplus with a delimiter format, it would be so many command that i've to create, if there is another simple command, please share..
Note : every table has a different column name