<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: PL/SQL Variables replacing table name in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229680#M890629</link>
    <description>Sure,&lt;BR /&gt;&lt;BR /&gt;my tablename is not known at runtime, so that I need to gather it from another table.&lt;BR /&gt;&lt;BR /&gt;The tablename extracted will be driving a cursor.&lt;BR /&gt;&lt;BR /&gt;Basically I need to define something like:&lt;BR /&gt;&lt;BR /&gt;DECLARE&lt;BR /&gt;&lt;BR /&gt;CURSOR myown_crs IS SELECT MYOWNFLD FROM &amp;amp;&amp;amp;TABLENAME;&lt;BR /&gt;&lt;BR /&gt;BEGIN&lt;BR /&gt;&amp;lt;&lt;MYOWNLOOP&gt;&amp;gt;&lt;BR /&gt;LOOP&lt;BR /&gt;FETCH myown_crs INTO MYOWNFLDVAR;&lt;BR /&gt;...&lt;BR /&gt;END LOOP;&lt;BR /&gt;CLOSE myown_crs;&lt;BR /&gt;END;&lt;BR /&gt;/&lt;BR /&gt;&lt;BR /&gt;I don't know the tablename. Could I execute immediate the FETCH statement ?&lt;BR /&gt;&lt;BR /&gt;Thanks !&lt;BR /&gt;&lt;BR /&gt;Mike&lt;/MYOWNLOOP&gt;</description>
    <pubDate>Wed, 31 Mar 2004 17:34:02 GMT</pubDate>
    <dc:creator>Michele (Mike) Alberton</dc:creator>
    <dc:date>2004-03-31T17:34:02Z</dc:date>
    <item>
      <title>PL/SQL Variables replacing table name</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229664#M890613</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I would like to run a select from tablevar where....&lt;BR /&gt;&lt;BR /&gt;Now the table_name is not known in advance so that I would like to use a variable to store the table name.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Using shell language, I would like to have something like:&lt;BR /&gt;&lt;BR /&gt;select * from $tablename where....&lt;BR /&gt;&lt;BR /&gt;How can I do that ?&lt;BR /&gt;&lt;BR /&gt;Thanks !&lt;BR /&gt;&lt;BR /&gt;Mike</description>
      <pubDate>Thu, 25 Mar 2004 09:19:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229664#M890613</guid>
      <dc:creator>Michele (Mike) Alberton</dc:creator>
      <dc:date>2004-03-25T09:19:21Z</dc:date>
    </item>
    <item>
      <title>Re: PL/SQL Variables replacing table name</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229665#M890614</link>
      <description>Using the shell&lt;BR /&gt;&lt;BR /&gt;#!/bin/ksh&lt;BR /&gt;&lt;BR /&gt;sqlplus -s $login/$password@$ORACLE_SID &amp;lt;&amp;lt; EOF &amp;gt;&amp;gt; $LOG&lt;BR /&gt;select * from $table where ....&lt;BR /&gt;EOF&lt;BR /&gt;&lt;BR /&gt;in a sql script&lt;BR /&gt;select * from &amp;amp;1 where ....</description>
      <pubDate>Thu, 25 Mar 2004 09:32:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229665#M890614</guid>
      <dc:creator>Nicolas Dumeige</dc:creator>
      <dc:date>2004-03-25T09:32:45Z</dc:date>
    </item>
    <item>
      <title>Re: PL/SQL Variables replacing table name</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229666#M890615</link>
      <description>I understand but if I do this:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;SELECT TABLE_NAME INTO TABLEVAR FROM ALL_ALL_TABLES WHERE...&lt;BR /&gt;&lt;BR /&gt;if I want to use TABLEVAR to reference the table I'm interested in, how can I run &lt;BR /&gt;&lt;BR /&gt;SELECT * FROM TABLEVAR WHERE.... ?&lt;BR /&gt;&lt;BR /&gt;How can I reference TABLEVAR without passing externally the value to &amp;amp;1 ?&lt;BR /&gt;&lt;BR /&gt;Thanks !&lt;BR /&gt;&lt;BR /&gt;Mike</description>
      <pubDate>Thu, 25 Mar 2004 09:37:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229666#M890615</guid>
      <dc:creator>Michele (Mike) Alberton</dc:creator>
      <dc:date>2004-03-25T09:37:28Z</dc:date>
    </item>
    <item>
      <title>Re: PL/SQL Variables replacing table name</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229667#M890616</link>
      <description>One way is to create a function or procedure with the tablename for parameter.&lt;BR /&gt;&lt;BR /&gt;If you can program in PLSQL this is not a big deal.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Jean-Luc</description>
      <pubDate>Thu, 25 Mar 2004 09:45:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229667#M890616</guid>
      <dc:creator>Jean-Luc Oudart</dc:creator>
      <dc:date>2004-03-25T09:45:09Z</dc:date>
    </item>
    <item>
      <title>Re: PL/SQL Variables replacing table name</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229668#M890617</link>
      <description>SQL*Plus can help you : &lt;BR /&gt;&lt;BR /&gt;col table_name new_value my_table&lt;BR /&gt;&lt;BR /&gt;-- This one put the table name in my_table&lt;BR /&gt;SELECT table_name FROM tabs WHERE your_condition;&lt;BR /&gt;&lt;BR /&gt;-- This one do the job&lt;BR /&gt;SELECT * from &amp;amp;my_table;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 25 Mar 2004 10:04:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229668#M890617</guid>
      <dc:creator>Nicolas Dumeige</dc:creator>
      <dc:date>2004-03-25T10:04:58Z</dc:date>
    </item>
    <item>
      <title>Re: PL/SQL Variables replacing table name</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229669#M890618</link>
      <description>use DBMS_SQL package. &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 25 Mar 2004 11:35:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229669#M890618</guid>
      <dc:creator>Steve Bear_1</dc:creator>
      <dc:date>2004-03-25T11:35:52Z</dc:date>
    </item>
    <item>
      <title>Re: PL/SQL Variables replacing table name</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229670#M890619</link>
      <description>Thanks to all, I'm going to practice a little bit more with DBMS_SQL package.&lt;BR /&gt;&lt;BR /&gt;Cheers&lt;BR /&gt;&lt;BR /&gt;Mike</description>
      <pubDate>Fri, 26 Mar 2004 04:25:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229670#M890619</guid>
      <dc:creator>Michele (Mike) Alberton</dc:creator>
      <dc:date>2004-03-26T04:25:43Z</dc:date>
    </item>
    <item>
      <title>Re: PL/SQL Variables replacing table name</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229671#M890620</link>
      <description>Example:&lt;BR /&gt;SQL&amp;gt;select * from &amp;amp;table;&lt;BR /&gt;SQL&amp;gt;save ex01&lt;BR /&gt;SQL&amp;gt;@ex01&lt;BR /&gt;&lt;BR /&gt;The system will prompt for the table name.&lt;BR /&gt;&lt;BR /&gt;sks&lt;BR /&gt;</description>
      <pubDate>Fri, 26 Mar 2004 04:41:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229671#M890620</guid>
      <dc:creator>Sanjay Kumar Suri</dc:creator>
      <dc:date>2004-03-26T04:41:21Z</dc:date>
    </item>
    <item>
      <title>Re: PL/SQL Variables replacing table name</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229672#M890621</link>
      <description>The following should put you on the right track.  I wouldn't use DBMS_SQL unless you have to.  'Execute immediate' was introduced in 8i, and works well for this sort of thing.  If you are still on 8.0, then you will need to use DBMS_SQL.&lt;BR /&gt;&lt;BR /&gt;--------------------&lt;BR /&gt;set serveroutput on&lt;BR /&gt;declare&lt;BR /&gt;tablename varchar2(20) := 'tableA';&lt;BR /&gt;sqlstatement varchar2(100);&lt;BR /&gt;tempvar varchar2(10);&lt;BR /&gt;begin&lt;BR /&gt;sqlstatement:='select count(*) from '||tablename;&lt;BR /&gt;execute immediate sqlstatement into tempvar;&lt;BR /&gt;dbms_output.put_line('Tempvar '||tempvar);&lt;BR /&gt;end;&lt;BR /&gt;/&lt;BR /&gt;-----------------&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;&lt;BR /&gt;Brian</description>
      <pubDate>Mon, 29 Mar 2004 18:22:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229672#M890621</guid>
      <dc:creator>Brian Crabtree</dc:creator>
      <dc:date>2004-03-29T18:22:42Z</dc:date>
    </item>
    <item>
      <title>Re: PL/SQL Variables replacing table name</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229673#M890622</link>
      <description>Thanks Brian,&lt;BR /&gt;&lt;BR /&gt;that's definitely what I was looking for, nice and easy.&lt;BR /&gt;&lt;BR /&gt;I appreciated !&lt;BR /&gt;&lt;BR /&gt;Mike</description>
      <pubDate>Tue, 30 Mar 2004 02:23:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229673#M890622</guid>
      <dc:creator>Michele (Mike) Alberton</dc:creator>
      <dc:date>2004-03-30T02:23:12Z</dc:date>
    </item>
    <item>
      <title>Re: PL/SQL Variables replacing table name</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229674#M890623</link>
      <description>Hi !&lt;BR /&gt;&lt;BR /&gt;Just another question, that works ok for select statement, what if I have to declare a cursor referencing a table that way ?&lt;BR /&gt;&lt;BR /&gt;Thanks !&lt;BR /&gt;&lt;BR /&gt;Mike</description>
      <pubDate>Tue, 30 Mar 2004 02:57:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229674#M890623</guid>
      <dc:creator>Michele (Mike) Alberton</dc:creator>
      <dc:date>2004-03-30T02:57:04Z</dc:date>
    </item>
    <item>
      <title>Re: PL/SQL Variables replacing table name</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229675#M890624</link>
      <description>Look for dynamic cursor, you find a lot a stuff on this.&lt;BR /&gt;&lt;BR /&gt;For instance : &lt;A href="http://www.unix.org.ua/orelly/oracle/bipack/ch02_01.htm" target="_blank"&gt;http://www.unix.org.ua/orelly/oracle/bipack/ch02_01.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.unix.org.ua/orelly/oracle/advprog/ch11_05.htm" target="_blank"&gt;http://www.unix.org.ua/orelly/oracle/advprog/ch11_05.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 30 Mar 2004 03:03:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229675#M890624</guid>
      <dc:creator>Nicolas Dumeige</dc:creator>
      <dc:date>2004-03-30T03:03:48Z</dc:date>
    </item>
    <item>
      <title>Re: PL/SQL Variables replacing table name</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229676#M890625</link>
      <description>Hi Mike,&lt;BR /&gt;&lt;BR /&gt;find an example script that uses dynamic SQL&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Jean-Luc</description>
      <pubDate>Tue, 30 Mar 2004 03:26:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229676#M890625</guid>
      <dc:creator>Jean-Luc Oudart</dc:creator>
      <dc:date>2004-03-30T03:26:42Z</dc:date>
    </item>
    <item>
      <title>Re: PL/SQL Variables replacing table name</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229677#M890626</link>
      <description>Hi Mike,&lt;BR /&gt;&lt;BR /&gt;My dynamic SQL&lt;BR /&gt;&lt;BR /&gt;declare&lt;BR /&gt; ojn varchar2(100);&lt;BR /&gt; dml_str VARCHAR2(200);&lt;BR /&gt; t_count number;&lt;BR /&gt; t_name varchar2(30);&lt;BR /&gt; CURSOR c1 IS&lt;BR /&gt; SELECT table_name FROM user_tables WHERE   temporary &amp;lt;&amp;gt; 'Y';&lt;BR /&gt;BEGIN&lt;BR /&gt;open c1;&lt;BR /&gt;loop&lt;BR /&gt;fetch  c1 into ojn;&lt;BR /&gt;exit when c1%NOTFOUND;&lt;BR /&gt;dml_str := 'select *  from  '||ojn  ||' ';&lt;BR /&gt;execute immediate dml_str into t_count;&lt;BR /&gt;dbms_output.put_line(ojn || ' Have ' || t_count || ' records');&lt;BR /&gt;END LOOP;&lt;BR /&gt;end;&lt;BR /&gt;/&lt;BR /&gt;</description>
      <pubDate>Wed, 31 Mar 2004 00:55:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229677#M890626</guid>
      <dc:creator>Printaporn_1</dc:creator>
      <dc:date>2004-03-31T00:55:31Z</dc:date>
    </item>
    <item>
      <title>Re: PL/SQL Variables replacing table name</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229678#M890627</link>
      <description>Thanks to all,&lt;BR /&gt;&lt;BR /&gt;it looks good, my only concern is that I need to define the initial cursor with a variable, so that I think the only way would be to use DBMS_SQL. In most of your examples the cursor driving the LOOP does not include any variable, but in my case that's the issue.&lt;BR /&gt;&lt;BR /&gt;Thanks a lot folks, now I'm definitely in better shape.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;Mike&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 31 Mar 2004 01:42:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229678#M890627</guid>
      <dc:creator>Michele (Mike) Alberton</dc:creator>
      <dc:date>2004-03-31T01:42:27Z</dc:date>
    </item>
    <item>
      <title>Re: PL/SQL Variables replacing table name</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229679#M890628</link>
      <description>Mike,  &lt;BR /&gt;&lt;BR /&gt;List out an idea of what you are looking for.  Is the list of tables going to come from another table or view, and the variable is going to be used from there?  &lt;BR /&gt;&lt;BR /&gt;Give a quick outline of what you are looking for.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;&lt;BR /&gt;brian</description>
      <pubDate>Wed, 31 Mar 2004 16:53:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229679#M890628</guid>
      <dc:creator>Brian Crabtree</dc:creator>
      <dc:date>2004-03-31T16:53:54Z</dc:date>
    </item>
    <item>
      <title>Re: PL/SQL Variables replacing table name</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229680#M890629</link>
      <description>Sure,&lt;BR /&gt;&lt;BR /&gt;my tablename is not known at runtime, so that I need to gather it from another table.&lt;BR /&gt;&lt;BR /&gt;The tablename extracted will be driving a cursor.&lt;BR /&gt;&lt;BR /&gt;Basically I need to define something like:&lt;BR /&gt;&lt;BR /&gt;DECLARE&lt;BR /&gt;&lt;BR /&gt;CURSOR myown_crs IS SELECT MYOWNFLD FROM &amp;amp;&amp;amp;TABLENAME;&lt;BR /&gt;&lt;BR /&gt;BEGIN&lt;BR /&gt;&amp;lt;&lt;MYOWNLOOP&gt;&amp;gt;&lt;BR /&gt;LOOP&lt;BR /&gt;FETCH myown_crs INTO MYOWNFLDVAR;&lt;BR /&gt;...&lt;BR /&gt;END LOOP;&lt;BR /&gt;CLOSE myown_crs;&lt;BR /&gt;END;&lt;BR /&gt;/&lt;BR /&gt;&lt;BR /&gt;I don't know the tablename. Could I execute immediate the FETCH statement ?&lt;BR /&gt;&lt;BR /&gt;Thanks !&lt;BR /&gt;&lt;BR /&gt;Mike&lt;/MYOWNLOOP&gt;</description>
      <pubDate>Wed, 31 Mar 2004 17:34:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229680#M890629</guid>
      <dc:creator>Michele (Mike) Alberton</dc:creator>
      <dc:date>2004-03-31T17:34:02Z</dc:date>
    </item>
    <item>
      <title>Re: PL/SQL Variables replacing table name</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229681#M890630</link>
      <description>So far I bypassed the issue getting first the tablename through sqlplus and then passing it as an external variable to PL/SQL, but it's definitely not very elegant.&lt;BR /&gt;&lt;BR /&gt;Mike</description>
      <pubDate>Wed, 31 Mar 2004 17:36:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229681#M890630</guid>
      <dc:creator>Michele (Mike) Alberton</dc:creator>
      <dc:date>2004-03-31T17:36:22Z</dc:date>
    </item>
    <item>
      <title>Re: PL/SQL Variables replacing table name</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229682#M890631</link>
      <description>Try this out:  &lt;BR /&gt;--------------------&lt;BR /&gt;create or replace procedure tmpproc(tblname varchar2) as&lt;BR /&gt;type tblcur_type is REF CURSOR;&lt;BR /&gt;tblcur tblcur_type;&lt;BR /&gt;tmpvar varchar2(100);&lt;BR /&gt;sqlstatement varchar2(100);&lt;BR /&gt;begin&lt;BR /&gt;sqlstatement:='select field from '||tblname;&lt;BR /&gt;open tblcur for sqlstatement;&lt;BR /&gt;loop&lt;BR /&gt;   fetch tblcur into tmpvar;&lt;BR /&gt;   exit when tblcur%notfound;&lt;BR /&gt;   dbms_output.put_line(tmpvar);&lt;BR /&gt;end loop;&lt;BR /&gt;close tblcur;&lt;BR /&gt;end;&lt;BR /&gt;/&lt;BR /&gt;------------&lt;BR /&gt;Most likely, another procedure would be needed for this as well.  One to output the table name into the procedure, and this one to do the extra work.  Probably easier than trying to do two things in the same procedure.  &lt;BR /&gt;&lt;BR /&gt;Let me know if this helps.  &lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;&lt;BR /&gt;Brian</description>
      <pubDate>Thu, 01 Apr 2004 03:19:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229682#M890631</guid>
      <dc:creator>Brian Crabtree</dc:creator>
      <dc:date>2004-04-01T03:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: PL/SQL Variables replacing table name</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229683#M890632</link>
      <description>Cool stuff Brian,&lt;BR /&gt;&lt;BR /&gt;I've never used the OPEN FOR statement, it looks interesting. Let me play with it and let you know.&lt;BR /&gt;&lt;BR /&gt;Thanks !&lt;BR /&gt;&lt;BR /&gt;Mike</description>
      <pubDate>Thu, 01 Apr 2004 04:18:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pl-sql-variables-replacing-table-name/m-p/3229683#M890632</guid>
      <dc:creator>Michele (Mike) Alberton</dc:creator>
      <dc:date>2004-04-01T04:18:55Z</dc:date>
    </item>
  </channel>
</rss>

