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