Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: data dictionary view with all oracle errors in it?
oracle-l-bounce_at_freelists.org wrote on 07/28/2004 04:34:02 PM:
> What's wrong with
>
> with x as (select rownum r1 from all_objects where rownum < 10001)
> ,y as (select rownum r2 from all_objects where rownum < 51)
> select 'ora-' || lpad(rownum,5,'0') ora_num, sqlerrm(rownum) msg_text
> from x, y
> /
>
> Of course I am writing without testing (from home) ...
> Raj
It doesn't get all error messages.
It will likely fail due to non-existant error messages.
I'm not testing it either. :)
Jared
-- 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 Wed Jul 28 2004 - 18:39:58 CDT
![]() |
![]() |