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

Home -> Community -> Mailing Lists -> Oracle-L -> Re: &^@#%$@#%$ stinkin' oracle7 database

Re: &^@#%$@#%$ stinkin' oracle7 database

From: Barbara Baker <barbarabbaker_at_yahoo.com>
Date: Fri, 7 May 2004 13:13:31 -0700 (PDT)
Message-ID: <20040507201331.7140.qmail@web50402.mail.yahoo.com>


Matt:
doesn't need to be pro*c -- you can do it with pl/sql.  I believe this will work:



create or replace procedure LOAD_T_SCN is cursor c0 is
        select rowid,
        SCN_DATA
        from SCN;

begin
for c1 in c0 loop
        update T_SCN
        set     T_SCN_DATA =c1.SCN_DATA
        where rowid = c1.rowid;

end loop;
end;

I have a note to myself that the long needs to be <= 2000 characters, so I hope yours is. Can't remember why I have this note . . .

Good luck!
Barb


Do you Yahoo!?
Win a $20,000 Career Makeover at Yahoo! HotJobs http://hotjobs.sweepstakes.yahoo.com/careermakeover

Please see the official ORACLE-L FAQ: http://www.orafaq.com

To unsubscribe send email to: oracle-l-request_at_freelists.org put 'unsubscribe' in the subject line.
--
Archives are at http://www.freelists.org/archives/oracle-l/
FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html
-----------------------------------------------------------------
Received on Fri May 07 2004 - 15:10:58 CDT

Original text of this message

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