0

I have several stored procedures in Teradata that I wish to label. Therefore, I'm looking for a way to add metadata to an object in Teradata. I've been looking into Teradata's Data Dictionary, but it seems the only way is to add labels as comments.

Is there a better way to tag, label and/or identify stored procedures in Teradata?

Frank
  • 93
  • 9

1 Answers1

1

Comment placement

comment on procedure <database_name>.<procedure_name> 'test procedure';

Comment retrieval

comment on procedure <database_name>.<procedure_name>;
access_granted
  • 1,807
  • 20
  • 25