Mike Fielden
Mike Fielden

Reputation: 10153

Understanding a database schema

This should be a really simple question for any Oracle DBAs out there.

I just started on a new application and I asked to see the schema. I am not familiar with Oracle or its naming conventions at all. So I submit to you the following:

enter image description here

I'd like to know:

Upvotes: 3

Views: 453

Answers (1)

Thomas Erdman
Thomas Erdman

Reputation: 171

To answer you questions:

  1. The top two fields indicate the primary keys for the table
  2. Bolded fields are required ( NON-NULL ) fields
  3. "I" indicates that the columns are indexed
  4. "U" indicates that the columns have a unique key associated with them

Hope this helps.

Upvotes: 5

Related Questions