Is there a way to get column name and data type in a Teradata SQL Assistant 15.0
view?
In Oracle 11g
you can do something like desc tablename
and get a script result set of the following :
Name Null Type
test_id NOT NULL NUMBER(19)
test_name VARCHAR2(255)
test_department VARCHAR2(255)
test_year TIMESTAMP(6)
test_external_id NUMBER(10)
So far I've tried help view viewname
and the result provides all column names but the values for the data type are all nulls.