Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Q:PL/SQL How to create a File ..

Q:PL/SQL How to create a File ..

From: Ralf Bender <Ralf.Bender_at_wolnet.de>
Date: Sun, 5 Jul 1998 15:58:07 +0200
Message-ID: <359f8553.0@dns.wolnet.de>


Hallo *.*
Please help an Oracle Beginner.
Can someone tell me how to create a file with a PL/SQL script. Spool c:\test.txt will not work ??
Somebody told about utlfile.sql, but do not know how to use it.

It was nice if you can declare what you doing.

Here is what I want to do :
create or replace procedure do_update as iScan number;
iTempax number;
begin

    select count(*)
    into iScan
    from scan
    where to_date(timestamp,'dd.mm.yyyy') = to_date(sysdate,'dd.mm.yyyy');

    select count(*)
    into iTempax
    from Tempax;

    if iScan = iTempax then

            mailax2fibu;
    else

I work with Oracle8 on NT4.

bye
Ralf

mailto:Ralf.Bender_at_wolnet.de Received on Sun Jul 05 1998 - 08:58:07 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US