Hi Tim,
Greetings and thanks for your continued help to developer community of ORACLE.
I am connecting to 2 databases through a 10.1.0.4.2 Version of SQLPLUS.
1st Database runs with - 10.2.0.4 Patchset
2nd Database runs with - 10.2.0.1.0 Patchset
From both the Databases we are running a long query with columns using Decode funtions. We are not able to see the column names completely in the 1st DB i.e 10.2.0.4 Patchset. Whereas in 2nd DB - Version 10.2.0.1.0 - Its working properly. I am not sure whether here DB version is the problem. I have attached the screen shot of both the scenarios. Please see it .
This is the query i am firing from both DB's. Here in the 1st column with decode function doesnt prints the column heading in SQLPLUS. Please see the screen shot where i have selected and highlighted the same.
"
SELECT DECODE('ENG','ENG',A.PC_DESC,A.PC_DESC_BL)
FROM PCOM_CODES A, PCOM_CODES_APPL_CODES B
WHERE CAC_TYPE = 'VEH_CC_TYPE'
AND A.PC_TYPE = CAC_PC_TYPE_2
AND A.PC_CODE = B.CAC_PC_CODE_2
AND ROWNUM < =2
"
Is there any specific User specific or DB specific setting for such issues. We dont want to use any alias column names for
specific purpose to be handled with that column name.