Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

how to convert the Coloumns and table names into upper case....?


Hi Team ,

I have an issue Currently we are sourcing data from Oracle (CDW ) and all the column names are in the upper case , we have to switch over to Hadoop  as our source soon , and all the data has been scooped from CDW to Hadoop but in that process all the column names are converted to Lower case by Hive/ Hadoop.

How to convert the column names and table names into upper case...?

Please help us we are unable to covert those into upper case...

Thanks in Advance..

Regards

Anusha.

26 Replies
PrashantSangle

Hi,

Use Upper() in script and for column names in you can use alise name

try like'

Upper(fieldName) as FIELDNAME

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
ravindraa
Creator
Creator

HI Anusha,

   Using "Upper" keyword we can change the values lower case to uppercase.

Ex:

load

upper(Country) as Countrt

from DB_table;


jagan
Luminary Alumni
Luminary Alumni

Hi Anusha,

Check this link for easier process for renaming

How to Rename Fields

For renmaing fields using the Mapping table.

Regards,

Jagan.

nagarjuna_kotha
Partner - Specialist II
Partner - Specialist II

Hi Jagan,

We can solve this problem using>>> Upper() and Renaming

Ex :

Table:

Load

Upper(Emp) as EMP,

Upper(Region) as REGION

From.....

jagan
Luminary Alumni
Luminary Alumni

Hi,

Upper() will convert values in a column to upper case not the Column names.

Regards,

Jagan.

er_mohit
Master II
Master II

Hi Anusha,

Go to this link Field names turned in to uppercase automatically

hope it helps

Regards

Mohit

Anonymous
Not applicable
Author

Hi Anusha,

Try in this way:

Use Upper() in script for columns wich you want to convert into upper case

try like this

Upper(fieldName) as FIELDNAME

Not applicable
Author

Hi,

If u want to convert values into upper case use upper() or else if you want fieldname is upper just make it manual

Load Upper(field1) as FIELD1,

        Upper(field2) as FIELD2;

sql select field1,field2

from table;

Not applicable
Author

you can use upper() both in script and in labels for columns you need to rename