I want to store global data about a table.
I mean "global" in the scope of the table, not outside of it.
I mean data that only requires one storage place, and not a row on the table.
For example, comments, documentation, CLOB data, code to insert/read/delete
Is possible to do it? I do not want to store this data on a table row, because it is unique data, and I do not want to store it outside the table, because there will be no way to know that the data/code is uniquely related to this table.
Ideally, I would like to access that data/code as Tablename.Data or TableName.FunctionCall, as I would do with an object on other programing languages.