Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
提供されたストアド プロシージャで定義されたパラメータのリストを取得する方法。データベースは Oracle 11g です。
使用する必要があるSQLステートメントは次のとおりです。
select argument_name, in_out, data_type from all_arguments where owner = 'schema_name' and package_name = 'package_name or null' and object_name = 'sp_name' order by position