0

How to get list of stored procedures available in a namespace from an Intersystems Caché database using query?

2 Answers2

2
SELECT * FROM %Dictionary.CompiledMethod WHERE SqlProc = 1
Brandon Horst
  • 1,921
  • 16
  • 26
1

You should be able to query the table

%sql_dict.routine

to obtain the information you are looking for.

Stephen Canzano
  • 296
  • 1
  • 3