Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
I presume that by "testing" you mean you want to "see" what results from an Oracle VIEW.Makk said:...how to do manual testing of oracle 9i views
(format)
SQL> describe <owner>.<view name>
(example)
SQL> desc test.emp_view
Name Null? Type
----------------------------------------- -------- ------------
LAST_NAME NOT NULL VARCHAR2(25)
SALARY NUMBER(11,2)
(format)
SELECT <owner>.<view name>;
(example)
SQL> select * from test.emp_view;
LAST_NAME SALARY
------------------------- ----------
Velasquez 2500
Ngao 1450
Nagayama 1400
...