Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

SOLVED

How to query a PostgreSQL table with upper case letter or column with upper case letter

Avatar

Level 3

Hi Team,

We encounter a external data base issues. The external data base table name with some upper case letters and also the column name. It seems that the DataLoading activity of workflow can not read these table. Just wonder if there is a workaround to solve this problem?

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

hi,

 

It's a known issue on PostgreSQL. You should change you column names to lowercase.

Alternatively, you can create a view with columns to lowercase letter but it's not the best solution compared to changing the column names itself in the table, as views will have performance impacts.

 

Thanks,

David  

View solution in original post

2 Replies

Avatar

Correct answer by
Community Advisor

hi,

 

It's a known issue on PostgreSQL. You should change you column names to lowercase.

Alternatively, you can create a view with columns to lowercase letter but it's not the best solution compared to changing the column names itself in the table, as views will have performance impacts.

 

Thanks,

David