Issue in running a Proc - Oracle PL/SQL

牧云@^-^@ 提交于 2020-02-23 04:19:24

问题


I created a proc in Oracle db from a sql query as below:-

CREATE OR REPLACE PROCEDURE getTableDetails(
       p_tablename IN table_info.table_name%TYPE,
       o_owner OUT table_info.owner%TYPE,
       o_table_name OUT  table_info.table_name%TYPE,
       o_num_rows OUT table_info.num_rows%TYPE,
       o_num_cols OUT table_info.num_cols%TYPE,
       o_columnlist OUT table_info.columnlist%TYPE,
       o_keycolumns OUT table_info.keycolumns%TYPE,
       )
IS
BEGIN

with tableinfo as
(select 
    t.owner, 
    t.table_name, 
    t.num_rows,
    count(*) as num_cols,
    listagg(c.column_name, ',') within group (order by c.column_name) as columnlist
  from all_tables t
  join all_tab_columns c on c.owner = t.owner and c.table_name = t.table_name
  group by t.owner, t.table_name, t.num_rows
)
, pkinfo as
(
  select
    c.owner,
    c.table_name,
    listagg(cc.column_name, ',') within group (order by cc.position) as keycolumns
  from all_constraints c
  join all_cons_columns cc on cc.owner = c.owner and cc.constraint_name = c.constraint_name   
  where c.constraint_type = 'P'
  group by c.owner, c.table_name
)
select owner,table_name,num_rows,num_cols,columnlist,keycolumns
into o_owner,o_table_name,o_num_rows,o_num_cols,o_columnlist,o_keycolumns
from tableinfo t
left join pkinfo pk using (owner, table_name)
where table_name = p_tablename
order by t.num_rows desc;

END;
/

When I try to execute this:-

EXECUTE getTableDetails('ABC_TABLE');

I am getting an invalid SQL error:-

 [Error Code: 900, SQL State: 42000]  ORA-00900: invalid SQL statement

Could you please help me troubleshoot this? The query for this is giving me results.

Thanks,


回答1:


I'm trying this in Oracle 11g XE and it doesn't compile because:
1-You have a "comma" after the last parameter.
2-Parameters cann't refer to types inside procedure.

Note: some IDEs don't accept blank lines.



来源:https://stackoverflow.com/questions/60346714/issue-in-running-a-proc-oracle-pl-sql

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!