How to get all the procedures in SQL in Sybase? (100分)

S

_Sql

Unregistered / Unconfirmed
GUEST, unregistred user!
I make a link to my database, then run the following SQLs:

Select name From sysobjects

But I only get all the procedures created by the users.
If I make a link to sybsystemprocs and run the following SQLs:

Select name From sysobjects
Where type = 'P'

I get all the system procedures.
How to get all the procedures at a link to my database?

thank you very much.

Regards,
_sql
 
顶部