I am encountering a very strange problem....when I create the following query in SQL Plus
SELECT * FROM USER_OBJECTS;
then only the records under the OBJECT_NAME column get displayed; the rest of the columns simply get ignored!!! Why is this happening? If I change the query to
SELECT OBJECT_NAME,OBJECT_ID,OBJECT_TYPE FROM USER_OBJECTS;
then again only the records under the OBJECT_NAME column get displayed but if I change the query to
SELECT OBJECT_ID,OBJECT_TYPE,OBJECT_NAME FROM USER_OBJECTS;
then the records of all the 3 columns get displayed!! If the query is changed to
SELECT OBJECT_ID,OBJECT_NAME,OBJECT_TYPE FROM USER_OBJECTS;
then only the records under the OBJECT_ID & OBJECT_NAME columns get displayed!!! Can someone throw some light on this erratic behaviour?
Thanks,
Arpan
SELECT * FROM USER_OBJECTS;
then only the records under the OBJECT_NAME column get displayed; the rest of the columns simply get ignored!!! Why is this happening? If I change the query to
SELECT OBJECT_NAME,OBJECT_ID,OBJECT_TYPE FROM USER_OBJECTS;
then again only the records under the OBJECT_NAME column get displayed but if I change the query to
SELECT OBJECT_ID,OBJECT_TYPE,OBJECT_NAME FROM USER_OBJECTS;
then the records of all the 3 columns get displayed!! If the query is changed to
SELECT OBJECT_ID,OBJECT_NAME,OBJECT_TYPE FROM USER_OBJECTS;
then only the records under the OBJECT_ID & OBJECT_NAME columns get displayed!!! Can someone throw some light on this erratic behaviour?
Thanks,
Arpan