View previous topic :: View next topic |
Author |
Message |
zefrim Beginner
Joined: 29 Jun 2006 Posts: 22 Topics: 19
|
Posted: Fri Sep 19, 2008 3:52 am Post subject: DB2 V9 NFM - Lower case tables |
|
|
Hello
How can I determine whether in a DB2 system (Z-OS V.9 NFM)
Tables with lowercase letters are included.
I want to do this wiht only one SQL ?
Thank you
zefrim |
|
Back to top |
|
 |
jim haire Beginner
Joined: 30 Dec 2002 Posts: 140 Topics: 40
|
Posted: Fri Sep 19, 2008 8:12 am Post subject: |
|
|
Are you saying that you are looking for the names of tables that contain lower case letters?
I think this might work:
SELECT NAME FROM SYSIBM.SYSTABLES
WHERE NAME <> UCASE(NAME) |
|
Back to top |
|
 |
|
|