Reputation: 5873
Is there any schema/table that describe precision and scale of a Number parameter of a Oracle procedure ?
Upvotes: 0
Views: 690
Reputation: 7793
The view USER_ARGUMENTS
contains the arguments for your stored procedures (plus ALL_ARGUMENTS
for those you have access to and DBA_ARGUMENTS
for every stored procedure/function in the database). The columns DATA_TYPE
, DATA_LENGTH
, DATA_PRECISION
, etc. are what you are looking for.
See here.
Upvotes: 3