Support Questions

Find answers, ask questions, and share your expertise
Announcements
Check out our newest addition to the community, the Cloudera Data Analytics (CDA) group hub.

Check, if columns have the same data type

New Contributor

Hi All,

 

I am trying to automatise the testing of the data in Impala. Is there a way to check, if two columns from the different tables have the same data type? Currently we are doing this check manually, by

 

describe formatted a;

describe formatted b;

 

 

but I would like to see result in the way:

 

select 
case 
when a.type = b.type
then "TRUE"
else "FALSE"
end
from 
(describe formatted x.column1 as type) a,
(describe formatted y.column1 as type) b;

 

Can you please advise, if there is a way to implement second example? 

 

Thanks,

Anastasia

2 REPLIES 2

Champion

@laanajar

 

Just a thought...

 

For your use case, instead of try that in impala, you login to your metadata database (ex: mysql, postgresql, etc) where all your table name, column name, datatypes are stored 

 

Ex:

>mysql –u root –p

>use hive;

>show tables; 

 

Get the Metadata for your table and compare the datatype easily

 

There's no easy way to do this right now unfortunately. I agree it would be great if we exposed table metadata as system tables so you could use SQL to query metadata.

 

Take a Tour of the Community
Don't have an account?
Your experience may be limited. Sign in to explore more.