Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: SQLPlus & HTML page
"Finn Ellebaek Nielsen" <_remove_fen_remove__at_changegroup.dk> wrote in message
news:3e7f3754$0$42606$edfadb0f_at_dread11.news.tele.dk...
> > I'm using a PL/SQL procedure (using the htp package) to create a html page.
> > I have no problem viewing this page using SQL Navigator but when I execute
> > the same procedure from SQL Plus I cannot see this page, even if I spool it.
> > The spool is empty.
> > Would you know how I can see this page?
>
> I hate to reply with the obvious -- but why do you want to view HTML in SQL
> Navigator and SQL*Plus? I guess the point by creating the HTML page is to
> view it in the browser using Oracle HTTP Server or Oracle9iAS?
>
...but if you definitely want to see that page in SQL*Plus, the following template would be of use:
set serveroutput on
exec procedure_generating_html_through_HTx(...)
EXEC OWA_UTIL.SHOWPAGE
The showpage procedure will dump contents of the HTP
buffer through DBMS_OUTPUT and SQL*Plus will display
it. Unlike SQL Navigator, SQL*Plus is not aware of HTP
and has no internal support for it.
-- Vladimir Zakharychev (bob@dpsp-yes.com) http://www.dpsp-yes.com Dynamic PSP(tm) - the first true RAD toolkit for Oracle-based internet applications. All opinions are mine and do not necessarily go in line with those of my employer.Received on Mon Mar 24 2003 - 11:49:10 CST
![]() |
![]() |