Feb 27, 2008 #1 Dagon MIS Jan 30, 2002 2,301 GB Has anyone tried using table/pipeline procedures with named parameters ? i.e. SELECT * FROM table(package.myproc(my_param=>'xxx')) I get the error ORA-00907, but it works if I remove the "my_param=>". It looks as if it's not supported. Database version is 9.2.0.6.0.
Has anyone tried using table/pipeline procedures with named parameters ? i.e. SELECT * FROM table(package.myproc(my_param=>'xxx')) I get the error ORA-00907, but it works if I remove the "my_param=>". It looks as if it's not supported. Database version is 9.2.0.6.0.
Feb 27, 2008 #2 jaxtell Programmer Sep 11, 2007 349 US My understanding is select statements do not support reference by name. Reference by location must be used. Upvote 0 Downvote
My understanding is select statements do not support reference by name. Reference by location must be used.