Re: PLS-00306: wrong number or types of arguments in call to '||'

From: Doron <doron_almog_at_msn.com>
Date: 1 Sep 2004 14:51:30 -0700
Message-ID: <995517bc.0409011351.7acdcc83_at_posting.google.com>


Wario,
thank you very much!

sergeant.rock_at_gmail.com (Wario) wrote in message news:<c75b43bb.0409010603.40a975ff_at_posting.google.com>...
> Try This:
>
> declare
> cursor u_tab is select table_name from user_tables;
>
> begin
> execute immediate 'create global temporary table temp_tab1 (
> col_count number)';
>
> for u_tab_rec in u_tab
> loop
> execute immediate 'insert into temp_tab1 select count(*) from
> ' || u_tab_rec.table_name;
>
> end loop;
> end;
Received on Wed Sep 01 2004 - 23:51:30 CEST

Original text of this message