Naming Conventions
Some of the typical naming conventions used for objects in Designer and the database.
oracle miscconfigurationintermediate
by OracleDba
15 views
Some of the typical naming conventions used for objects in Designer and the database.
1234567
APPLICATION
APPLICATION FUNCTION
APPLICATION FUNCTION ROLE
APPLICATIONS
APPLICATION_FUNCTIONS
APPLICATION_FUNCTION_ROLES12345
APPLICATIONS = APPL (4)
APPLICATION_FUNCTIONS = APFU (2:2)
APPLICATION_FUNCTION_ROLES = APFR (2:1:1)
APPLICATION_FUNCTION_ROLE_BANANAS = AFRB (1:1:1:1)
APPLICATION_FUNCTION_ROLE_BANANA_APPLES = (Do what you like!)12345678910111213141516
Table : APPLICATIONS
Primary Key: APPLICATIONS_PK
or
APPL_PK
Table : APPLICATIONS
Unique Key : APPLICATIONS_UK
or
APPL_UK
Relationship: APPLICATION_FUNCTIONS -> APPLICATIONS
Foreign Key : APFU_APPL_FK
APPLICATION_FUNCTIONS.APPLICATION_ID -> APPLICATIONS.ID
or
APPLICATION_FUNCTIONS.APPL_ID -> APPLICATIONS.ID12
Foreign Key : APFU_APPL_FK
Suporting Index: APFU_APPL_FK_I1234567
Table : APPLICATIONS
Action: BEFORE INSERT STATEMENT-LEVEL
Name : APPLICATION_BIS_TRG
Action: AFTER INSERT AND UPDATE ROW-LEVEL
Name : APPLICATION_AIUR_TRG12345678910
Check Constraints : <name>_CHK
Sequences : <name>_SEQ
Views : <name>_V
Materialized Views: <name>_MV
Types : <name>_T
Directories : <name>_DIR
External Tables : <name>_EXT
PL/SQL Packages : <name>_API
PL/SQL Procedures : <name>_PRC
PL/SQL Functions : <name>_FUN12345678
Package Global Variables: g_variable_name
Local Variables : l_variable_name
Types : t_type_name
Cursors : c_cursor_name
Exceptions : e_exception_name
Input Parameters : i_parameter_name
Outut Parameters : o_parameter_name
In/Out Parameters : io_parameter_name123
.pks – Package specification.
.pkb – Package body.
.sql – Everything else.Please to add comments
No comments yet. Be the first to comment!