Add metadata tag to teradata objects

75 Views Asked by At

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?

1

There are 1 best solutions below

0
access_granted On

Comment placement

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

Comment retrieval

comment on procedure <database_name>.<procedure_name>;