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?
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
What are blobs?
Any file type attached
What are the 2 choices for the numbers field type?
- Real number (decimal)
How do you determine what field data falls under
How any parts to a query?
3
-field name - top of the table (ex. m3/ha)
-relational operator (=, less than, greater than.)
-value (ex. 400)
sumary ( m3/ha greater than 400 )
What is a complex query?
more than 1 criteria
How do you perform a complex query?
Using the word AND will specify that both criteria must be met
Using OR specifies that only one criteria must be met
Using NOT eliminates criteria
What is a boolean operator?
words like AND, OR and NOT to refine search
What things in GIS utilize database tables?
-attributes organized
-spatial data managed (can’t see it)
spatial data and attribute data are linked
In table relation, differentiate between primary and secondary key.