Mark Heckman
Member
When I look at the source for a view in a schema other than mine it does not show column aliases.
I create a view in one schema like this:
create or replace view test_vw (col1) as
select col2 from test_tb
Now I login as a different user and look at the source of the view and I see something like:
create or replace view other_schema.test_vw as
select col2 from test_tb
When I retrieve data from the view, the column is properly aliased.
I found old posts in this forum identifying the same problem and responses indicating that the problem has been resolved.
I looked at the Support Info dialog of PL/SQL Developer and it shows:
PL/SQL Developer Version 7.0.3.1123 (MBCS)
OCI: version 9.2
Oracle9i Enterprise Edition Release 9.2.0.4.0
The database I am testing on is version 9.2.0.4.0.
Thanks in advance for any assistance,
Mark Heckman
I create a view in one schema like this:
create or replace view test_vw (col1) as
select col2 from test_tb
Now I login as a different user and look at the source of the view and I see something like:
create or replace view other_schema.test_vw as
select col2 from test_tb
When I retrieve data from the view, the column is properly aliased.
I found old posts in this forum identifying the same problem and responses indicating that the problem has been resolved.
I looked at the Support Info dialog of PL/SQL Developer and it shows:
PL/SQL Developer Version 7.0.3.1123 (MBCS)
OCI: version 9.2
Oracle9i Enterprise Edition Release 9.2.0.4.0
The database I am testing on is version 9.2.0.4.0.
Thanks in advance for any assistance,
Mark Heckman