Reputation: 17
How to view the procedures in Netezza?
In oracle , we can view with the help of below query.
select * from user_source where object_name=upper('PROC_NAME');
Upvotes: 1
Views: 6790
Reputation: 1043
Simple way to view procedure signature is -
DB.SCHEMA(USER)=> show procedure <procedure name>
Upvotes: 0
Reputation: 31
On the left panel where the databases are shown click the database, click stored procedures, right click on the procedure, click edit procedure and the procedure will be seen on the right panel
Upvotes: 0
Reputation: 3887
The Netezza equivalent would be:
SELECT * FROM _v_procedure WHERE procedure = 'PROC_NAME';
Upvotes: 4