Quiz 4 Flashcards

(17 cards)

1
Q

What does the GIS analysis process consist of?

A
  • Capture
  • Display
  • Storage
  • Analysis
  • Management
  • Retrieval
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are the three query operators?

A
  • Project
  • Restrict/Select
  • Join
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Project

A

π(some attribute) will call the instances of the selected attribute

e.g. πC where C can mean either East or West will pull a column of C: East, West

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Restrict/Select

A

O(some attribute) < or > (some value) will call the rows and columns that fit the specified value

e.g. oB>45 where all B values over 45 will be selected along with their related attributes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Join

A

Merge more than one table and combine identical values(?) to reduce data redundancy

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

SQL

A

Standard Query Language

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

SQL Domains

A

Limits on values of an attribute

e.g. True & False – any real number
Any string – >50
Any integer – R^2

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

CREATE DOMAIN

A

name type[default][constraints]

where [default] and [constraints] are optional

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Schemas

A
  • Tell us attributes in a table
  • Identify keys
  • Provide additional constraints (pp for example)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Select command

A

SELECT item-list
FROM table-list
[WHERE condition] (condition on the FEATURES)
[GROUP BY attribute-list]
[HAVING condition] (condition on the GROUPS)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

The select command CANNOT handle…

A

spatial queries

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

SQL’s abilities in ArcGIS Pro specifically are….

A

limited

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

LIMIT 0,10;

A

Limits inquiry result to 10 rows (Arc can’t read this format)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What kind of character is the % in ‘%School’?

A

A wildcard character; anything can be in place of the %, so it denotes anything in the database which ends with or contains “School”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

FEATURE_NA > ‘W’

A

Highlights anything W or after (alphabetically)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Arc seems to only accept “SELECT” FROM [table] WHERE pclause];” and….

A

nothing more complex than that

17
Q

HAVING N > 10

A

Selects by attributes again BUT on the output table from Summarize Attributes