Skip to Content
Oracle PL/SQL for DBAs
book

Oracle PL/SQL for DBAs

by Arup Nanda, Steven Feuerstein
October 2005
Intermediate to advanced
454 pages
14h 44m
English
O'Reilly Media, Inc.
Content preview from Oracle PL/SQL for DBAs

Standardizing Object and Collection Names

After implementing table functions in several applications, I was alarmed to see the number of duplicate object and collection types I had implemented. For example, I had created these two objects:

    SQL> DESC experiment_results_o
     Name                                      Null?    Type
     ----------------------------------------- -------- ------
     SAMPLE_AMT                                         NUMBER

    SQL> DESC research_tallies_o
     Name                                      Null?    Type
     ----------------------------------------- -------- ------
     TALLY_TOTAL                                        NUMBER

And then rolled them up into collections with similar names—replacing the “_o” (underscore o) suffix with “_t”. This is just the simplest example of the clutter I created because I hadn’t focused on the database as a whole. I’ve since gone back and replaced the two objects with a single one like this:

    SQL> DESC number_o
     Name                                      Null?    Type
     ----------------------------------------- -------- ------
     COL1                                               NUMBER

I also have similar generic objects for other datatypes including several standard lengths of VARCHAR2 fields.

Another standard I follow is that my object names have “_o” appended while my collections (or tables) have “_t” appended. This allows me to discern quickly what type they are.

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Oracle Database 12c PL/SQL Programming

Oracle Database 12c PL/SQL Programming

Michael McLaughlin
Expert PL/SQL Practices for Oracle Developers and DBAs

Expert PL/SQL Practices for Oracle Developers and DBAs

John Beresniewicz, Adrian Billington, Martin Büchi, Melanie Caffrey, Ron Crisco, Lewis Cunningham, Dominic Delmolino, Sue Harper, Torben Holm, Connor McDonald, Arup Nanda, Stephan Petit, Michael Rosenblum, Robyn Sands, Riyaj Shamsudeen

Publisher Resources

ISBN: 0596005873Supplemental ContentErrata Page