This preview shows page 1 out of 2 pages.

Save
View full document
View full document
Premium Document
Do you want full access? Go Premium and unlock all 2 pages.
Access to all documents
Download any document
Ad free experience
Premium Document
Do you want full access? Go Premium and unlock all 2 pages.
Access to all documents
Download any document
Ad free experience

Unformatted text preview:

Querying Oracle from Client Applications Outline (1) Linking ArcView to external database engines o SQL Connect and Database connectivity extensions o Solving the MA population density problem (from the first lecture) o Mapping zoning variances (preview of Lab #5) (2) Creating 'pin maps' from tabular X/Y data (preview of Lab #5) o Event themes in ArcView o Converting lat/lon data - zoning and EPA envirofacts examples o Projecting zoning data to Mass State Plane coordinates MA Density Example <<Use SQL in Oracle to handle one-to-many problemsthat arise because the population total for each town isassociated with each of the polygons (such as Boston islands)that comprise a Massachusetts Town.>> sqlplusconnect zoning/xxxx <<examine selected columns from matowns2000, broughtinto Oracle by exporting from ArcView into INFO tableand using ArcInfo connection to Oracle>> describe matowns2000Name Null? Type ----------- -------- ---------------------------- AREA NUMBER(63) TOWN_ID NUMBER(38) TOWN VARCHAR2(21) POP80 NUMBER(38) POP90 NUMBER(38) POP_CH NUMBER(38) create view matown2000tot as select town_id, town, max(pop90) pop90, sum(area) area, 10000*max(pop90)/sum(area) pop_hectfrom matowns2000 where town_id > 0 group by town_id, town; <<pull this View into ArcView using SQL


View Full Document
Download Lecture Notes
Our administrator received your request to download this document. We will send you the file to your email shortly.
Loading Unlocking...
Login

Join to view Lecture Notes and access 3M+ class-specific study document.

or
We will never post anything without your permission.
Don't have an account?
Sign Up

Join to view Lecture Notes 2 2 and access 3M+ class-specific study document.

or

By creating an account you agree to our Privacy Policy and Terms Of Use

Already a member?