Skip to Main Content
  • Questions
  • How much parameters can we passed to function.

Breadcrumb

Question and Answer

Chris Saxon

Thanks for the question, PRASHANT.

Asked: April 13, 2016 - 2:59 pm UTC

Last updated: April 13, 2016 - 3:15 pm UTC

Version: 11g

Viewed 10K+ times! This question is

You Asked

How many maximum no. of parameters can we pass to function
1- IN parameter count
2- OUT paramenter count
3- INOUT parameter count.

and Chris said...

As it says in the docs, the maximum number of parameters is 65,536:

http://docs.oracle.com/cd/E11882_01/appdev.112/e25519/limits.htm#LNPLS018

These can be in, out or in out. The limit applies across all types. i.e. you can't have 65,536 in and 65,536 out parameters. You could have 32,768 in and 32,768 out though.

Is this answer out of date? If it is, please let us know via a Comment