Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Re: Tricky SQL even possible?
michaeljc70_at_hotmail.com schrieb:
> The difference is I don't have write access to create
> functions/tables/types on this database.
You could use PL/SQL also in an anonymous block like
DECLARE
<vars and subfunctions>
BEGIN
<statements>
END;
/
using SQL*PLUS, so you need not store any Function.
Received on Wed Aug 10 2005 - 15:31:08 CDT