I have a DB with multiple oracle schemas in which the client account must be varchar (50) in all schemas. Therefore, I would like to assign a new name to varchar (50), such as MYCLIENT, such that in the whole table, sp and functions, I just use MYCLIENT to define the field, parameter, etc., to avoid misunderstandings.
1 - How to define a new type in Oracle (Simplest Method)
2 - Where to define it (schema, package, DB, ..) in accordance with best practices?
thanks a lot
source share