Database Flashcards
What is a database?
Organized data, typically in tables
DBMS
Data base management system (paper, digital)
What is a record?
All of the information about an entity (species, class, volume, height)
What is a field?
A category of information arranged in a column (ID number, Name, Phone number, $ owed).
What is the primary key?
A unique ID (student number)
What is a table?
A set of info for each “subject” (contact info, academic record, accounts.)
What are some advantages of a database?
- Data stored independently of software
- Simple structure
- Redundancy minimized (consistent data)
- Reduced data errors (error checks)
- Easy to update (maintain data)
- ready access to data (Variety of people, uses)
- data security (restricted rights to view/edit) Students only can manipulate U drive in VIU database.
- Basic analysis is simple
What are some basic analysis methods
Sorting,
Searching,
Querying
What are the generic field types?
Text / string (character based data) - No math
-may contain numbers not used in calculations (ID number)
Numbers
-Integers or Real numbers
Differentiate between precision and scale
Precision is the number of digits. It is independent of decimals, can include “-“ and includes “0 placeholder if a fraction.”
Scale is the # of decimal places
What is the scale and precision of the following numbers 99 32000 0.0012 -123.15
99 - p2 s0
32000 p5 s0
0.0012 p5 s4
-123.15 p6 s2
Can you change the database once you create it in ArcGis?
No, so go big
What are the choices for integer in the number field?
short
long
What are the choices for the real number (decimal) field?
float
double
What field type for
- Stand label (FC 841) - Text
- Stand height (35.6) - Real number + float
- Site index (24) - Integer - short
- area - (12.3) - Real number - float
- area - (123,000) -Integer - long