relational database concepts

112
Page 1 ORACLE NOTES

Upload: khangminh22

Post on 24-Feb-2023

1 views

Category:

Documents


0 download

TRANSCRIPT

Page 1

ORACLE NOTES

Page 2

Relational Database Concepts

Considerations in Setting Up a Database Application This chapter begins with a simple database application involving office furniture. It shows how data relevant to the application is set up in a relational database, and it provides several sample tables. After examining this simple example, we look at the basic concepts for setting up and interacting with a relational database. This discussion takes you step by step through the process of designing a database application. The following concepts will be discussed.

♦ = Data Modeling ♦ = Entity-relationship Diagrams ♦ = Attributes ♦ = Primary and Foreign Keys ♦ = Business Rules ♦ = Domains ♦ = Designing Tables ♦ = Database Normalization ♦ = Structured Query Language (SQL)

A Simple Office Furniture Example In this application, an interior designer uses MicroStation and a relational database to keep track of furniture in an office building. To make this work, the designer needs to maintain two separate sources of information about the furniture in the offices. One source, MicroStation, shows where the furniture is physically located and what it looks like. The other source, the database, stores important textual information about it. The database includes graphical or spatial information such as the length and width of the offices and the room numbers where a piece of furniture is located. The CAD drawing includes textual data such as "Office 104", "1" and "12'." The following illustration shows how this information appears from within MicroStation

Page 3

Office Layout with Furniture.

Database Tables for Office Furniture Example Following are some sample tables that store information about the offices and furniture, and illustrate the easily understandable format of storing data in relational database tables. The entities described in these tables include Office, Furniture, Furniture_type, and Manufacturer, which are also the table names. Each of the entities (or tables) has additional attributes (columns) that further describe them. Although it is not shown, when the table is created each field would be defined as to data type (CHARACTER, DATE, NUMBER, INTEGER), width, and some other characteristics.

Page 4

Sample Tables with Columns (Attributes) for Office Furniture Example

Office Furniture Furniture Type Manufacturer Office_No Furn_ID Furn_type Mfgr_ID Length_ft Office_No Preferred_mfgr_ID Name Width_ft Furn_type Material Phone_number Mfgr_ID Description Address Price Date purchased Notice that in some cases only an ID or type from one table is associated with another table. For example, the FURNITURE table includes columns called Office_No, Furn_type and Mfgr_ID, all of which actually originate in the OFFICE, FURNITURE-TYPE and MANUFACTURER tables, respectively. The detailed information about a specific Office_No, Furn_type and Manufacturer is contained in the OFFICE, FURNITURE_TYPE and MANUFACTURER tables, and does not have to be repeated for each row in the FURNITURE table. This simple example illustrates the basis for relational databases and how information is related. The advantage of relating the information in one table to another table in this manner is that, for example, when a Manufacturer changes Phone numbers, it only needs to be changed one time in one table. Relational databases are also generally more efficient in storage space requirements. Also, as the database evolves over time, Manufacturer can be linked (or "related") to multiple new tables. The following tables are populated with some data. The reference tables, FURNITURE_TYPE and MANUFACTURER, are shown first. When a new piece of furniture is added to an office, the system check to verify that valid furniture types and manufacturers are

MANUFACTURER Table Mfgr_ID Name Phone number Address 1000 Ace Furniture 8031234-5678 Greenville, SC 1001 Good-bye Furniture 8031345-6789 Easley. SC 1002 Dusty Furniture 8031456-7890 Mauldin, SC

Page 5

FURNITURE TYPE Table

Furn_type Preferred mfgr ID Material Description DESKW 1000 Wood Desk DESYM 1000 Metal Desk CHAIRW 1001 Wood Chair CHAIRM 1002 Metal Chair FILE4 1000 Metal File (4 drawer) FILEWIDE4 1002 Metal File (4 drawer-wide) BKCASEW3 1000 Wood Bookcase BKCASEM3 100 Metal Bookcase TABLEW 1000 Wood Table TABLEM 1001 Metal Table

OFFICE Table Office# Length-ft Width-ft 104 12 14 106 12.5 12

FURNITURE Table Width-ft Furn-ID Office-NO Furn_type Mfgr_ID Price Date Purchased

14 1 104 CHAIRM 1001 65.00 11/12/94 12 2 104 CHAIRM 1001 65.00 11/12/94 3 104 DESKM 1001 65.00 11/12/94 4 106 DESKW 1002 65.00 11/12/94 5 104 CHAIRM 1000 280.00 11/14/94 6 104 TABLEM 1001 650.00 11/18/94 7 104 BKCASEM3 1002 378.00 5/12/93 8 104 SOFA 1001 540.00 4/15/93 9 106 CHAIRW 1000 230.00 4/20/93 10 106 CHAIRW 1000 230.00 4/20/95

Page 6

Database Tabular Structure Databases use two-dimensional tables to store information about entities. A table consists of columns and rows. Each row contains a separate record (item), and the information in the columns is the attributes of the item. The intersection of a row and column is called a field. Relational databases, such as Oracle, are a database subset that use certain rules for design and the linking of information between tables, and which also use Structured Query Language (SQL) as a means of accessing the database.

COLUMNS ATTRIBUTE ATTRIBUTE ATTRIBUTE ATTRIBUTE

RECORD field field field field

R RECORD field field field field

O RECORD field field field field

W RECORD field field field field

S RECORD field field field field

RECORD field field field field

RECORD field field field field

RECORD field field field field

Structure of a relational database table.

What is a Relational Database? The theoretical foundation for relational databases is mathematical set theory. A set is a class or collection of objects having specified characteristics. The individual objects of the set are called members or elements. Laws, theorems, bounds, and operations such as intersections and unions are well understood and defined for mathematical sets. Because of this, the behavior of a relational database is well understood and predictable. The cornerstones of a relational database are 1) the two-dimensional tables that are used to store the data; 2) the SQL language that is used to manipulate, report and query the data; and 3) the business rules that determine how the data behaves when users perform selects, inserts, updates, and deletes.

Page 7

A major advantage of a relational database is the simplicity of its basic data structure, the two-dimensional (2D) table. Almost all users have considerable experience, and are very comfortable, with 2D tables. This greatly enhances the dialogue between the database designer and the user of the data. The basis for a successful relational database system that can adapt to changing user needs and growth is to concentrate on accurately modeling the data. The focus should be on the data structures, not on the procedures and different ways in which users access the data. Because the same data can be viewed, and used, in many different I ways by different users, or even by the same users over time, the most important part of the system is to model the data accurately. Data Modeling The first step in developing a relational database system is to meet with the data users prior to setting up a data model. The foundations of the data model are the entities and relationships that show what the data represents. An entity is a person, place, thing, or concept of interest to the user community. The database system stores, maintains and displays facts about the entity. A relationship is an association between two entities, about which the database system also stores, maintains, and displays information. For this illustrative example, we interview the interior designer, who gives us the following information. For purposes of this example, each significant noun used in the description is capitalized. "I need to keep track of all of the FURNITURE in the BUILDING. There are a number of OFFICES in the building, all of which can contain FURNITURE. I order additional FURNITURE directly from MANUFACTURERS, which saves a lot of MONEY. For each TYPE of FURNITURE, I have a preferred MANUFACTURER. I also need to keep track of how much I paid for the FURNITURE and the DATE purchased, because I always replace any wood FURNITURE when its AGE is greater than five years. Metal FURNITURE I always replace before it is seven years old. When I receive each Piece of FURNITURE, I place a STICKER on it which is sequentially numbered. When I place an ORDER, I use a PURCHASE ORDER FORM with LINE ITEMS which allows me to order one or more pieces of FURNITURE at a time."

Page 8

Identify Entities Our first task is to identify the entities and attributes within the designer's description. To do this, we first identify nouns. The following is a list of the nouns:

♦ = Furniture ♦ = Building ♦ = Office ♦ = Manufacturer ♦ = Money ♦ = Furniture type ♦ = Date ♦ = Age ♦ = Sticker ♦ = Order ♦ = Purchase order for ♦ = Line item

Now, we identify whether the nouns represent entities or attribute. Remember that entities are the persons, places, things or concepts interest to the interior designer. Following are the comments concerning each of the nouns, and those that have the designation ENTITY beside them should be considered to be tables in this data model.

Classification of Nouns in Designer’s Description

NOUN TYPE DESCRIPTION Furniture Entity The primary “thing” of interest Building Entity The “thing” containing offices Office Entity The “thing” containing furniture Manufacturer Entity The “concept” which supplies furniture Money Attribute Describes furniture Furniture type Entity (Subtype) The concept of classifying furniture Date Attribute Describes furniture and purchase order entities Age Derived Determined by subtracting date delivered from

current date Sticker Number Attribute Number uniquely applied to furniture Order Synonym Synonym for purchase order Purchase order form Entity The “thing” used to order furniture Line item Entity The “concept” relating furniture to orders

Page 9

Determine Relationships Next, we identify the relationships between the entities. We look for relationships by identifying link phrases between nouns, because the often suggest relationships. We can first go through the designer' description and find the link phrases. Following is a listing of the link phrases contained in the description.

Link Phrases Contained in Designer's Description ENTITY LINK PHRASE ENTITY Furniture Contained in Building offices in Building offices Contain Furniture Furniture Ordered from Manufacturer Furniture type Has (Preferential) Manufacturer Purchase order form Contains Line items Another more methodical and complete method for laying out relationships is to establish a grid with the entities as headings. The relationships are defined in the boxes linking the two entities. By reviewing the grid with the users, you will uncover most of the relationships that should be contained in the model. The following figure illustrates the grid for the entities of the Office/Furniture example. Note that some boxes contain several associations or relationships. An example is the relationship box between Furniture and Manufacturer, which shows that the manufacturer both makes and sells furniture. FURNITURE FURNITURE BUILDING BUILDING OFFICE OFFICE Contains Part of MANUFACTURER MANUFACTURER Makes, sells FURN_TYPE FURN_TYPE Describes Preferred P. ORDER P. ORDER Purchases To LINE ITEM LINE ITEM To

Grid for determining relationships between entities.

Page 10

Description of the Entity-Relationship Diagram You will note that each of the entities is contained in a box, and that the entity's name is capitalized at the top of the box. Some of the attributes of the entity are in lower case below the entity name.

First cut" Entity-Relationship model for Office Furniture example.

F U R N IT U R E# id

p r ic ed a te p u rc h a se d

inco n ta in s

O F F IC E# n u m b e r

le n g thw id th

inc o n ta in s

B U IL D IN G# n a m e

a d d re s s

M A N U F A C T U R E R

P U R C H O R D E R

F U R N . T Y P E

M A N U F A C T U R E R

P R O D U C T

m a k e s

m a d e b y

c o n ta in s

o rd e re d u s in g

# idn a m ea d d re ss

# n u m b e r

d e scr ib e sis # co d e

h a s a p re fe r re d

m a k e s

co n ta in sco n ta in e d in

m a k e s

m a d e b y

D e n o te s S c o p e o f S ys te m

Page 11

Drawing the Entity-Relationship Diagram One of the best ways of representing these relationships and entities is through diagrams. Diagrams are easily understood by the user, who can provide immediate feedback to the database designer's understanding of the data. The above is a ”first cut" at the Entity-Relationship Diagram for the Office/Furniture example - We have left out several of the important entities for the purposes of illustrating some principles later. Lines that show relationships connect the entities. The two ends of the line indicate the type of relationship shown. There are three features describing the end of the line:

♦ = name

♦ = degree/cardinality (how many)

♦ = optionally (optional or mandatory)

The name describes the relationship. The degree/cardinality is indicated by either a straight-line (one) or crows foot (many). The optionally is indicated by either a solid line end (mandatory) or a dashed line end (optional). As you are interviewing the user, it is recommended you use diagrams to illustrate, and have the user verify, relationships. Now, let's review and describe several of the relationships shown on the entity-relationship diagram. First, the line connecting FURNITURE to OFFICE can be described by the following sentences. Note that a standard format is being used to signify the relationships. "Each and every (piece of) FURNITURE must be for one and only one OFFICE and: Each OFFICE may contain one or more (pieces of) FURNITURE." Second, the line connecting PURCHASE ORDER to PRODUCT can be described by the following sentences. "Each PURCHASE ORDER may contain one or more PRODUCTS and: Each PRODUCT may be contained in one or more PURCHASE ORDERS. This second example is an illustration of a many-to-many relationship between the two entities. Many-to-many relationships are not allowable in the data model because they become extremely complex to transform into a database design. Therefore, they must be replaced by what is called an intersection entity. The intersection entity will have one-to-many relationships with each of the two original entities.

Page 12

For this example, a valid intersection entity is the LINE ITEM noun that was previously defined in the list of nouns. The figure below shows the new relationship between the PURCHASE ORDER and the PRODUCT.

PURCHASEORDER # number

made up of

part of

LINE ITEM# number

for

contained in

PRODUCT# id

Entity-Relationship model for Purchase Order and Product entities The following wording can represent the relationships, which is much easier to convey and represent in the relational database. "Each PURCHASE ORDER must contain one or more LINE I and: Each LINE ITEM must be associated with one and only one PURCHASE ORDER. "Each LINE ITEM must be for one and only one PRODUCT and Each PRODUCT may be associated with one or more LINE ITEMS. All of these relationships should be reviewed with the users to determine their validity. For instance, in the previous example, the users may say that a purchase order may be developed that does not contain any line items. If this is the case, then the line adjacent to the PURCHASE ORDER entity box should become dashed instead o

Page 13

Entity-Relationship model for purchase order that does not require line items. It is very important to verify and accurately determine each of these relationships early in the design. Once the database has been built, it is much more expensive and difficult to revise the model. Another important consideration is to accurately identify the scope of the system. In the Entity Relationship diagram for the Office/Furniture example, You will notice a dashed line that has been labeled "denotes scope of system." There are two entities, BUILDING and PRODUCT, that are outside this line. For the BUILDING entity, this means that the system only includes one building. Therefore, each office number must be unique in and of itself, and the interior designer is constrained to only deal with furniture and offices within this building.

PURCHASE ORDERLINE ITEM

# number# number

made up of

part of

for

contained in

PRODUCT

# id

Page 14

Office numbers must be unique within building,

If this is not the case, then the BUILDING entity should be included within the scope of the system. Likewise, the system is not going to verify the existence of a particular PRODUCT that can be associated with a LINE ITEM in a PURCHASE ORDER. These are simplifying assumptions that will be used for this example, and should be decided jointly by the user community and data modeler while the system is being designed. NOTE #1: The conventions used in developing the entity-relationship diagrams are the same ones used by Oracle's Computer-Aided Software Engineering (CASE) tools. NOTE #2: The Entity-Relationship diagram for the complete system can quickly become too complex for the user community to grasp during review. It is, therefore, a good policy to only take the components of interest and represent them in a simpler Entity-Relationship diagram to review with the users. It is not uncommon to use more than twenty of these simpler models to verify the complete model. Identifying Attributes Attributes are the details that qualify, identify, classify, quantify, or express the state of an entity. For example, for our FURNITURE entity, an attribute can be text (e.g., "METAL"), a number denoting price in dollars (e.g., 75.45), a date indicating date purchased (e.g., "12-DEC-90"), a picture (e.g., a cell drawing in MicroStation), and so on. On an Entity-Relationship drawing it is not necessary to indicate attributes, but it usually helps clarify the drawing if there are several present. Attributes are represented in lower case letters beneath the entity's name.

O FFIC E # 104 O FF IC E # 10 6

O FFIC E # 102 O FF ICE # 1 0 8

2 00 M A PLE S TR EE T

O FF IC E #1 02

O FFIC E #1 01

2 04 M A P L E S TR E ET

Page 15

When determining attributes associated with an entity, if there are more than eight, then there might be additional entities that should be created. In some cases, an attribute can become an entity in its own right. The attributes should be maintained in a data dictionary. A number of CASE products incorporate data dictionaries, or you can create a data dictionary within the relational database for your application. Data dictionaries can also be maintained separately in word processing or spreadsheet files, but in those cases they are not incorporated within the application. Some data dictionaries can automatically generate the SQL code that will create the database. In other cases, it is useful to have the tables comprising the data dictionary on-line for look-up purposes. It should be noted that maintaining the information in the data dictionary is itself a complex data tracking system, and can thus benefit from the rigor and organization provided by a relational database. For example, during the design an entity name may be changed, and it would be useful for the change to automatically occur at all locations where I it is referenced. The data dictionary, which corresponds to the tables and columns within the database application, should include at least the following columns:

Data Dictionary Fields (Mandatory)

COLUMN DESCRIPTION EXAMPLES Name Name of Column Furniture_ID Type Type of Data CHAR or DATE or NUMBER Length Stored Data Length 20 or 12 Null Support Are NULL values allowed NULL or NOT NULL Description Definition of Column The unique sticker number The information provided above is the minimum required to s the database. There is additional information that can be very helpful to the database designer and the users, in verifying the data model. Some of these columns are included in the following table:

Page 16

Data Dictionary Fields (Optional)

COLUMN DESCRIPTION EXAMPLES Source Source of the Data Any Department Synonym(s) Alternative Names Sticker_No Key Status Type of Key ~(if applicable) Primary or Foreign Sample Values Examples of Data Example or-Example2 Default Value Initial Value "N/A or “Default” Value Constraints Range or Discrete Values 100 to 1000

Having data for these columns will enhance the user’s understanding and ability to verify the data model’s accuracy. They will also help a database designer set up the tables and develop the intelligent behind the application's forms and reports.

Identifying Keys in Database Tables One of the data dictionary columns identified above that needs to be discussed is the key status of a database column. One of the rules that apply to relational database tables is that each row in all tables be unique. The field(s) that make a row unique are called the primary key field(s). The unique identifier can be an attribute, a combination of attributes, a combination of relationships, or a combination of attribute(s) and relationship(s). For example, a line item in a purchase order can be uniquely identified by an attribute (the line item number) and relationship (the purchase order number). In Oracle's CASE model, an attribute that contributes to the primary key is identified with a '#' mark, and relationships that contribute to the primary key are identified with a bar across the contributing relationship line(s). Sometimes a column in a table is based on the primary key of an altogether separate table. This is the case when the column can only take values that have been established in this second table. For example, the line item can only be associated with a purchase order that has been input into the purchase order table. Another way of stating this is that "many-to-one" and "one-to-one" relationships become foreign keys. Sometimes, but not always, the foreign key becomes part of the primary key. In some cases, there might be several ways to represent the uniqueness of a row in a database table. An example is a unique company generated employee number, which could be used as the primary key in an employee table. The employee's social security number could also be used as the primary key. This optional key is designated as an alternative key, and it is useful to recognize it as such in the data dictionary. In some cases, the database system itself generates the numbers that uniquely identify the rows in a table. These are called “system assigned" numbers.

Page 17

Several of the tables comprising the Office/Furniture example are shown below, and the primary and foreign keys are delineated. The tables also show some of the attributes. You will notice in the sample tables that primary keys, by definition, are not allowed to be null.

Sample Tables with Primary (PK) and Foreign (FK) Keys

OFFICE FURNITURE Office # (PK) Furniture_ID (PK) Length_ft Office # Width_ft Furniture_type (FK) Manufacturer_ID (FK) Price Date_purchased Mfg_part_number For both of these tables, there is only one primary key field. For the Furniture table, there are also three foreign keys, which means that all of these fields are dependent on other tables. In the case of the primary key for the furniture table, a unique ID is generated. There are several reasons for setting up IDs or codes to represent entities. Two are that the ID takes up less space to store in the database (since it potentially can be stored in many rows of different tables), and that it is quicker to type in than the full manufacturer's name. Business Rules Business rules govern the integrity and structure of data in a database application by setting limits and determining acceptable values for attributes. Rules determine the set of valid values an attribute may assume. Rules may also govern inserts, updates, selects, and deletes, which are also called "triggering operations." For the Office/Furniture example, consider the phone number attribute of a manufacturer. Some constraints on values that a phone number may assume might include 1) twelve characters (619-951-2861) wide; 2) only numbers (0-9) are allowed where indicated by an X; and 3) there are dashes after the third and sixth numbers. If there is a table of valid area codes in the database, another constraint might be that the first three numbers must match a valid area code. Some rules that govern triggering operations for a phone number might include 1) a manufacturer may not be entered into the database without a valid phone number; 2) a phone number may not be deleted, but an update is allowable; and 3) the only user of the system who may change or enter a phone number is the interior designer. A triggering operation could even be used to audit usage of the database. For example, each time a user retrieved a phone number, a table could be set up to indicate who and when.

Page 18

Domains Domains are another useful concept in database design and implementation. A domain is the common set of valid values that one or more attributes must satisfy. A domain is particularly useful when it can be predefined in the data dictionary, and then assigned to the attributes as required. This saves the redundancy of having to define all of the characteristics of the domain to every attribute. The phone number can serve as a useful illustration of this concept. There are usually several occurrences of a phone number attribute within a database. In the office/furniture example, there is a phone number associated with each manufacturer, and there might also be a phone number associated with each office. If we assigned both of these to the domain "Phone Number", and then we would not have to specify the number of characters and format of a phone number for each field in each table. This eliminates potential errors when setting up the database, and also makes it easier to compare and perform operations on phone number attributes. Using domains, like using a normalized relational database, requires that a change in a domain's characteristic needs to be defined only one time. For instance, if we wanted our phone numbers to have a format like (619)951-2861, instead of the previously defined 619-951-2861, then we would only need to change it in the domain definition, rather than in every phone number attribute in the database. This can definitely eliminate mistakes in either execution or omission if the change must be performed throughout the database. When possible, domains are a very useful concept in implementing a relational database. In many cases they will not be practical to include, either because the database is very small, or a data dictionary or CASE tool is being used that does not include domains. Designing Tables We are now at a point where we should consider the steps in laying out the actual tables. One of the big trouble spots is deciding what data to put in which table. Fortunately, this is where the Data Modeling process and our Entity-relationship diagrams make the task much simpler. The following four guiding steps spells out the basic process. 1. Represent each independent entity as a table and specify the primary key. 2. Represent each many-to-many relationship as a table. Use foreign keys to identify participants in the relationship. Specify the primary key of the table. 3. Represent each many-to-many relationship between two entities as a foreign key within the table of the "many" entity.

Page 19

4. Represent each descriptive attribute as a column within the table representing the entity most immediately described by that attribute. For our purchase order example, applying Step 1, we would know we need two tables; one for purchase orders using PO number as the key, and one for line items with Line Item Number as the key. Step 3 tells us that we need to track the PO number as a foreign key in the line item table. Database Normalization Normalization is the process of verifying that all entities are uniquely identified within the entity-relationship model. Data normalization minimizes duplication of data, provides flexibility so that the database may support different functional requirements, and provides flexibility so that the database can later be expanded or joined to other databases. Developing a well-defined entity-relationship diagram will, in most cases, produce a normalized model. A well-defined entity-relationship diagram identifies entities that are mutually exclusive. It also shows the relationships between entities and their degree (for example, one-to-many, one-to-one), shows sample attributes, and also displays the primary keys (unique identifiers). Degree indicates the number of each entity that can be related to another entity. For example, one purchase order can contain many line items. There is also a formal process that can be used for database normalization. There are at least five steps that can be taken to normalize a database, but usually only the first three are required. After these have been performed, the database is said to be in Third Normal Form. The three steps are: First Normal Form (1NF) - remove repeated attributes or groups of attributes Second Normal Form (2NF) - Remove attributes dependent on only part of the unique identifier. Third Normal Form (3NF) - Remove attributes dependent on attributes that are not part of the unique identifier. "Rules of thumb": 1 The primary key must be related to all other columns in its table on a one-to-one basis in that direction. 2 There must not be a one-to-one relationship between and portion of the primary key and any other table column, in that direction.

Page 20

3 Except ND columns, the relationship between any two non-primary key columns, or groups of columns in a table, must not be one-to-one in either direction. Let us now review the Office/Furniture example to illustrate the normalization process. An expansion of the entities and attributes in an Entity-Relationship model will illustrate the sequential process. First, we have set up a single table to contain all of the information about an office, including the multiple pieces of furniture in it. Each piece of furniture requires another column in the table and a modification to the attribute's heading by adding a number (e.g., Furniture_1). Therefore, if an office can contain up to ten pieces of furniture, then ten columns are required. This is true even if some offices contain only one piece of furniture. The following table shows some of the redundancy involved in this type of approach to database development. Note that several of the table's columns contain redundant data, and the normalization process develops additional tables where this redundant data occurs. Note, also, that office 104 only contains two pieces of furniture.

Office Table Illustrating Redundancy Prior to Normalization Office_No Bldg_No Furniture_1 Mfgr_1 Furniture_2 Mfgr_2 Furniture_3 Mfgr_3 101 Triangle Couch1 ABC Desk2 DEF Chair3 ABC 102 Triangle Couch2 DEF Desk7 DEF Chair4 ABC 103 Triangle Couch5 GHI Desk4 ABC Chair1 DEF 104 Triangle Couch3 ABC Desk5 ABC 105 Triangle Desk8 DEF Chair6 ABC Couch9 DEF

Page 21

Summary: Relational Database Concepts

Understanding the basic concepts about relational databases can a significantly to the effective implementation and use of the database underlying a CAD application. This chapter has discussed the following relational database concepts.

Data Modeling: Meeting with the users to determine the data of interest. Entity-Relationship Diagrams: Determining and showing the entities and relationships represented by the data. Attributes: The details that are of most interest to the user, a that qualify, identify, classify, quantify, or express the state of an entity There must not be a one-to-one relationship between any portion of the primary key and any other table column, in that direction. Primary and Foreign Key: Determine the uniqueness of the rows in the database tables, and also serve to relate the information between tables. Business Rules: Govern the integrity and structure of data in the database application by setting limits and determining acceptable values for attributes. Domains: The common set of valid values that one or more attributes can assume. Database Normalization: The process of ensuring that the entities are uniquely identified.

Page 22

SQL: The Structured Query Language SQL is a language for defining and manipulating data within the Oracle database. IBM Corporation originally developed SQL. The American National Standards Institute (ANSI) has developed a standard for SQL syntax and capabilities. Intergraph MicroStation makes use of SQL extensively throughout its database interface. SQL is even more important in using the Oracle products, and in setting up your databases. The purpose of this chapter is to illustrate how the SQL language forms the basis for developing and operating an Oracle-based database for use with Intergraph MicroStation. A later chapter will present examples of how MicroStation and SQL work together to enrich the functionality of MicroStation. SQL is useful even if you aren't using Oracle. Intergraph is developing many other key applications using their Relational Interface System (RIS), a system based on the SQL standard. RIS provides transparent access, via SQL, to database systems from different vendors. Even without RIS, many database vendors have adopted SQL as a supported query interface; Informix and dBase IV are two examples. If asked which Oracle products use SQL, most Oracle users would probably think first of SQL*Plus, an Oracle product that allows you to type in SQL and SQL*Plus commands and run them. SQL*Plus is typically the product developers go to when they want to create tables in the database, or grant access privileges to new users, or print out simple reports. Reports can also be generated using SQL*ReportWriter, and, again, SQL is used to specify the columns and constraints on the database data. The SQL*Forms product also uses SQL throughout the forms development process. SQL, and its procedural enhancements in PL/SQL, can be used to check field values and retrieve related data from other database tables. SQLDBA is an SQL-bas product for handling a number of different database administration functions like expanding the size of your database files and provide users with access to them. The Three Types of SQL Statements You will be using SQL to set up your databases, to put data into the database, and to get data out. To do this you will first have to set up the access and security for the user ID you want to use. Only after creating your user ID can you define the tables you will be putting data into. After creating the tables, you can use manipulative commands to insert: data into these new tables. These three types of SQL statements a categorized below:

♦ = Data Control Language (DCL): Statements that control database access and security, such as GRANT and REVOKE

♦ = Data Definition Language (DDL): Statements that alter the structure of the database, such as CREATE, ALTER, and DROP

Page 23

♦ = Data Manipulation Language (DML): Statements that manipulate data within the existing database object definitions, such as SELECT, UPDATE, INSERT and DELETE Using SQL for Data Control Before you can generate database reports, or even create the tables to store that data in, you have to have a valid userid, password, and the necessary privileges. The SQL statements that are used in providing that access are called Data Control statements. The GRANT and REVOKE commands are the most commonly used DCL command Gaining Access to SQL Before you can use SQL, you have to have access to it. Typically, in data control activities, you will want to be using the Oracle SQLDBA product. To start up SQLDBA, double click on the SQLDBA icon in the Oracle for NT window. Most Oracle systems come with a user called SYSTEM already set up. If you did the installation yourself, you should remember the password, or have written it down. If you did not install the database, you will probably need to contact the person who did in order to find it. Typically, the password for SYSTEM would be something like "MANAGER". Gaining Database Access Privileges This SYSTEM userid will normally have DBA privileges. Users with DBA privileges can create new users and modify their privileges. Besides DBA privileges, two other types of privileges may be granted to users: CONNECT and RESOURCE. CONNECT privileges allow a user to only view data within existing database tables and change his own password. Users with RESOURCE privileges have the added capabilities of being able to create tables, add data to them, and delete them. The command SQL> GRANT CONNECT TO NEWTON IDENTIFIED BY APPLE; would assign CONNECT privileges to the user named NEWTON. The password for NEWTON would be "APPLE". The user NEWTON would only be able to view existing data. By specifying additional privileges with the command SQL> GRANT CONNECT, RESOURCE, DBA TO DBAUSER IDENTIFIED BY ORANGE: you could create a user, DBAUSER, with full capabilities for viewing data, creating new tables, and creating new users. If we decide that we want our previous user, NEWTON, to have the ability to create tables of his own design we could add RESOURCE privileges with the command SQL> GRANT RESOURCE TO NEWTON IDENTIFIED BY APPLE;

Page 24

This would add the new RESOURCE privileges to his existing CONNECT privileges. Finally, there are two additional data control statements you need to understand: COMMIT and ROLLBACK. Both commands are single word commands. The COMMIT command makes your changes permanent. The ROLLBACK command is SQL's undo. Defining the Database Structure with SQL Data definition statements are used to alter the structure of the database. For instance, you might use the CREATE TABLE command to create a new table for storing information on light fixtures and their cost. SQL> CREATE TABLE LIGHTS (LIGHT_NUMBER INTEGER, LIGHT TYPE CHAR(30), COST NUMBER); After using the table for a bit, you might decide that its structure needs to include the distributor name for each fixture. You could add this additional column of information using the ALTER TABLE command. SQL> ALTER TABLE LIGHTS ADD DISTRIBUTOR CHAR(40); Later, you could decide you no longer need this table and delete it using the DROP TABLE command. You will be using these commands less often that the DML commands, but will find them essential any time you need to change the way your database models your data. Adding Tables to the Database Before you can enter data in your Oracle database, you must have tables there to put the data into. The CREATE TABLE statement allows you to specify each column, and what type data you want in the table. For example, we could create a simple table to keep track of common types of pipes called PIPE_TYPE. We might want to include the type NAME, the MATERIAL used in the construction of the pipe, and other things like the maximum depth to which it could be buried in the ground. For example: SQL> CREATE TABLE PIPE_TYPE (NAME CHAR(10) not null, MATERIAL CHAR(15), MAX DEPTH NUMBER, MAX_LOAD NUMBER, CELL_NAME CHAR(8), CELL_LIBRARY CHAR(8)): We can find out the structure of our new Oracle table at any time using the DESC command: SQL> DESC PIPE_TYPE

Name Null ? Type

Page 25

_____ _____ _____ NAME NOT NULL CHAR(10) MATERIAL CHAR(20) MAX_DEPTH NUMBER MAX_LOAD NUMBER CELL_NAME CHAR(8) CELL_LIBRARY CHAR(8)

In our example, we used two different column types, NUMBER and CHAR. The CREATE TABLE command lets you define a column using any one of many different predefined data types. Some Oracle-supported data types are shown in the following table:

Oracle SQL Data Types DATA TYPE EXPLANATION CHAR Character data including alphanumeric and special characters. Maximum field size

is 255 characters. DATE Any valid date between 1 January 4712 B.C. and 31 December 4711 A.D. Dates are

displayed in the DD-MMM-YY format. DECIMAL Decimal fields can contain digits 0 through 9 and an optional negative sign. No

fractional components are allowed. FLOAT Same as NUMBER INTEGER Same as NUMBER but only whole numbers LONG A maximum of 65,535 characters LONG RAW Raw binary data such as graphic images NUMBER Can contain digits 0 through 9 and an optional negative sign. The total number of

digits and the number of decimal places can be specified. RAW Raw binary data, up to 255 characters SMALLINT Same as INTEGER. VARCHAR Same as CHAR Creating Default Data Conditions with Table Constraints The CREATE TABLE command stores information about the table in Oracle's Data Dictionary tables for use by other Oracle applications Oracle's SQL*Forms product, for example, uses the constraint information in setting up default conditions for data entry forms. For instance, you may normally be working with steel pipe and may want the default pipe type to be 'STEEL'. The following CREATE TABLE command has column constraints highlighted in italic lettering: CREATE TABLE PIPE (

Page 26

ID NUMBER NOT NULL PRIMARY KEY, UPPER X NUMBER CHECK (UPPER_X >1000), UPPER_Y NUMBER CHECK (UPPER_Y >5000), UPPER_Z_INVERT NUMBER DEFAULT NULL, LOWER_X NUMBER CHECK (LOWER_X >1000), LOWER Y NUMBER CHECK (LOWER_Y >5000), LOWER_Z_INVERT NUMBER CHECK (UPPER_Z_INVERT >LOWER Z_INVERT), P_TYPE CHAR(10) NOT NULL REFERENCES PIPE_TYPE(NAME) CHECK ( P TYPE=UPPER ( P TYPE: ) ) LENGTH DIAMETER ): In this case, we have used column constraints to provide additional information about the columns in a table called PIPE. The ID field is the primary key within the PIPE table. It is specified as NOT NULL and PRIMARY KEY. The fields UPPER_X, UPPER_Y, LOWER X, and LOWER_Y are coordinates locating the upper and lower ends of a pipe segment. In this application, we want to make sure the X coordinate is always greater than 1000 and the Y coordinate is greater than 5000. Specifically, the clause CHECK (LOWER_X >1000) allows SQL*Forms data entry forms to automatically check the values entered in those fields is greater than 1000. In gravity sewer systems the water needs to flow downhill. Consequently, you want to make sure that the lower end of the pipe is actually lower than the upper end of the pipe. The clause SQL> CHECK (UPPER Z_INVERT > LOWER Z_INVERT) will cause a SQL data entry form to automatically compare these two elevations when they are entered. The column P_TYPE has a complicated looking set of constraints. The NOT NULL clause simply indicates that this column must always have a value in it. NOT NULL constraints are normally used when a column is essential in other parts of the application. For instance, if a program, such as an MDL routine to place cells in a design file, assumes that some value be in the P_TYPE field then the NOT NULL clause will be a useful way to insure that no one inadvertently leaves this important column empty. On the other hand, this clause can be extremely annoying since all Oracle applications will be checking to make sure this column is never empty. Consequently, you would not a want to constrain a column to be NOT NULL simply because you think it should normally have values in it. *NOTE: Use the NOT NULL clause only when the column must always have a value in it.

Page 27

The REFERENCES PIPE_TYPE(NAME) clause means that the P_TYPE field references the NAME field in the table PIPE_TYPE. The P_TYPE field is a foreign key since the NAME field is a primary key in the PIPE_TYPE table. This constraint means that the values in the PIPE.P_TYPE field must match the PIPE_TYPE.NAME field. Additionally, SQL*Forms data entry forms would prevent the operator from deleting a value in the PIPE_TYPE.NAME field that was used in a PIPE.P_TYPE field. The CHECK (P_TYPE=UPPER(P_TYPE)) clause allows SQL*Forms data entry forms to make sure that the values typed in the P TYPE field are all uppercase. Modifying Tables Invariably, after you have taken the time to create a table and enter data into it, you will realize that you need to add a field or change the length of an existing field. For example, to add a cost per unit foot column to the PIPE_TYPE table, you could use the following statement: SQL> ALTER TABLE PIPE_TYPE ADD COST NUMBER; If you decided that you would rather specify the type as NUMBER(8,2) since you want cost entered as two decimal places, then you could change the column definition by using the following command: SQL> ALTER TABLE PIPE_TYPE MODIFY COST NUMBER(8,2); Manipulating Data with SQL The most commonly used SQL commands involve manipulating data You can put data into tables using the INSERT command or delete it using the DELETE command. The SELECT command provides the ability to print out data in the tables. Adding Data with INSERT While the preferred way to enter large amounts of data is generally from a data entry form, or using SQL*Loader, the INSERT command can be conveniently used to populate tables from within SQL*Plus or from the MicroStation SQL window. The following sequence of INSERT statements illustrates a useful technique for putting data into a table using SQL: INSERT INTO PIPE_TYPE (NAME, MATERIAL) VALUES ( ' CONCRETE ', ' CONCRETE ' ); INSERT INTO PIPE TYPE (NAME, MATERIAL) VALUES ( 'BW-STEEL ', 'BUTT-WELDED STEEL ' ); INSERT INTO PIPE_TYPE (NAME, MATERIAL) VALUES ( ' GR -STEEL ' , ' GIRTH-RIVETED STEEL ' ); INSERT INTO PIPE_TYPE (NAME, MATERIAL) VALUES ( ' FR - STEEL ', ' FULLY RIVETED STEEL ' ); INSERT INTO PIPE_TYPE (NAME, MATERIAL) VALUES ( STEEL', 'ENAMEL COATED STEEL');

Page 28

INSERT INTO PIPE_TYPE (NAME, MATERIAL) VALUES ( ' CORR METAL ' , ' CORRUGATED METAL ' ); INSERT INTO PIPE_TYPE (NAME, MATERIAL) VALUES ( ' VCP ', ' VITRIFIED CLA Y ' ); INSERT INTO PIPE_TYPE (NAME, MATERIAL) VALUES ( 'IRON', 'WROUGHT IRON'); The above series of SQL statements is formed from eight separate INSERT statements. The first line of each INSERT statement is the same, denoting the destination table, PIPE_TYPE, and column NAME and MATERIAL. The second line specifies the actual value that will be inserted. In this case, the NAME column is the type of pipe, VCP for instance, and the MATERIAL specifies the material used in that type of pipe, VITRIFIED CLAY for example. Each INSERT statement is ended with a semicolon. — This sequence of statements could be typed in individually or executed from a text file. you can use a text editor, such as EMACS, VI, EDLIN, or EDT, to type in these SQL statements before executing them from within SQL*Plus using the START command. Saving your SQL scripts in text files makes it easier to edit them as well as providing important starting points for future programming in SQL. Over time, you will probably find yourself accumulating a library of useful SQL files. Removing Data with DELETE Once data has been inserted into your tables, you can remove it by using the DELETE statement. All the rows in a table can be removed by simply typing DELETE followed by the table name. For example: SQL> DELETE PIPE; would delete every record from the PIPE table. WHERE clauses can be added directly after the table name to constrain the rows that will be deleted. For example, the following statement would delete only those rows in the PIPE_TYPE table whose MATERIAL column contained the value 'VITRIFIED CLAY'. SQL> DELETE FROM PIPE_TYPE WHERE MATERIAL = 'VITRIFIED CLAY'; The DELETE command differs from the DROP TABLE command in that the DELETE command only empties the table; it does not remove, the table definition entirely from the database. Additionally, the DROP TABLE command automatically commits. Accidentally typing a DROP TABLE command will immediately move your table and its data. If, instead, you had used the DELETE command, the structure of the table would still remain; but more importantly, the DELETE command does not automatically commit when it executes, so you could undo its effect using a ROLLBACK command and save your data. Viewing Data with SELECT

Page 29

If you want to see what data is left in a table, use the SELECT command. The SELECT statement allows you to specify the fields you want to see, their source tables, and any constraints you might want to place on the data. The following example is the simplest form of the SELECT statement: SQL> SELECT * FROM PIPE TYPE; In this example, the '*' is used as a wildcard in place of the actual field names in the table. You might find the wildcard useful if you only have a few short columns in your table. Otherwise, you will be looking at a lot of data you probably did not want to see. Most of the time, you should plan on specifying the columns you really want to see. For example, the following SELECT statement specifies the ID, LENGTH, and P_TYPE columns from the PIPE table. SQL> SELECT ID, LENGTH, P TYPE FROM PIPE; In our example, you would see the following listing as a result: * ID LENGTH P TYPE 60 12 CONCRETE 61 12 CONCRETE 62 12 CONCRETE 63 12 CONCRETE 64 12 CONCRETE 65 12 CONCRETE 1 10 STEEL 2 10 STEEL 3 10 STEEL 4 10 STEEL 5 10 STEEL 20 25 BRASS 21 25 BRASS 22 25 BRASS 23 25 BRASS 24 25 BRASS 25 25 BRASS 40 25 BW-STEEL 41 25 BW-STEEL 42 25 BW-STEEL 43 25 BW-STEEL 44 25 BW-STEEL 45 25 BW-STEEL 23 rows selected.

Page 30

The resulting output starts with the column names then the corresponding data, and finally, a message saying how many rows in the table were found. Refining Data Selection Selecting data is one of the essential functions performed on a database. Different applications need data presented in different ways. SELECT statements can have many different arguments that define the nature of the data returned. This section reviews some of the ways you can select data from a database. Listing Data in a Specified Order In many cases, the order in which the data is listed will not be in the order you would like to see it. The ORDER clause allows you to specify which column, or columns, you want the data ordered by. If the column is a NUMBER type, then the rows will appear in an order where the value in the column is equal to, or greater than, the previous value. In character fields, the ordering would be alphabetic. The following statement illustrates the use of the ORDER clause. In this case, the output will be ordered by the LOWER_Z_INVERT column. SQL> SELECT ID, LENGTH, P_TYPE, LOWER_Z INVERT FROM PIPE ORDER BY LOWER Z_INVERT; ID LENGTH P_TYPE LOWER_Z_INVERT 1 10 STEEL 100 3 10 STEEL 100 4 10 STEEL 100 60 12 CONCRETE 150 20 25 BRASS 150 22 25 BRASS 150 223 25 BRASS 150 45 25 BW-STEEL 150 44 25 BW-STEEL 150 43 25 BW-STEEL 150 42 25 BW-STEEL 150 41 25 BW-STEEL 150 40 25 BW-STEEL 150 25 25 BRASS 150 61 12 CONCRETE 150 63 12 CONCRETE 150 64 12 CONCRETE 150 65 12 CONCRETE 150 23 rows selected

Page 31

The resulting output is ordered on the last column selected, LOWER_Z_INVERT, on the right hand side. The ID column, on the left side is now out of order numerically. These column positions could easily be switched by simply switching the order in which they are named in the SELECT statement. SQL> SELECT LOWER_Z INVERT, LENGTH, P_TYPE, ID FROM PIPE ORDER BY LOWER Z_INVERT; Selecting Data that Meets Special Conditions Suppose that you are interested only in pipes made from some form of steel. In our example, we could search the MATERIAL column of the PIPE_TYPE table for some reference to steel. If we are primarily interested in the specific pipe ID numbers and their length, we could instead search the P_TYPE field for some reference to steel. The following SELECT statements illustrates the use of a WHERE clause using a substring search. The WHERE clause follows immediately after the table name. In this case, the substring search is for the string '%STEEL%'; the '%' character indicates that any number of characters may proceed or follow the occurrence of the string 'STEEL' SQL> SELECT ID, LENGTH, P_TYPE FROM PIPE WHERE P TYPE LIRE '%STEEL%'; ID LENGTH P TYPE 1 10 STEEL 2 10 STEEL 3 10 STEEL 4 10 STEEL 5 10 STEEL 40 25 BW-STEEL 41 25 BW-STEEL 42 25 BW-STEEL 43 25 BW-STEEL 44 25 BW-STEEL 45 25 BW-STEEL 11 rows selected. Setting up Complex Conditions for Data Selection If instead you know that you are interested in the specific pipe types | 'CONCRETE' and 'STEEL' then you could use the IN clause. The IN | clause returns a TRUE condition when the field value is one of the | values in the list of values that follow. The list of values could be in fl the form of an additional SELECT statement. In the example below, the values are individually listed between the parentheses that follow: SQL> SELECT ID, LENGTH, P_TYPE FROM PIPE WHERE P_TYPE IN ('CONCRETE', 'STEEL');

Page 32

I ID LENGTH P_TYPE 60 12 CONCRETE 61 12 CONCRETE 62 12 CONCRETE 63 12 CONCRETE 64 12 CONCRETE 65 12 CONCRETE 1 10 STEEL 2 10 STEEL 3 10 STEEL 4 10 STEEL 5 10 STEEL 11 rows selected. Compound conditional constraints can be built using the Boolean operators AND and OR. The AND operator returns a TRUE value only when both conditions are TRUE. The NOT operator reverses a logical expression's result. The OR operator returns a TRUE value when any, or all, of the conditions are TRUE. For instance, the following SELECT statement will list rows from the PIPE table that either have pipe segment lengths greater than 12, or in which the pipe type is BRASS. SQL> SELECT ID, LENGTH, P_TYPE FROM PIPE WHERE LENGTH = 12 OR P_TYPE = 'BRASS';

Page 33

ID LENGTH P TYPE 60 12 CONCRETE 61 12 CONCRETE 62 12 CONCRETE 63 12 CONCRETE 64 12 CONCRETE 65 12 CONCRETE 20 25 BRASS 21 25 BRASS 22 25 BRASS 23 25 BRASS 24 25 BRASS 25 25 BRASS 12 rows selected. In addition to the IN and = comparison operators, SQL supports the greater than and less than operators, along with several others. The following table summarizes available comparison operators:

Comparison Operators

Operator Function = Tests for equality. !=,^=,<> Tests for inequality. > Greater than. < Less than. >= Greater than or equal to. <= Less than or equal to. IN Equal to any member of a set or subquery. Also equivalent to '=ANY'. NOT IN Not equal to any member of a set or subquery. Also equivalent to ‘!=ALL’ ANY Compares a value to each value returned by a list or subquery. ALL Compares a value to each value returned by a list or subquery. [NOT] BETWEEN x AND y [Not] greater than or equal to x and less than or equal to y. [NOT] EXISTS TRUE if a subquery returns [does not return] at least one row. [NOT] LIKE | Matches [does not match] a specified pattern. '%' matches any sequence

of characters; ‘_' matches any single character IS [NOT] NULLI Is [not] null.

Page 34

Performing Arithmetic on Column Values In many cases, you may want to perform arithmetic operations on column values. For instance, you may want to see lengths of pipe in yards instead of feet. To divide the LENGTH column by 3, you would type: SQL> SELECT ID, LENGTH / 3 FROM PIPE; The addition and subtraction operators can be used to add or subtraction. For instance, the top of a pipe could be computed by adding is the pipe diameter to the invert of the pipe. Assuming the pipe diameter is stored in inches, a conversion to feet will also be necessary. SQL> SELECT 'TOP OF PIPE ',ID ,' IS ', INVERT + DIAMETER / 12 FROM PIPE; SQL provides useful numeric functions, which are summarized in the following table:

Numeric Functions Function Value Returned ABS(n) CEIL (n Smallest integer greater than or equal to n. FLOOR (n)| Largest integer equal to or less than n. MOD(m,n) Remainder of m divided ivy n. POWER(m,n) m raised to the nth power. n must be an integer. ROUND (n [, m] ) n rounded to m decimal places; m defaults to 0 SIGN(n) If n <O returns -1, if O returns O. if >O returns 1

SQRT(n Square root of n; if n <0 returns null TRUNC (n [, m] ) n truncated to m decimal places; m defaults to 0 Use the ROUND function when you want to work with the nearest integer value of a real number. The ROUND function could be used, for example, to print out pipe lengths in whole feet instead of decimal feet: SQL> SELECT ID, DIAMETER, ROUND(LENGTH) FROM PIPE; ROUND will return the value of LENGTH to the nearest whole foot. If, instead, you want the values truncated at the decimal place, then use the TRUNC statement. Both ROUND and TRUNC allow you to specify the number of decimal places you want to maintain.

Page 35

Manipulating Characters in Column Values SQL provides extensive character manipulation functions. One of the most frequently used functions is the UPPER command. UPPER is especially useful in WHERE clauses involving mixed case character data. For example, the clause WHERE UPPER(MIXED_CASE_COMMENT_FIELD) LIKE 'OK'; will return TRUE even if it contains 'ok', 'Ok', or 'oK'. In other words, use the UPPER command when comparing any mixed-case data to reduce the number of possible combinations. Another character function you will find yourself using frequently is the substring function, SUBSTR. Use the SUBSTR function when you want to operate on a specific subset of a character string. For example, due to limited space on your reports you may want to limit a column to its first two characters as in SUBSTR(NAME,1,2). The following table illustrates the many useful character functions available to you within Oracle SQL:

Character Functions Function Value returned ASCII(char) ASCII value of the first character of char. CHR(n) Character with the ASCII value n. INITCAP(char ] Character string with only the first letter of each word capitalized. INSTR(charl, char2[,n[,m]]) Position of the mth occurrence of char-2 in char1 starting at position n. LENGTH (char) Length of the character string . LOWER (char) A character string in all lower case. LPAD (char1, n[ char2]) char1, left-padded to length n with the sequence of characters in char2;

char2 defaults to blanks. LTRIM(char, [set]) A character string with initial characters removed up to the first character

not in set. The set defaults to null. NLSSORT(char) National Language value of char. REPLACE (char, search_string) [,replacement string] )

Character, with every occurrence of search_string replaced by replacement_string. If you do not specify replacement_string, ORACLE removes all occurrences of search_string.

RPAD(charl, n[,char2]) char1, right-padded to length n with the sequence of characters in char2; char2 defaults to blanks

RTRIM (char [, set]) char, with final characters removed after the last character not in set. Set defaults to null

SOUNDEX (char) A char value representing the sound of the word (s) in char. SUBSTR (char, m{, n]) A substring of char, beginning at character m, n characters long (if n is

omitted, to end TRANSLATE (char, from, to) char, translated from the character set from to the character set to. UPPER (char) char, with all letters uppercase.

Page 36

Concatenating Character Strings Character strings can also be concatenated, combined end-to-end, using the concatenation operator ' | | '. The statement: SQL> SELECT 'THE ' || NAME || 'PIPES ARE MADE OF ' || MATERIAL FROM PIPE_TYPE; returns the following concatenated listing: THE BRASS PIPES ARE MADE OF BRASS THE BW-STEEL PIPES ARE MADE OF BUTT-WELDED STEEL THE CONCRETE PIPES ARE MADE OF CONCRETE THE STEEL PIPES ARE MADE OF ENAMEL COATED STEEL Selecting Data by Group Often, you win want to perform operations on whole groups of rows in a table. For instance, you may want to average a flow in all the pipes made of cast iron, or total the prices of all your lighting fixtures. The SQL GROUP BY clause is used to provide a summary line for each group of rows that meets your selection criteria. For instance, SQL> SELECT P_TYPE, COUNT(*) FROM PIPE GROUP BY P_TYPE will return the number of occurrences of each pipe type in the PIPE table: P_TYPE COUNT(*) BRASS 6 BW-STEEL 6 CONCRETE 6 STEEL 5 4 rows selected.[ The GROUP BY function will return summary lines, but will not print out each detail record within the group. You have to use SQL*Plus or SQL*ReportWriter, to print both detail and summary records. A number of important functions are meant to be used with the GROUP' BY functions, such as averages, counting, sums, maximum, and minimum.

Page 37

Group Functions

Function Value Returned AVG ( [DISTINCT/ALL] n) Average value of n, ignoring null values. COUNT ( [DISTINCT/ALL] Number of rows where expr is not. MAX ( [DISTINCT/ALL] expr) Maximum value of expr. MIN( [DISTINCT/ALL] expr) Minimum value of expr. STNDDEV( [DISTINCT/ALL] n) Standard deviation of n, ignoring nul1 values. SUM( [DISTINCT/ALL] n) Sum of values of n. VARIANCE ( [DI STINCT/ALL] n ) Variance of n, ignoring null values. Suppose you wanted to know the total length of each type of pipe. Using the GROUP BY clause with the SUM function will print a line with the sum of the LENGTH column for each P_TYPE. SQL> SELECT P_TYPE, SUM(LENGTH) FROM PIPE GROUP BY P TYPE; Updating Data in Tables Often, values in the database have to be changed. This can occur for a number of reasons: it may have been entered wrong or it may have 10 4 been designed to be changed as time passed. The UPDATE command allows you to specify the table you want to change values in and the field you want to update. The command, SQL> UPDATE PIPE SET P_TYPE = ' BAD IDEA '; would change the pipe types throughout the entire PIPE table. You could constrain the command with a WHERE clause: SQL> UPDATE PIPE SET P_TYPE = 'CAST IRAN' WHERE ID = 64; The example above would set the type to CAST IRON for only pipe ID - 64. Multiple Table Operations in SQL One of the important capabilities of SQL is the ability to easily manipulate data from multiple tables. This referencing of data from two or more tables within one SELECT statement is called a JOIN. The most common type of JOIN is the equi-join, in which information from two tables is extracted where one field in each table equals the other. SQL> SELECT PIPE. ID, PIPE.LENGTH, PIPE.P_TYPE, PIPE_TYPE.MATERIAL FROM PIPE, PIPE_TYPE WHERE PIPE.P_TYPE = PIPE_TYPE.NAME;

Page 38

In this case the ID, LENGTH, and P_TYPE columns come from the PIPE table. The MATERIAL column, however, comes from the PIPE_TYPE table. The WHERE clause equality condition between the two tables allows the pipe information to be simultaneously listed with the corresponding material description from the PIPE_TYPE table. ID LENGTH P_TYPE MATERIAL 20 25 BRASS BRASS 21 25 BRASS BRASS 23 25 BRASS BRASS 22 25 BRASS BRASS 24 25 BRASS BRASS 25 25 BRASS BRASS 40 25 BW-STEEL BUTT-WELDED STEEL 44 25 BW-STEEL BUTT-WELDED STEEL 45 25 BW-STEEL BUTT-WELDED STEEL 43 25 BW-STEEL BUTT-WELDED STEEL 41 25 BW-STEEL BUTT-WELDED STEEL 42 25 BW-STEEL BUTT-WELDED STEEL 60 12 CONCRETE CONCRETE 61 12 CONCRETE CONCRETE 62 12 CONCRETE CONCRETE 63 12 CONCRETE CONCRETE 64 12 CONCRETE CONCRETE 65 12 CONCRETE CONCRETE 1 10 STEEL ENAMEL COATED STEEL 2 10 STEEL ENAMEL COATED STEEL 3 10 STEEL ENAMEL COATED STEEL 4 10 STEEL ENAMEL COATED STEEL 5 10 STEEL ENAMEL COATED STEEL 23 rows selected. Joins typically require more typing than single table queries. Table aliases can be used to reduce the amount of typing. For instance, the previous query can be written using “a" and "b" for tables PIPE and PIPE_TYPE as follows: | SELECT A.ID, A.LENGTH, A.P_TYPE, B.MATERIAL FROM PIPE A, PIPE_TYPE B WHERE A.P_TYPE = B.NAME;

Page 39

Using Views to Repeat Data Selections SQL does contain a concept, called Views, which are used to predefine relationships between tables. Views are particularly useful in the development of database reports and forms. SQL> CREATE VIEW furn-mfgr AS SELECT furniture, furn-id, furniture.type, furniture.mfgr.id,

manufacturer.name WHERE furniture.mfgr_id = manufacturer.mfgr-id; In this example of a statement setting up a view, both a DDL and DML statement are used. CREATE VIEW is a DDL statement, and SELECT... FROM is a DML statement. A user who knows SQL can thus access information from whatever database underlies an application. Views are virtual tables. They do not actually contain data, but instead, reference data stored in real tables, or even other views. Views are logical representations of data stored in other database tables, |or in combinations of tables. Creating a view requires that you specify a SELECT statement that returns the subset of the data you want in your view. The basic syntax is: CREATE VIEW view_name ( view_field_list ) AS SELECT select_field_list FROM base_table....; where the view_field_list is a list of column names that will bell assigned to each of the corresponding fields you select from your based tables. The SELECT statement can be any valid SQL SELECT statement, including joins between multiple tables and calculated field values. Use views to reduce the length of the queries you will be using within MicroStation. The SQL and command windows limit the length of queries that you can type, so views offer the best vehicle for entering complex queries for reports or fence operations. Views offer a number of options you don't have with the normal tables. Privacy is maintained because of security made possible by allowing the database Administrator to customize the information those individuals see or modify data in that view. The DBA need only issue a GRANT command to specify an, individual's privileges to see or modify data in that view. Views can be constructed that insulate you, or your applications, from changes in base tables. This is especially important in a large-scale application development effort where changes to table structure are anticipated. Frequently used complex queries can be coded directly into a view definition; this allows us to simplify the query we actually run. For example, the query, SQL> SELECT PIPE.ID, PIPE.LENGTH, PIPE.P_TYPE, PIPE_TYPE.MATERIAL FROM PIPE, PIPE_TYPE WHERE PIPE.P_TYPE = PIPE_TYPE.NAME AND PIPE.P_TYPE LIKE '%STEEL%'; could be coded directly into a view as

Page 40

CREATE VIEW STEEL_PIPE_VIEW (ID, LENGTH, TYPE, MATERIAL) AS SELECT PIPE.ID, PIPE.LENGTH, PIPE.P_TYPE, PIPE_TYPE.MATERIAL FROM PIPE, PIPE_TYPE WHERE PIPE.P_TYPE = PIPE_TYPE.NAME AND PIPE.P_TYPE LIKE '%STEEL%'; so that you only need to issue the command SQL> SELECT * FROM STEEL_PIPE_VIEW; to obtain the same set of results you would have obtained from the previous, more complex, query. ID LENGTH TYPE MATERIAL 4 0 25 BW-STEEL BUTT-WELDED STEEL 41 25 BW-STEEL BUTT-WELDED STEEL 42 25 BW-STEEL BUTT-WELDED STEEL 45 25 BW-STEEL BUTT-WELDED STEEL 44 25 BW-STEEL BUTT-WELDED STEEL 43 25 BW-STEEL BUTT-WELDED STEEL 1 10 STEEL ENAMEL COATED STEEL 2 10 STEEL ENAMEL COATED STEEL 8 rows selected. You may allow others to access the new view with this command: SQL> GRANT SELECT ON STEEL_PIPE_VIEW TO PUBLIC; You cannot INSERT, UPDATE, or DELETE records from a view that is built from more than one table. Speeding Data Access with Indexes | Indexes are small tables Oracle uses to organize access to other tables. They can dramatically reduce database access time. Additionally, indexes can be used to enforce primary key uniqueness. However, it is possible for indexes to slow down some database operations. For instance, INSERTS, DELETES, and UPDATES for an indexed database can be significantly slower than for a non-indexed one. This is due to the need to update the indexes whenever data is changed in the base tables. In general, as far as performance is concerned, you will only want to index large tables, say several hundred records or more in size Indexing to enforce field uniqueness is another matter. Creating unique indexes are done for data integrity instead of improving performance. For example, SQL> CREATE UNIQUE INDEX IPTPE ON PIPE (ID); |

Page 41

creates a unique index on the ID column in the PIPE table. This mean that Oracle will return an error whenever someone tries to insert a record with an ID value that duplicates one already in the PIPE table.

Page 42

Establishing the MicroStation/Database Link Setting up MicroStation and Database Linkages Introduction So far in this book, we have looked at the basic problem of building databases that efficiently model the data you need to store. Additionally, we have looked at the different ways of entering and reporting that data using various form generation and report writing tools for the different database platforms. Now, we come to the fundamental issue of actually linking the data in the database tables to the graphic representation of that data in the MicroStation drawing file. To link a database to a design file, you need to do the following things: 1. Ensure that your database contains an MSLINK field or column and an index has been created on MSLINK. 2. Check to see that MicroStation is properly set up to work with your database. 3. Create a control file or table. 4. Access the database. 5. Define your active entities 6. Specify a linkage mode. 7. Attach active entities with MicroStation's ATTACH AE tool. Review of Database Preparations Whether you have an existing database or are creating one from scratch, you will need to prepare each table you plan on linking to graphic elements by adding a column named MSLINK. The MSLINK column is used by MicroStation to uniquely identify each row in a table that is linked to a drawing. To add a new column to an existing Oracle table, use the SQL ALTER TABLE command: ALTER TABLE tablename ADD MSLINK NUMBER ( 10 , 0 ); Setting up MicroStation for Use with a Database Setting up MicroStation for use with a particular database involves defining which kind of database you are using. You do this by setting MS_LINKTYPE and MS_DBASE environment

Page 43

variables. You can do this when you install MicroStation, or afterwards with the USCONFIG.EXE utility in the DOS version or through MicroStation's Environment Variables window. The following environmental variables need to be set. MS_LINKTYPE - The type of database to be linked (e.g., Informix, Oracle, or RIS). MS_SERVER - The name of the corresponding MDL database loader. MS_DGNAPPS - The MDL startup application MS_DBASE - The directories containing the loader and database. MS_DBSOURCE - The directory containing the MDL debugger source. MS_MDL - The directories containing any MDL applications. These variables can be set within your startup .profile file or your Microstation configure.dat file. Setting Up MicroStation for Multiple Databases MicroStation can use multiple database products if you set multiple database linkages using the Environment Variables dialog box. Among the options are Oracle (database on all MicroStation platforms, including Macintosh), dBase (database on the PC), DMRS (Intergraph's database on the VAX), RIS (Relational Interface System), and Informix. The dialog box's command for a multiple database linkage should have each linkage type separated by a colon. For example:

The Environment Variables dialog box showing multiple database products linked

Page 44

Creating the Control Table MicroStation keeps track of linkages through the use of a control table. This table must be created for each database user account that contains linkages to graphic elements. The fundamental purpose of the control table is to allow MicroStation to associate each database table that will be linked to graphics elements with a unique number. Creating MSCATALOG for Oracle The control table contains one row for each database table (master table) that will be linked to graphic elements. The Oracle control table is named MSCATALOG and has the following format:

Page 45

The MSCATALOG Table Columns

FIELD DEFINITION TABLENAME Name of an Oracle table that will retain linkages to

graphic elements. ENTITYNUM Unique number identifying the table SCREENFORM Name of a previously Created SQL*Forms form

used to display database rows. REPORTTABLE Name MicroStation will use when creating an

Oracle table to store the output of fence reports. DASTABLE Name of the Oracle table containing displayable

attribute definitions for the table SQLREVIEW SELECT statement for reviewing database

attributes FENCEFILTER SELECT statement containing search criteria for

reports and fence manipulations The MSCATALOG table can be created by using the MicroStation supplied MSCAT.SQL script. You can execute the script from the DOS command line by moving to the C:\USTATION\ORACLE directory and entering the following command: DOS> @c:\mgeprojects\oracle\db_data\MSCAT

You can then enter data into the MSCATALOG table using SQL form provided with MicroStation. When you install MicroStation's Oracle interface, this form is copied into the USTATION\ORACLE directory. Creating Table MSCATALOG The MSCATALOG table is created by the following command: create table mscatalog (tablename char(32), entitynum integer, screenform char(64), reporttable char(64), dastable char(32), sqlreview char(256), fencefilter char(256)); The MSCATALOG table can be reviewed and modified by the following command: USTN> SET DATABASE Accessing the Database from MicroStation

Page 46

An important step in setting up a functional database link is accessing the database through MicroStation. This section describes how to do this in Oracle. Accessing the Oracle Database To begin using the Oracle database with MicroStation, you must first warm start Oracle, load MicroStation, and then connect to the database. To connect to the database, go to the settings menu on the MicroStation pull-down list. Access DATABASE>CONNECT as show in the following figure.

Connecting to a Database

Page 47

Database Connection Window The above window pops up. In the Connect String box, enter gisxx/studentx as shown. The user is connected to oracle through MicroStation. MicroStation returns the name of the tablespace that is connected as shown in the following figure.

Page 48

Connected to Tablespace Gis01 All commands that begin with the pipe character are passed through to the database. Any SQL command including SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, GRANT, REVOKE, CONNECT, and DISCONNECT can be entered as a command window key-in using the pipe character. You may consider keeping database commands that you execute frequently in script files. Script files can then be executed by using the key-in: |@ script_filename There are two main differences between MicroStation's support for database commands and that of SQL*Plus. First, the semicolon required in SQL*Plus is completely optional in MicroStation. Second, SQL*Plus extensions to SQL such as the DESCRIBE command and the formatting commands are not supported. These commands are processed by the SQL*Plus program, not by the database server. Once inside MicroStation, you will need to specify the database you want to work with using the command, DB=username/password

Page 49

for a local connect to oracle, or the key-in the following to connect remotely: DB=username/password@T:domain The command: DB=$ will show you the database currently attached to your drawing file. Once attached to your database you can use SQL commands using the ' | ' character. For example, the key-in, USTN> |SELECT * FROM FURNITURE will bring up a SQL window with the first row that the query returns. Defining Active Entities The Database Linkage is the relationship between a drawing element and a row in a database table. A single element in a DGN file can be linked to rows in more than one database, and, conversely, many elements can be linked to the same row. This is known as a one-to many linkages. An example of the latter case might be a commonly used drawing element (e.g., a resistor in an electrical drawing), for which it is not practical or desirable to create a database row for each. Since they all have the same resistance and other characteristics, one database row is all that's needed to describe this DGN file element or component. MicroStation allows you to perform several operations with the linkages, including:

♦ = Establishing the linkages between the database and the drawing. ♦ = Adding new or removing existing linkages. ♦ = Generating reports based on the linkages.

When you link a database row to a design file element, either a simple element such as a line or circle or a complex element such as a detailed cell, MicroStation rewrites the element and appends several linkage values onto it. The first value is the signature ID of the database to which the linkage belongs. MicroStation allows a single drawing file and even a single element to have linkages to more than one database. The signature ID tells MicroStation whether the link is to Oracle, Informix, dBase, or RIS.

Page 50

The next value in the linkage is the entity number. This number associates the linkage with a unique row in the control table and, consequently, to a specific table in the database. The last value that is part of the linkage is the MSLINK number. As stated earlier, a numeric column named MSLINK uniquely identifies each row in a table linked to graphic elements. Thus, this column allows MicroStation to find a specific row within the table identified by the entity number. Selecting an Active Entity Before you can create a database linkage, you must first select the database row you wish to link to. MicroStation calls this row the active entity. To choose an existing database row as the active entity, use the FIND (FI=) command followed by a SELECT clause. For example, you might select a row from the COMPONENT table as the active entity by entering the following: USTN> FI=SELECT * FROM COMPONENT WHERE COMPONENT_NUMBER='A217-12' NOTE : If the SELECT statement you enter returns more than one row, MicroStation will use the first row returned without reporting an error. MicroStation also allows you to define the active entity graphically without entering a select statement. To do this, enter DEFINE AE or select the Define Active Entity Graphically icon from the database tool palette. You are then prompted to identify an element. Select an element that is already linked to the database row that you want to define as the active entity.

Page 51

Define Active Entity Graphically There may be times when an element has more than one database linkage. By default, MicroStation will use the first linkage it finds to select the active entity graphically. However, by using the command SET CONFIRM ON, you can cause MicroStation to display each linked database row in sequence in the SQL Window. When the linkage you want is displayed, choose it by using the Accept push button on the SQL Window dialog box. Selecting the Confirm Rows toggle button on the Database Settings box can also activate confirmation of rows. Selecting Database from the Settings pull-down menu activates the database Settings box. Once the active entity is selected, you can use the ACTIVE REVIEW command to verify that the row is indeed the row that you wanted. Enter the key-in "ACTIVE REVIEW" or the alternate key-in "RA=?". You can also review the active entity by choosing the Show Active Entity icon from the database palette.

Page 52

Reviewing the active entity When you choose a database row as the active entity, MicroStation makes a copy of it and stores it in a single row table called AE that has the MSLINK field set to zero. This makes it very convenient for you to edit the row before creating a linkage. For example, you could update the active entity by keying-in the following on the command window: USTN>|UPDATE AE SET COMPONENT_NUMBER = ' UR4 12 ' WARNING: Since MicroStatzon maintains the table AE for its own use, you should not create your own table with that name. If you do, MicroStation will overwrite it without warning

Page 53

Setting a Linkage Mode The last thing you need to do before you actually begin to create linkages is select the desired linkage mode. MicroStation supports four different types of linkages: New, Duplicate, Information, and None. NEW The NEW linkage mode specifies that a copy of

the active entity should be linked to the graphic element. The active entity is first used to create a new row in the database, then the new row is linked to the graphic element. This type of linkage is most useful when there is a "one-to-one" relationship between the graphic elements and the rows in the database. For instance, symbols representing sewer manholes would be linked to only one database table row that contained the coordinate of that manhole

DUPLICATE In DUPLICATE linkage mode, graphics elements are linked to the original row specified as the active entity. This allows you to link multiple elements to the same row. The database row used to create the active entity is first updated using the information in the AE table to incorporate any changes you have made to it. This type of linkage is useful if a row of the database is common to several graphic elements. For instance, one row in an electronic component table might be associated with all of the 50 ohm resistors providing information on characteristics common to each.

INFORMATION Same as DUPLICATE mode except that a special "information" bit is set. This linkage mode is typically for program use and should be avoided in normal use.

NONE No linkages are made. The linkage mode is set by using the ACTIVE LINKAGE command or by using the Linkage Mode option button on the Database Settings box, as shown in the following illustration.

Page 54

Accessing the Database Linkage Mode

The database dialog box opens.

Page 55

Creating Database Linkages Now that you have created and populated the control table, connected to the database, and chosen an active entity and linkage mode, you are finally ready to begin creating linkages. Attaching to a Single Graphics Element The process of actually creating linkages is quite simple. Key in "ATTACH AE" or select the Attach Active Entity icon from the database palette. When prompted, identify the graphic element you want to link to the active entity. MicroStation confirms that the linkage was created by displaying "Linkage attached" on the command window message line.

Attach Active Entity.

Page 56

Attaching to Multiple Graphics Elements Multiple elements can be linked in a single operation by using a fence. Create a fence around the elements you want to link to the active entity, and enter 'FENCE ATTACH." The elements affected by the fence will be determined according to the Fence Selection choices (Inside, Overlap, Clip, Void, Void-Overlap, and Void-Clip) from the Locks dialog box from the Settings pull-down menu on the Command Menu. NOTE: Make sure that the only elements displayed in your fence are those that you want to link. MicroStation will indiscriminately link all elements in the fence to the active entity. Detaching Linkages Removing unwanted linkages is just as easy. In this case, key in "DETACH" or select the Detach Database Linkage icon from the database tool palette.

Detach Database Linkage.

Page 57

To detach multiple linkages in one operation, place a fence and then use the DETACH FENCE command. Database linkages will be removed from each element contained in the fence. You can cause corresponding database rows to be deleted whenever you remove a linkage from a graphic element by enabling the Delete Linked Database Rows toggle button in the Database Settings box or by using the SET DELETE ON command. When used with linkages that defines a one-to-one correspondence between elements and database rows this feature makes it very easy to keep your database synchronized with your drawing. Warning: The Delete Linked Database Rows feature should be used with caution when removing linkages that were created using duplicate mode. Since MicroStation does not check the existence of additional elements linked to the same row, those elements, if they exist, will be orphaned. Orphaned elements have database linkages that point to non-existent database rows. Points to Remember MicroStation's database interfaces provide functions for linking design file elements to non-graphical database rows. The database attributes of elements with database linkages can be displayed in MicroStation using data entry forms or using the built-in SQL Window. For tables you will be linking to graphic elements do not create any unique indexes, other than the MSLINK field itself. The NEW linkage mode will try to insert a copy of the ACTIVE ENTITY into your table resulting in a duplicate value in all but the MSLINK field; this would cause an Oracle error if a unique index were on any other column. When using the ATTACH FENCE key-in, make sure only the correct graphic elements are contained within your fence area. To be on the safe side, plan to; separate your different graphic elements on different levels of your drawing and turn all other levels off before linking.

Page 58

SQL EXERCISES 1 How many parcels are owned by CGS Land Company. 2 Identify the roads that have less than 2 lanes. 3. Identify the owners on Bromley Ln. 4. Identify the streets paved before 1978. 5. Which roads existed before 1950 ? 6. How many highways have a speed limit of more than 40 M.p.h. and have more than two

lanes ? 7. What is the speed limit on the road fronting CGS Land Company property? 8. How many highways have a weight limit of less than 80,000 pounds? 9. How many highways have a weight limit of more than 80,000 pounds? 10. Identify the highways owned by the state. 11 Identify the owners who have property valued more than $2,000,000 fronting on

highways owned by the state. 12. Find the map(s) which show the property owned by Eileen Ruth Cook. 13. How many different maps are needed to display property owned by Tr. M. A. Schubert? 14. How many property owners live on highways where the weight limit is more than 75,000

pounds?

Page 59

APPENDIX A

Frequently Used SQL Commands and Functions Introduction This section presents the most frequently used SQL statements, query commands, functions, and operators. The following items show the syntax and notation used in this section.

• COMMANDS are shown in uppercase and must be entered as shown. • Items in [Square Brackets are optional. • Expressions can include column names, functions, operators, numbers, integers, and dates. • The vertical bar I means select one option, and do not include the other option or the brackets. • (Expressions) for functions are enclosed in parentheses. • Conditions are expressions, which are either true or false. • A query can consist of another SQL statement which is used to limit the records seen by the master SQL statement. • Table.column shows the table name before the period and the column name after the period.

SQL statements can be entered either directly at the MicroStation Command line or at the SQL Window. You will also use SQL statements when you are in the database product or its 4GL tools. When you enter a SQL statement, it should normally be ended with a semicolon. However, the SQL Window in MicroStation does not require the semicolon. The SQL in this section is based on the American National Standards Institute publication ANSI X3.135-1989. Most relational databases have extensions beyond the basic set provided in the standard. You should obtain the database SQL reference guides for more detailed descriptions of the extensions they have made to the ANSI standard.

Page 60

Data Manipulation Language (DML) Statements DML statements are the commands you will use most often. DML statements are used to display your data. They also add, update, delete, and commit database transactions. Displaying Rows of Data SELECT [ALL|DISTINCT] expression FROM expression [WHERE condition] [GROUP BY expression] [HAVING] condition [UNION|INTERSECT|MINUS] query [ORDER BY expression [ASC|DESC]] [FOR UPDATE OF expression]; Example 1. To display three columns from the Furniture table: SELECT furn_id, office no, furn type FROM furniture; Example 2. To display all columns from the Furniture table for both 'DESKW' and 'DESKM' furniture types that cost more than $100. (Note: % is a wildcard that can represent one or more characters.) SELECT * FROM furniture WHERE furn_type LIKE ‘DESK%’ AND price > 100; Example 3. To display the office number and total price of all furniture in the office where the total is greater than $500 and less than $1000, and list them in descending order. SELECT office_no, SUM(price) FROM furniture GROUP BY office no HAVING SUM(price) BETWEEN 500 AND 1000 ORDER BY SUM(price) DESC; Example 4. To join the Furniture and Manufacturer tables to display the manufacturer name along with the furniture ID and type.

SELECT furniture. furn_id, furniture. furn_type, manufacturer.name WHERE furniture .mfgr_id = manufacturer .mfgr_id;

Example 5. To use a subquery to display all furniture that costs more than any desk costs.

SELECT furn_id, furn_type FROM furniture WHERE price ANY (SELECT price FROM furniture WHERE furn_type LIKE ' DES~to Id );

Page 61

Deleting Rows of Data DELETE [ FROM] table [WHERE condition]; Example 1. To delete all rows from the Furniture table for furniture types that are either 'DESKW' or 'DESKM' and the price is greater than or equal to $100. DELETE FROM furniture WHERE furn_type IN ('DESKW','DESKM') AND price >= 100; Adding New Rows of Data INSERT INTO table VALUES; Example 1. To add a new row of data to the Furniture table where the data corresponds to the columns. INSERT INTO furniture VALUES (101,'DESKW','1002',248.03,,'12-NOV-91'); Example 2. To add a new row of data to specified columns in the Furniture table. INSERT INTO furniture(furn_id,furn_type,price) VALUES (101,'DESKW',248.03); Example 3. To add new rows of data to specified columns in the Furniture table limited to only one occurrence of any furniture type with a fixed price. INSERT INTO furniture(furn_type,price) SELECT DISTINCT furn_type,price FROM furn_type; Changing Values in Rows of Data UPDATE table | SET expressions | WHERE condition]; Example 1. To increase the price of all furniture manufactured by ACME Furniture by 8%. (Note: A subquery is again used to find the ID associated with the furniture company.) UPDATE furniture SET price = price | WHERE furniture.mfgr_id = (SELECT mfgr_id FROM manufacturer WHERE name =‘ACME Furniture’);

Page 62

Committing and Rolling Back Data SAVEPOINT savepoin ROLLBACK [WORK] [TO [SAVEPOINT] savepoint] COMMIT [WORK]| Example 1. You are entering data and you establish a save point. You enter some more data, decide the data entered since the save point is actually not correct, so you erase it by rolling back, then you enter more data and commit that data to the database and establish a new savepoint. SAVEPOINT saveptl enter data, then decide you want it deleted; ROLLBACK WORK TO SAVEPOINT savepointl enter more data and decide you want it included in the database COMMIT WORK SAVEPOINT savept2 Data Definition Language (DDL) Statements DDL statements are the commands you will use when creating, altering, dropping, and renaming database objects such as tables, indexes, and all views. Depending upon the database you are using, there are extensions, which can also tell the database how much space to allocate and where to place the table. You will need to use the documentation provided by the database product to use the correct syntax.s Creating a New Table CREATE TABLE table ( column column_type, column column_type, column column_type, . . . ); Example 1. To create the Furniture table with two character columns and one numerical column: CREATE TABLE furniture (furn_id CHAR(8), office_no NUMBER(5,0), furn_type CHAR(20)); NOTE: The data types supported by the various database products vary. you will need to check with the vendor for support and correct syntax. Creating a New Index CREATE [UNIQUE ] INDEX index ON table ( column lASC | DES ], column tASC | DES }, . . . ];

Page 63

Example 1. To create an index called Furnindex on the Furniture table based on furniture type in descending order of price. CREATE INDEX furnindex ON TABLE furniture(furn_type, price DES); Creating a New View CREATE VIEW view_name AS query; Example 1. To create a virtual table so that users can see the manufacturer name from the Manufacturer table alongside the other fields in the Furniture table. CREATE VIEW furnsfgr AS SELECT furniture.furn_id, furniture.furn_type, furniture.price, manufacturer.name FROM furniture, manufacturer WHERE furniture.mfgr_id = manufacturer.mfgr_id; Creating a New Synonym for a Table or View CREATE SYNONYM synonym_name; Example 1. To create an easy to remember and type name for the Furniture table. CREATE SYNONYM f FOR furniture; Altering a Table by Adding New Columns ALTER TABLE table ADD (column column_type, column column_type, column column_type, ...); Example 1. To alter the Furniture table by adding a date column: ALTER TABLE furniture ADD (purchase date DATE); Dropping a Table DROP TABLE table; Example 1. To drop the Furniture table: DROP TABLE furniture

Page 64

Dropping an Index DROP INDEX index; Example 1. To drop an index called Furnindex on the Furniture DROP INDEX furnindex; Dropping a View DROP VIEW view name; Example 1. To drop a virtual table. DROP VIEW furnsfgr; Dropping a Synonym DROP SYNONYM synonym_name; Example 1. To drop the synonym for the Furniture table. | DROP SYNONYM f; Renaming a Tablets View or Synonym RENAME old TO new ; Example 1. To change the name of the Furnmfgr view RENAME furnsfgr TO fm; _

Page 65

APPENDIX B

ORACLE DATABASE SETUP Create an Oracle tablespace Oracle divides its database into divisions called tablespaces. When you created your Oracle database, the SYSTEM tablespace was created for you. This tablespace can be found in every Oracle database. You can also create your own tablespaces to allow more flexible database use. Each tablespace contains at least one database file. To increase the amount of storage in a tablespace, you add database files to the tablespace. In this module you create an Oracle tablespace named GISXX that contains the database file “gisxx.dbs" and 20 MB of storage to be used for project Decature. For MGE projects, the general rule is to make the tablespace at least as twice as large as the import file.

If you do not have system administrator privileges, ask your system administrator to perform the following steps for you. — If you access Oracle remotely, log in at the host system. If you access Oracle locally, start Oracle by keying in oracle and the oracle password. Double-click with the mouse on the SQLPLUS item in the Oracle pull down list. Log in to Oracle by keying in system as the user, and manager as the password. The SQLPLUS prompt is displayed. Before you create the tablespace, check the existing tablespaces to see how much free space they contain by keying in

select tablespace_name, bytes from dba_free_space;

The amount of free space is displayed for each table

Create the new tablespace by keying in

create tablespace gisxx datafile 'c: \database\gisxx.dbs' size 20m; You must put the full path and filename for the above SQL statement in quotation marks.

Page 66

Verify that the tablespace was created by keying in

select tablespace_name from dba_tablespaces; GISXX is listed as one of the tablespaces.

Set up the Oracle user To use MGE, you need Oracle CONNECT privileges to access the project database and to create features, attributes, and categories. In addition, you need Oracle RESOURCE privileges to create tables and indexes. You also need a valid Oracle username and password to create an Oracle schema with MGE. An Oracle schema connects a project to a database. To set up an Oracle user, you give an Oracle username and password and grant privileges to access the database. For this training, your Oracle username is gis##, and your Oracle password is student#. you can use a different username and password, but you must not use a name that already exists on your system. The integrity of the project database depends on the uniqueness of your Oracle username. After you create the Oracle user, you associate this user with the tablespace you created in the previous section. If you do not have system administrator privileges, ask your system administrator to perform the following steps for you.

To create the Oracle user, key in

grant connect,resource to gis## identified by student#; To associate the Oracle user, gis##, with the GISXX tablespace, key in

alter user gis## default tablespace gisxx; When the database is created, it contains the SYSTEM tablespace with a single rollback segment. If you add tablespaces to this database, you must create a second rollback segment for the SYSTEM tablespace. If you have already created a second rollback segment for the SYSTEM tablespace, skip this step. However, if your database contains only the original rollback segment for SYSTEM tablespace, key in

create public rollback segment gisxx_rs tablespace system; Verify that the rollback segment was created by keying in

select segment_name, tablespace_name from sys.dba_rollback_segs;

Page 67

A list of all the rollback segments and the tablespaces with which they are associated is displayed. Log out of Oracle by keying in

exit Setting up to Use the Lessons The several chapters in the MicroStation Database guide contain lessons that utilize sample files to help you learn to use the database interface. Before using any lesson, you must first complete setup procedures These procedures include those covered in “Setting lJp the Database for MicroStation” on page 4-2 of the guide and “Setting Up MicroStation for the Database” on page 4-11 plus others that are specific to the lessons, such as loading the supplied sample data into tables and moving the supplied sample screen forms into the database. Oracle The sample database tables for Oracle arc installed in the directory: i:\gis_project\oracle\db_data. The sample design files are in the directory: i:\gis_project\oracle\dgn_data. Make a directory in the C: drive called mgeproject. Copy the files from: i:\gis_project\oracle\db_data. directory into c:\mgeproject\oracle\db_data. Copy the files from: i:\gis_project\oracle\dgn_data. directory into c:\mgeproject\oracle\dgn_data 1. Ensure that oracle has been warm started, and log into Oracle using sqlplus as follows: connect gis##/student#; 2. In SQLPLUS run the supplied script file mscat.sql" to create the MSCATALOG control table by keying in: @c:\mgeproject\oracle\db_data\mscat.sql This will create the MSCATALOG table

Page 68

3. In SQLPLUS, run the supplied batch/script file 'gis.sql," to create the necessary tables and index files by keying in: @c:\mgeproject\oracle\db_data\gis.sql This will create user tables. 4. Exit SQLPLUS by keying in: exit; 5. Execute the DOS prompt. Change directories to C:\MGEPROJECT|ORACLE|DB_DATA. Run the supplied batch/script file, ' loadgis.bat," to load the supplied data into the tables by keying in: loadgis gis## student#. The program will begin to load the files, and you will be prompted for your oracle password as each file is loaded.

Page 69

APPENDIX C

DATAFILES FEAT.ORA(FEATURES TABLE DATA) LOAD DATA INFILE * REPLACE INTO TABLE FEATURES FIELDS TERMINATED BY '|' OPTIONALLY ENCLOSED '"' TRAILING NULLCOLS (mslink,fcode,fname,category,tablename,ftype,flevel,fstyle,fweight,fcolor,digcmd,cellname) BEGINDATA 1|1004T|LAKE POINT|2|lake|4|51|0|0|7|| 2|1004|LAKE|2| |3|52|0|1|7|| 3|1002|STREAM|2|stream|2|6|0|1|7|| 4|1009|DRAINAGE|2| |2|8|5|0|7|| 5|1002C|STREAM CASING|2| |2|10|0|0|10|| 6|3065L|WATER LINE|3|water_line|2|5|0|1|1|| 7|1051|VALVE - WATER|3|valves|1|58|1|0|0|| 8|1053|HYDRANT|3|fire_hydrant|1|59|0|0|1|| 9|1051R|REDUCER|3|reducers|1|0|57|1|1|| 10|1032|WOODED AREA|8| |3|10|0|1|2|| 11|3700|STUDY AREA|9| |3|20|0|3|7|| 12|1033|WOODED POINT|8|vegetation|4|15|0|0|4|| 13|3701|STUDY AREA POINT|9|study_area|4|21|0|1|4|| 14|3023|ZONE OUTLINE|9| |3|2|2|3|10|| 15|3024|ZONE POINT|9|zoning|4|61|0|1|5|| 16|1011|EDGE OF TRAVELED WAY|1| |2|12|0|1|6|| 17|3033P|PARCEL OUTLINE|6| |3|40|0|2|8|| 18|3033PC|PARCEL POINT|6|parcel|4|41|0|3|7|| 19|3041|SURVEY NOTES|6| |0|42|0|1|8|| 20|3034|ADDRESS TEXT|6| |0|39|0|1|6|| 21|3033|OLD PARCEL NO|6|parcel|0|38|0|1|5|| 22|3022|STREET NAMES|1| |0|20|0|1|6|| 23|1049|STREET LIGHTS|3| |1|56|0|0|5|| 25|3050|COUNTY BOUNDARY|5| |3|50|3|2|1|| 26|3048|CITY BOUNDARY|5| |3|5|3|3|3|| 27|1038|POLE|3| |1|51|0|1|10|| 28|3046|DISTRICT BOUNDARY|5| |3|4|0|3|4|| 29|1034|TREE|8|vegetation|1|32|0|0|2|| 30|3051|COUNTY POINT|5|county|4|51|3|3|1|| 31|3049|CITY POINT|5|city|4|6|3|3|2|| 32|3047|DISTRICT POINT|5|district|4|3|0|2|2|| 33|1010|DRIVEWAY|4| |2|11|0|0|6|| 34|1014|PARKING AREA|4| |3|13|0|0|6|| 35|4010|SLOPE BOUNDARY|8| |3|40|0|0|0||

Page 70

36|4011|SLOPE POINT|8|slope|4|41|0|8|4|| 37|1013|EDGE OF PAVEMENT|1| |2|14|0|0|4|| 38|1017|SIDEWALK|4| |2|19|0|0|6|| 39|3029|SCHOOL|7|comm_facility|1|30|0|1|8|| 40|3028|CHURCH|7|comm_facility|1|30|0|1|8|| 41|1018|DESCRIPTIVE TEXT|4| |0|25|0|0|0|| 42|1019|MANHOLE - ELEV TEXT|3| |0|26|0|0|0|| 43|1020|BRIDGE|1|bridge|1|27|0|1|0|place text| 44|1028|POOL|7| |1|29|0|0|1|| 45|1022|BUILDING OUTLINE|7| |3|30|0|1|4|| 46|1022C|BUILDING POINT|7|building|4|31|0|0|0|| 47|1052|VALVE - GAS|3| |1|58|3|1|0|| 48|1025|TRANSMISSION TOWER|3| |1|32|0|1|3|place lstring| 49|1035|FENCE|4| |2|33|0|0|9|| 50|1036|TRANSMISSION LINE|3|powerline|2|35|5|1|3|place lstring| 51|3001F|FED HWY CL|1|highway|2|10|4|1|3|| 52|3001S|ST HWY CL|1|highway|2|11|2|1|3|| 53|3001L|LOCAL HWY CL|1|highway|2|12|0|0|3|| 54|1037|MANHOLE - RAISED|3| |1|48|0|0|0|| 55|1041|MANHOLE - GENERIC|3| |1|52|0|0|0|| 56|1045|CATCHBASIN|4| |1|53|0|1|1|| 57|1046|RETAINING WALL|4| |2|54|0|1|23|| 58|1048|POLE - EQUIPMENT|3| |1|55|0|1|10|| 59|1050|TRAFFIC SIGNAL|3| |1|57|0|0|5|| 60|1043|MANHOLE - SANITARY|3| |1|50|0|1|0|| 61|1054|POLE - LIGHT|3| |1|60|0|1|10|| HIGH.ORA (HIGHWAY TABLE DATA) LOAD DATA INFILE * REPLACE INTO TABLE HIGHWAY FIELDS TERMINATED BY '|' OPTIONALLY ENCLOSED '"' TRAILING NULLCOLS (mslink,hname,htype,classification,date_created,date_paved,surface_type,surface_rating,weight_limit,height_limit,speed_limit,width,row_width,length,num_of_lanes,division_status,direction,hour_traffic_vl,year_traffic_vl,city,county,state,mapid) BEGINDATA 1|BRIDGEWATER RD|LOCAL|2|1980|1980|1|4|80000|15|35|30|50|436.429|2|2|1|20|175200|KNOXVILLE|47|44|30 2|BRIDGEWATER RD|LOCAL|2|1957|1983|1|5|80000|15|35|30|50|2091.486|2|2|2|20|175200|KNOXVILLE|47|44|30 3|KILDARE DR|LOCAL|2|1978|1978|1|7|80000|15|35|30|50|792.905|2|2|2|20|175200|KNOXVILLE|47|44|30 4|KILDARE DR|LOCAL|2|1978|1978|1|7|80000|15|35|30|50|363.958|2|2|2|20|175200|KNOXVILLE|47|44|30 5|KILDARE DR|LOCAL|2|1978|1978|1|7|80000|15|35|30|50|163.089|2|2|2|20|175200|KNOXVILLE|47|44|30 6|KILLARNEY RD|LOCAL|2|1978|1978|1|7|80000|15|35|30|50|785.54|2|2|1|20|175200|KNOXVILLE|47|44|30 7|LONDONDERRY RD|LOCAL|2|1978|1978|1|7|80000|15|35|30|50|829.001|2|2|1|20|175200|KNOXVILLE|47|44|30 8|LONDONDERRY RD|LOCAL|2|1978|1978|1|7|80000|15|35|30|50|262.131|2|2|1|20|175200|KNOXVILLE|47|44|30 9|KILLARNEY RD|LOCAL|2|1978|1978|1|7|80000|15|35|30|50|276.356|2|2|1|20|175200|KNOXVILLE|47|44|30 10|KINGSTON PK|LOCAL|2|1967|1982|1|6|80000|15|35|30|50|575.7190000000001|2|2|2|20|175200|KNOXVILLE|47|44|30 11|KINGSTON PK|STATE|1|1950|1978|1|7|100000|17|45|80|120|579.143|4|2|2|20|175200|KNOXVILLE|47|44|30 12|KINGSTON PK|STATE|1|1950|1978|1|7|100000|17|45|80|120|370.824|4|2|2|20|175200|KNOXVILLE|47|44|30

Page 71

13|KINGSTON PK|STATE|1|1950|1978|1|7|100000|17|45|80|120|717.869|4|2|2|20|175200|KNOXVILLE|47|44|30 14|KINGSTON PK|STATE|1|1978|1978|1|7|100000|17|45|80|120|62.31|4|2|2|20|175200|KNOXVILLE|47|44|30 15|MARTINWOOD RD|LOCAL|2|1967|1982|1|6|80000|15|35|30|50|55.53|2|2|1|20|175200|KNOXVILLE|47|44|30 16|MARTINWOOD RD|LOCAL|2|1967|1982|1|6|80000|15|35|30|50|403.146|2|2|1|20|175200|KNOXVILLE|47|44|30 17|MARTINWOOD RD|LOCAL|2|1967|1982|1|6|80000|15|35|30|50|984.186|2|2|1|20|175200|KNOXVILLE|47|44|30 18|KINGS WY|LOCAL|2|1967|1982|1|6|80000|15|35|30|50|631.9400000000001|2|2|2|20|175200|KNOXVILLE|47|44|30 19|SANWOOD RD|LOCAL|2|1967|1982|1|6|80000|15|35|30|50|994.331|2|2|1|20|175200|KNOXVILLE|47|44|30 20|GREEN RD|LOCAL|2|1980|1980|1|4|80000|15|35|30|50|2330.615|2|2|2|20|175200|KNOXVILLE|47|44|30 21|OWEN DR|LOCAL|2|1980|1980|1|4|80000|15|35|30|50|387.729|2|2|2|20|175200|KNOXVILLE|47|44|30 22|ARGONNE RD|LOCAL|2|1978|1978|1|7|80000|15|35|30|50|734.377|2|2|1|20|175200|KNOXVILLE|47|44|30 23|I40 W IN|FEDERAL|1|1962|1984|1|3|120000|18|55|40|80|5159.848|2|1|2|20|175200|KNOXVILLE|47|44|30 24|I40 E IN|FEDERAL|1|1962|1984|1|3|120000|18|55|40|80|5179.336|2|1|2|20|175200|KNOXVILLE|47|44|30 25|WALKER SPRINGS RD|LOCAL|2|1965|1982|1|5|80000|15|35|30|50|827.96|2|2|2|20|175200|KNOXVILLE|47|44|30 26|WALKER SPRINGS RD|LOCAL|2|1965|1982|1|5|80000|15|35|30|50|1713.654|2|2|2|20|175200|KNOXVILLE|47|44|30 27|WALKER SPRINGS RD|LOCAL|2|1965|1982|1|5|80000|15|35|30|50|1110.049|2|2|2|20|175200|KNOXVILLE|47|44|30 28|WALKER SPRINGS RD|LOCAL|2|1957|1985|1|3|80000|15|35|30|50|2142.465|2|2|2|20|175200|KNOXVILLE|47|44|30 29|BECKY LN|LOCAL|2|1982|1982|1|5|80000|15|35|30|50|721.172|2|2|1|20|175200|KNOXVILLE|47|44|30 30|BROOME RD|LOCAL|2|1980|1980|1|4|80000|15|35|30|50|740.348|2|2|2|20|175200|KNOXVILLE|47|44|30 31|WALKER SPRINGS RD|LOCAL|2|1965|1982|1|5|80000|15|35|30|50|1864.567|2|2|1|20|175200|KNOXVILLE|47|44|30 32|CORTELAND DR|LOCAL|2|1981|1981|1|5|80000|15|35|30|50|849.276|2|2|1|20|175200|KNOXVILLE|47|44|30 33|CORTELAND DR|LOCAL|2|1981|1981|1|5|80000|15|35|30|50|1357.072|2|2|2|20|175200|KNOXVILLE|47|44|30 34|COVENTRY RD|LOCAL|2|1980|1980|1|4|80000|15|35|30|50|1026.356|2|2|1|20|175200|KNOXVILLE|47|44|30 35|WESTMINSTER RD|LOCAL|2|1981|1981|1|5|80000|15|35|30|50|134.97|2|2|1|20|175200|KNOXVILLE|47|44|30 36|NOT LOADED|LOCAL|2|1981|1981|1|5|80000|15|35|30|50|343.464|2|2|1|20|175200|KNOXVILLE|47|44|30 37|EAST WALKER SPRINGS LN|LOCAL|2|1957|1985|1|3|80000|15|35|30|50|1587.619|2|2|2|20|175200|KNOXVILLE|47|44|30 38|ALEXANDER CAVET DR|LOCAL|2|1980|1980|1|4|80000|15|35|30|50|296.291|2|2|2|20|175200|KNOXVILLE|47|44|30 39|ALEXANDER CAVET DR|LOCAL|2|1980|1980|1|4|80000|15|35|30|50|1011.976|2|2|2|20|175200|KNOXVILLE|47|44|30 40|WINSTON RD|LOCAL|2|1980|1980|1|5|80000|15|35|30|50|1566.769|2|2|1|20|175200|KNOXVILLE|47|44|30 41|WINSTON RD|LOCAL|2|1975|1975|1|8|80000|15|35|30|50|605.119|2|2|1|20|175200|KNOXVILLE|47|44|30 42|WINSTON RD|LOCAL|2|1980|1980|1|5|80000|15|35|30|50|649.878|2|2|1|20|175200|KNOXVILLE|47|44|30 43|KINGSTON PK|STATE|1|1950|1983|1|5|100000|17|45|80|120|1573.214|4|2|2|20|175200|KNOXVILLE|47|44|30 44|KINGSTON PK|STATE|1|1950|1983|1|5|100000|17|45|80|120|388.955|4|2|2|20|175200|KNOXVILLE|47|44|30 45|KINGSTON PK|STATE|1|1950|1983|1|5|100000|17|45|80|120|1002.166|4|2|2|20|175200|KNOXVILLE|47|44|30 46|I40 W IN|FEDERAL|1|1962|1984|1|3|120000|18|55|40|80|2695.667|2|1|2|20|175200|KNOXVILLE|47|44|30 47|I40 E IN|FEDERAL|1|1962|1984|1|3|120000|18|55|40|80|2703.129|2|1|2|20|175200|KNOXVILLE|47|44|30 48|WINSTON RD|LOCAL|2|1980|1980|1|5|80000|15|35|30|50|63.111|2|2|1|20|175200|KNOXVILLE|47|44|30 49|WINSTON RD|LOCAL|2|1980|1980|1|5|80000|15|35|30|50|796.792|2|2|1|20|175200|KNOXVILLE|47|44|30 50|VANOSDALE RD|LOCAL|2|1950|1983|1|4|80000|15|35|30|50|542.619|2|2|1|20|175200|KNOXVILLE|47|44|30 51|BUCKINGHAM DR|LOCAL|2|1954|1983|2|4|80000|15|45|30|50|545.54|2|2|1|20|175200|KNOXVILLE|47|44|30 52|BUCKINGHAM DR|LOCAL|2|1954|1983|2|4|80000|15|45|30|50|726.971|2|2|1|20|175200|KNOXVILLE|47|44|30 53|MORRELL RD|LOCAL|2|1954|1983|2|4|80000|15|45|30|50|2318.154|2|2|1|20|175200|KNOXVILLE|47|44|30 54|KINGSTON PK|STATE|1|1950|1983|1|5|100000|17|45|80|120|1665.4|4|2|2|20|175200|KNOXVILLE|47|44|30 55|KINGSTON PK|STATE|1|1950|1983|1|5|100000|17|45|80|120|2339.444|4|2|2|20|175200|KNOXVILLE|47|44|30 56|BRIDGEWATER RD|LOCAL|2|1980|1980|1|4|80000|15|35|30|50|451.473|2|2|1|20|175200|KNOXVILLE|47|44|30

Page 72

57|ELDERBERRY DR|LOCAL|2|1978|1978|1|7|80000|15|35|30|50|445.662|2|2|2|20|175200|KNOXVILLE|47|44|30 59|PORTSMOUTH RD|LOCAL|2|1978|1978|1|6|80000|15|35|30|50|470.765|2|2|1|20|175200|KNOXVILLE|47|44|30 60|I40 W IN|FEDERAL|1|1962|1984|1|3|120000|18|55|40|80|4295.816|2|1|2|20|175200|KNOXVILLE|47|44|30 61|I40 E IN|FEDERAL|1|1962|1984|1|3|120000|18|55|40|80|4298.264|2|1|2|20|175200|KNOXVILLE|47|44|30 62|BUCKINGHAM DR|LOCAL|2|1954|1983|1|4|80000|15|45|30|50|70.267|2|2|1|20|175200|KNOXVILLE|47|44|30 63|BUCKINGHAM DR|LOCAL|2|1954|1983|2|4|80000|15|45|30|50|237.559|2|2|1|20|175200|KNOXVILLE|47|44|30 64|MEADECREST DR|LOCAL|2|1980|1980|1|4|80000|15|35|30|50|439.926|2|2|1|20|175200|KNOXVILLE|47|44|30 65|MEADECREST DR|LOCAL|2|1980|1980|1|4|80000|15|35|30|50|685.047|2|2|1|20|175200|KNOXVILLE|47|44|30 66|MEADECREST DR|LOCAL|2|1980|1980|1|4|80000|15|35|30|50|1497.091|2|2|1|20|175200|KNOXVILLE|47|44|30 67|MEADECREST DR|LOCAL|2|1980|1980|1|4|80000|15|35|30|50|1411.676|2|2|2|20|175200|KNOXVILLE|47|44|30 68|MEADECREST DR|LOCAL|2|1980|1980|1|4|80000|15|35|30|50|704.223|2|2|2|20|175200|KNOXVILLE|47|44|30 69|SHAWN RD|LOCAL|2|1980|1980|1|4|80000|15|35|30|50|434.022|2|2|1|20|175200|KNOXVILLE|47|44|30 70|COVENTRY RD|LOCAL|2|1980|1980|1|4|80000|15|35|30|50|364.276|2|2|1|20|175200|KNOXVILLE|47|44|30 71|MONTVUE RD|LOCAL|2|1975|1975|1|8|80000|15|35|30|50|410.497|2|2|1|20|175200|KNOXVILLE|47|44|30 72|RUSHBROOK DR|LOCAL|2|1980|1980|1|4|80000|15|35|30|50|308.786|2|2|2|20|175200|KNOXVILLE|47|44|30 73|RUSHBROOK DR|LOCAL|2|1980|1980|1|4|80000|15|35|30|50|238.084|2|2|2|20|175200|KNOXVILLE|47|44|30 74|RUSHBROOK DR|LOCAL|2|1980|1980|1|4|80000|15|35|30|50|318.006|2|2|2|20|175200|KNOXVILLE|47|44|30 75|BRIDGEWATER RD|LOCAL|2|1980|1980|1|4|80000|15|35|30|50|274.286|2|2|1|20|175200|KNOXVILLE|47|44|30 76|BRIDGEWATER RD|LOCAL|2|1980|1980|1|4|80000|15|35|30|50|359.586|2|2|1|20|175200|KNOXVILLE|47|44|30 77|BRIDGEWATER RD|LOCAL|2|1980|1980|1|4|80000|15|35|30|50|410.776|2|2|1|20|175200|KNOXVILLE|47|44|30 78|HAYDEN DR|LOCAL|2|1975|1975|1|8|80000|15|35|30|50|463.376|2|2|2|20|175200|KNOXVILLE|47|44|30 79|BRIDGEWATER RD|LOCAL|2|1980|1980|1|4|80000|15|35|30|50|509.117|2|2|1|20|175200|KNOXVILLE|47|44|30 80|BRIDGEWATER RD|LOCAL|2|1980|1980|1|4|80000|15|35|30|50|486.882|2|2|1|20|175200|KNOXVILLE|47|44|30 81|KEVIN RD|LOCAL|2|1980|1980|1|4|80000|15|35|30|50|979.484|2|2|1|20|175200|KNOXVILLE|47|44|30 82|LONGMEADE DR|LOCAL|2|1980|1980|1|4|80000|15|35|30|50|553.104|2|2|2|20|175200|KNOXVILLE|47|44|30 83|SCHENLEY RD|LOCAL|2|1980|1980|1|4|80000|15|35|30|50|1334.517|2|2|1|20|175200|KNOXVILLE|47|44|30 84|SCHENLEY RD|LOCAL|2|1980|1980|1|4|80000|15|35|30|50|179.379|2|2|2|20|175200|KNOXVILLE|47|44|30 85|HARDWICKE DR|LOCAL|2|1980|1980|1|4|80000|15|35|30|50|1179.585|2|2|2|20|175200|KNOXVILLE|47|44|30 86|HARDWICKE DR|LOCAL|2|1980|1980|1|4|80000|15|35|30|50|2652.027|2|2|2|20|175200|KNOXVILLE|47|44|30 87|BROMLEY LN|LOCAL|2|1980|1980|1|4|80000|15|35|30|50|250.466|2|2|1|20|175200|KNOXVILLE|47|44|30 88|GALLAHER VIEW RD|LOCAL|2|1959|1985|1|5|80000|15|45|30|50|2598.997|2|2|1|20|175200|KNOXVILLE|47|44|30 89|GALLAHER VIEW RD|LOCAL|2|1959|1985|1|5|80000|15|35|30|50|459.053|2|2|1|20|175200|KNOXVILLE|47|44|30 90|KINGSTON PK|STATE|1|1950|1978|1|7|100000|17|45|80|120|1875.35|4|2|2|20|175200|KNOXVILLE|47|44|30 91|LAVISH RD|LOCAL|2|1978|1978|1|7|80000|15|35|30|50|571.478|2|2|1|20|175200|KNOXVILLE|47|44|30 92|KINGSTON PK|STATE|1|1950|1978|1|7|100000|17|45|80|120|591.239|4|2|2|20|175200|KNOXVILLE|47|44|30 93|WALKER SPRINGS RD|LOCAL|2|1957|1985|2|3|80000|15|35|30|50|74.521|2|2|1|20|175200|KNOXVILLE|47|44|30 94|WALKER SPRINGS RD|LOCAL|2|1957|1985|2|3|80000|15|35|30|50|815.149|2|2|1|20|175200|KNOXVILLE|47|44|30 95|WALKER SPRINGS RD|LOCAL|2|1957|1985|2|3|80000|15|35|30|50|275.253|2|2|1|20|175200|KNOXVILLE|47|44|30 96|KINGSTON PK|STATE|1|1950|1978|1|7|100000|17|45|80|120|549.937|4|2|2|20|175200|KNOXVILLE|47|44|30 97|KINGSTON PK|STATE|1|1950|1978|1|7|100000|17|45|80|120|1878.104|4|2|2|20|175200|KNOXVILLE|47|44|30 98|KINGSTON PK|STATE|1|1950|1978|1|7|100000|17|45|80|120|653.0700000000001|4|2|2|20|175200|KNOXVILLE|47|44|30 99|I40 W IN|FEDERAL|1|1962|1984|1|3|120000|18|55|40|80|6129.738|2|1|2|20|175200|KNOXVILLE|47|44|30 100|KINGSRIDGE DR|LOCAL|2|1978|1978|1|7|80000|15|35|30|50|337.83|2|2|1|20|175200|KNOXVILLE|47|44|30

Page 73

101|KINGSRIDGE DR|LOCAL|2|1978|1978|1|7|80000|15|35|30|50|275.155|2|2|1|20|175200|KNOXVILLE|47|44|30 102|KINGSRIDGE DR|LOCAL|2|1978|1978|1|7|80000|15|35|30|50|172.357|2|2|1|20|175200|KNOXVILLE|47|44|30 103|SULTAN LN|LOCAL|2|1978|1978|1|7|80000|15|35|30|50|209.44|2|2|2|20|175200|KNOXVILLE|47|44|30 104|DIANE DR|LOCAL|2|1978|1978|1|7|80000|15|35|30|50|254.638|2|2|1|20|175200|KNOXVILLE|47|44|30 105|GENEVA RD|LOCAL|2|1978|1978|1|7|80000|15|35|30|50|646.752|2|2|2|20|175200|KNOXVILLE|47|44|30 106|GENEVA RD|LOCAL|2|1978|1978|1|7|80000|15|35|30|50|466.143|2|2|2|20|175200|KNOXVILLE|47|44|30 107|SUBURBAN RD|LOCAL|2|1978|1978|1|7|80000|15|35|30|50|1118.058|2|2|1|20|175200|KNOXVILLE|47|44|30 108|SUBURBAN RD|LOCAL|2|1978|1978|1|7|80000|15|35|30|50|732.128|2|2|1|20|175200|KNOXVILLE|47|44|30 109|CARTWRIGHT LN|LOCAL|2|1978|1978|1|7|80000|15|35|30|50|343.906|2|2|2|20|175200|KNOXVILLE|47|44|30 110|SANDHURST DR|LOCAL|2|1978|1978|1|7|80000|15|35|30|50|908.547|2|2|2|20|175200|KNOXVILLE|47|44|30 111|I40 E IN|FEDERAL|1|1962|1984|1|3|120000|18|55|40|80|6129.466|2|1|2|20|175200|KNOXVILLE|47|44|30 112|BEAVERTON RD|LOCAL|2|1978|1978|1|7|80000|15|35|30|50|768.006|2|2|1|20|175200|KNOXVILLE|47|44|30 113|HAYDEN DR|LOCAL|2|1975|1975|1|8|80000|15|35|30|50|450.447|2|2|2|20|175200|KNOXVILLE|47|44|30 114|STRATTON DR|LOCAL|2|1975|1975|1|8|80000|15|35|30|50|1140.423|2|2|1|20|175200|KNOXVILLE|47|44|30 115|LIVINGSTON DR|LOCAL|2|1975|1975|1|8|80000|15|35|30|50|774.5839999999999|2|2|2|20|175200|KNOXVILLE|47|44|30 116|DANBURY RD|LOCAL|2|1975|1975|1|8|80000|15|35|30|50|389.904|2|2|1|20|175200|KNOXVILLE|47|44|30 117|MONTVUE RD|LOCAL|2|1975|1975|1|8|80000|15|35|30|50|253.36|2|2|1|20|175200|KNOXVILLE|47|44|30 118|MONTVUE RD|LOCAL|2|1975|1975|1|8|80000|15|35|30|50|774.611|2|2|1|20|175200|KNOXVILLE|47|44|30 119|GLEASON PL|LOCAL|2|1948|1985|1|4|80000|15|35|30|50|500.0|2|2|2|20|175200|KNOXVILLE|47|44|30 120|GLEASON PL|LOCAL|2|1948|1985|1|4|80000|15|45|30|50|770.962|2|2|2|20|175200|KNOXVILLE|47|44|30 121|GLEASON PL|LOCAL|2|1948|1985|1|4|80000|15|45|30|50|758.087|2|2|2|20|175200|KNOXVILLE|47|44|30 122|GLEASON PL|LOCAL|2|1948|1985|1|4|80000|15|45|30|50|354.077|2|2|2|20|175200|KNOXVILLE|47|44|30 123|GLEASON PL|LOCAL|2|1948|1985|1|4|80000|15|45|30|50|1701.692|2|2|2|20|175200|KNOXVILLE|47|44|30 124|KENDALL RD|LOCAL|2|1975|1975|1|8|80000|15|35|30|50|1672.854|2|2|1|20|175200|KNOXVILLE|47|44|30 125|KENDALL RD|LOCAL|2|1975|1975|1|8|80000|15|35|30|50|560.607|2|2|1|20|175200|KNOXVILLE|47|44|30 126|SILVER MAPLE LN|LOCAL|2|1978|1978|1|7|80000|15|35|30|50|390.035|2|2|1|20|175200|KNOXVILLE|47|44|30 127|FOREST OAK DR|LOCAL|2|1978|1978|1|7|80000|15|35|30|50|117.817|2|2|1|20|175200|KNOXVILLE|47|44|30 128|FOREST LN|LOCAL|2|1978|1978|1|7|80000|15|35|30|50|770.144|2|2|2|20|175200|KNOXVILLE|47|44|30 129|FOREST OAK DR|LOCAL|2|1978|1978|1|7|80000|15|35|30|50|753.47|2|2|1|20|175200|KNOXVILLE|47|44|30 130|RAMSGATE DR|LOCAL|2|1978|1978|1|7|80000|15|35|30|50|1753.06|2|2|2|20|175200|KNOXVILLE|47|44|30 132|WINSTON RD|LOCAL|2|1975|1975|1|8|80000|15|35|30|50|264.387|2|2|1|20|175200|KNOXVILLE|47|44|30 134|DOWNTOWN WEST BV|LOCAL|2|1975|1986|2|3|80000|15|45|30|50|789.644|2|1|1|20|175200|KNOXVILLE|47|44|30 135|DOWNTOWN WEST BV|LOCAL|2|1975|1986|2|3|80000|15|45|30|50|1506.348|2|1|1|20|175200|KNOXVILLE|47|44|30 136|ELDERBERRY DR|LOCAL|2|1978|1978|1|7|80000|15|35|30|50|159.027|2|2|2|20|175200|KNOXVILLE|47|44|30 137|HAYDEN DR|LOCAL|2|1975|1975|1|8|80000|15|35|30|50|1353.908|2|2|2|20|175200|KNOXVILLE|47|44|30 138|HAYDEN DR|LOCAL|2|1975|1975|1|8|80000|15|35|30|50|897.008|2|2|2|20|175200|KNOXVILLE|47|44|30 139|LIVINGSTON DR|LOCAL|2|1975|1975|1|8|80000|15|35|30|50|186.328|2|2|2|20|175200|KNOXVILLE|47|44|30 140|LIVINGSTON DR|LOCAL|2|1975|1975|1|8|80000|15|35|30|50|239.183|2|2|2|20|175200|KNOXVILLE|47|44|30 141|GLEASON DR|LOCAL|2|1948|1985|1|4|80000|15|45|30|50|1184.86|2|2|2|20|175200|KNOXVILLE|47|44|30 142|GLEASON DR|LOCAL|2|1948|1985|1|4|80000|15|45|30|50|127.728|2|2|2|20|175200|KNOXVILLE|47|44|30 143|GLEASON DR|LOCAL|2|1948|1985|1|4|80000|15|45|30|50|2704.091|2|2|2|20|175200|KNOXVILLE|47|44|30 144|GLEASON DR|LOCAL|2|1948|1985|1|4|80000|15|45|30|50|671.171|2|2|2|20|175200|KNOXVILLE|47|44|30 145|NOT LOADED|LOCAL|2|1978|1978|1|7|80000|15|35|30|50|2047.928|2|2|1|20|175200|KNOXVILLE|47|44|30 146|WALKER SPRINGS RD|LOCAL|2|1965|1982|1|5|80000|15|35|30|50|381.423|2|2|2|20|175200|KNOXVILLE|47|44|30 148|COVENTRY RD|LOCAL|2|1980|1980|1|4|80000|15|35|30|50|1020.098|2|2|1|20|175200|KNOXVILLE|47|44|30 149|BRIDGEWATER RD|LOCAL|2|1980|1980|1|4|80000|15|35|30|50|451.559|2|2|1|20|175200|KNOXVILLE|47|44|30

Page 74

133|RAY MEARS BV|CITY|CITY MAINTENANCE|8/20/55|6/7/82|ASPHALT|3|80000|15|35|30|0|0.0|2|UNDIVIDED|EAST-WEST|0|175200|KNOXVILLE|KNOX|TENNESSEE|76 665|MADISON AVE.| | | | | |0|0|0|0|0|0|0.0|0| | |0|0| | | |95 666|GOVERNORS DRIVE| | | | | |0|0|0|0|0|0|0.0|0| | |0|0| | | |95 667|KYSER BLVD.| | | | | |0|0|0|0|0|0|0.0|0| | |0|0| | | |95 668|SULLIVAN LANE| | | | | |0|0|0|0|0|0|0.0|0| | |0|0| | | |95 MAP.ORA (MAP TABLE DATA) LOAD DATA INFILE * REPLACE INTO TABLE MAPS FIELDS TERMINATED BY '|' OPTIONALLY ENCLOSED '"' TRAILING NULLCOLS (mslink,mapname,category,symtable) BEGINDATA 1|cd1.dgn|| 2|cd2.dgn|| 3|cd3.dgn|| 4|cd4.dgn|| 5|cd5.dgn|| 6|cd6.dgn|| 7|cd7.dgn|| 8|cd8.dgn|| 9|cd9.dgn|| 10|cd10.dgn|| MSCATALOG DATA (CONTROL TABLE DATA) LOAD DATA INFILE * APPEND INTO TABLE MSCATALOG FIELDS TERMINATED BY '|' OPTIONALLY ENCLOSED '"' TRAILING NULLCOLS (tablename,entitynum,screenform,reporttable,sqlreview,fencefilter,dastable,formtable) BEGINDATA highway|1|highway|||| parcel|18|parcel|parcel_report|select * from parcel||parcel_das|| features|27|features|||| maps|28|maps|||| PARC.ORA (PARCEL TABLE DATA) LOAD DATA INFILE * REPLACE

Page 75

INTO TABLE PARCEL FIELDS TERMINATED BY '|' OPTIONALLY ENCLOSED '"' (mslink,old_map_no,group_no,parcel_no,trailer_no,clt_no,owner,value,house_num,street_name,city,state,zip_code,county,district,zone_class,block_num,lot_num,subd_name,parc_area,perimeter,mapid) BEGINDATA 1|119-L|A|9| |119-LA 9|CANTRELL WILLIAM B & EVELYN W|9000|220|BRIDGEWATER RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 1|16036.305579|510.819076|6 2|119-L|A|8| |119-LA 8|ADAMS DAVID HOUSTON & FRANCES C|9000|216|BRIDGEWATER RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 1|16452.331612|517.455246|6 3|119-L|A|7| |119-LA 7|GILBERT LOUIE S & MOZELLE G|9000|212|BRIDGEWATER RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UT 1|16332.832127|516.2537579999999|6 4|119-L|A|6| |119-LA 6|STONE CHARLES C & HAZEL P|9000|208|BRIDGEWATER RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UT 1|16021.28407|512.483281|6 5|119-L|A|5| |119-LA 5|WONG HERRY & ROSA CHEUNG|9000|204|BRIDGEWATER RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UT 1|16891.208364|524.647991|6 6|119-L|A|4| |119-LA 4|HEARN CHARLES A & KATHY W|10000|200|BRIDGEWATER RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 1|18993.903716|623.023805|6 7|119| |34| |119 34|CGS LAND COMPANY|675000| |P O BOX 10845|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|CA|0|0| |482205.906518|3170.03174|6 8|119| |34.07| |119 34.07|MASADA INVESTMENT ASSOC LTD|780000| |P O BOX 90444 SUITE 101|KNOXVILLE|TENNESSEE|37990|KNOX|NW-COUNTY|CA|0|0|CORPORATE SQUARE|570057.939737|3389.120984|6 9|119-L|A|14| |119-LA 14|RABY CHARLES D & DELLA MAE|11500|125|BRIDGEWATER RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RB|0|0| |23675.520347|618.396086|6 10|119-L|A|15| |119-LA 15|CRESTWOOD DEV INC|16800|1601|THIRD CREEK RD|KNOXVILLE|TENNESSEE|37921|KNOX|NW-COUNTY|RB|0|0| |86656.59470099999|1554.902587|6 11|119-L|A|16| |119-LA 16|CHURCH WEST KNOXVILLE BAPTIST INC|0|205|BRIDGEWATER RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RB|0|0| |327549.568011|2371.318737|6 12|119-L|A|17| |119-LA 17|PRATT BETTY P|50230|7121|CRESTHILL|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RB|0|0| |214057.110312|1883.644835|6 13|119-L|B|37| |119-LB 37|MYERS A C & MILDRED W|9000|8721|KILDARE|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|17640.976548|564.650018|6 14|119-L|B|36| |119-LB 36|MERRITT NELL M|7200|8717|KILDARE DR|KNOXVILLE|TENNESSEE|37923|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|16668.150007|535.183167|6 15|119-L|B|35| |119-LB 35|DEXTER EDWIN M|9000|8713|KILDARE DR|KNOXVILLE|TENNESSEE|37923|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY|16309.515766|524.053535|6 16|119-L|B|34| |119-LB 34|SHOCKLEY KENNETH F & MAXINE P|9000|8709|KILDARE DR|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY|15850.808043|511.95886|6 17|119-L|B|33| |119-LB 33|COOK RUTH EILEEN|9000|8705|KILDARE DR|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY|15577.013447|508.329752|6 18|119-L|B|32| |119-LB 32|GREENE DOROTHY S|9000|8701|KILDARE DR|KNOXVILLE|TENNESSEE|37923|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY 5- STP|16251.092264|517.249813|6

Page 76

19|119-L|B|31| |119-LB 31|GRIFFIN CHARLES D & HELEN S|9000|954|RUE CROZAT|KNOXVILLE|TENNESSEE|70810|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY|15906.464944|512.666166|6 20|119-L|B|30| |119-LB 30|BROWN GLENN T & KAREN C|9000|8629|KILDARE DR|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY|15700.560789|509.9242|6 21|119-L|B|29| |119-LB 29|KITTS RICHARD ARNOLD & CHERYLL LYNN|9000|8625|KILDARE DR|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|15538.970081|507.774513|6 22|119-L|B|28| |119-LB 28|MARR PHEBE ANN|9000|8621|KILDARE DR|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|15513.966721|507.43496|6 23|119-L|B|27| |119-LB 27|PELA AUGUSTA A & LOICY A|9000|8044|MAYBELLINE WAY|KNOXVILLE|TENNESSEE|95823|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|16002.033146|513.908719|6 24|119-L|B|17| |119-LB 17|SEGASSIE EDWARD E & ABBIE F|9000|8616|KILDARE DR|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|15567.10671|514.381575|6 25|119-L|B|16| |119-LB 16|SHAFFER GENE A & RITA G % HOME FEDERAL SAVINGS|9000|9104|BURKART DR|KNOXVILLE|TENNESSEE|23229|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY SUB|15871.939965|519.17678|6 26|119-L|B|15| |119-LB 15|GOODE LEVAUGHN J & MILDRED B|9500|8624|KILDARE DR|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|18246.939305|572.617758|6 27|119-L|B|14| |119-LB 14|NEWELL BILLY W|10500|132|KILARNEY RD|KNOXVILLE|TENNESSEE|37923|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|18355.021203|531.957868|6 28|119-L|B|13| |119-LB 13|FLOYD JAMES M & NANCY A|8500|128|KILLARNEY RD|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|15377.209842|505.828937|6 29|119-L|B|12| |119-LB 12|MYERS A C & MILDRED W|8500|117|KILLARNEY RD|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|15073.462197|504.193173|6 30|119-L|B|11| |119-LB 11|YOUNG LAWRENCE E & MAGDALENA J|10000|120|KILLARNEY RD|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD PT TR 1|25974.295594|695.068365|6 31|119-L|B|10| |119-LB 10|WILLIAMS RICHARD A & ANGELA|10500|116|KILLARNEY RD|KNOXVILLE|TENNESSEE|37923|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|28906.617003|721.685053|6 32|119-L|B|9| |119-LB 9|COURTNEY ROBERT W & HELEN R|8500|112|KILLARNEY RD|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|15799.567021|545.17774|6 33|119-L|B|8| |119-LB 8|DASH DANIEL P & FERNANDA|9500|113|KILLARNEY RD|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|19400.684359|625.597762|6 34|119-L|B|7| |119-LB 7|MYERS A C & MILDRED W|9500|117|KILLARNEY RD|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|16604.19091|513.285617|6 35|119-L|B|6| |119-LB 6|FULLER JAMES H & MARY L|9500|104|KILLARNEY RD|KNOXVILLE|TENNESSEE|37923|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|20855.9161|790.991883|6 36|119-L|B|5| |119-LB 5|WINSTON HAROLD J & JERRY M|182120|502|MARKET SW|KNOXVILLE|TENNESSEE|37902|KNOX|SW-COUNTY|RB|0|0| |46475.251288|907.344714|6

Page 77

37|119-M|A|1| |119-MA 1|PRINCE JAMES G & BERTIE S|10000|8720|KILDARE DR|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY SUB|15888.011881|507.969311|6 38|119-M|A|13| |119-MA 13|GUY EUGENIA ANNE|8500|133|LONDONDERRY RD|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|15781.113612|512.2798340000001|6 39|119-M|A|14| |119-MA 14|MOON JAMES C & ROBBIE D|8500|129|LONDONBERRY RD|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|15497.268045|512.007566|6 40|119-M|A|15| |119-MA 15|ELAM PHYLLIS|8500|125|LONDONDERRY RD|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|15031.362598|504.126031|6 41|119-M|A|16| |119-MA 16|CORRIER RALPH D & LOLA P|8500|121|LONONDERRY ROAD|KNOXVILLE|TENNESSEE|37923|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|15590.474379|511.079225|6 42|119-M|A|17| |119-MA 17|DIGGS HUBERT G SR|8500|117|LONDONDERRY RD|KNOXVILLE|TENNESSEE|37923|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|15835.743724|514.975322|6 43|119-M|A|18| |119-MA 18|DIGGS HUBERT G SR|8500|113|LONDONDERRY DR|KNOXVILLE|TENNESSEE|37923|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|15174.413364|510.803238|6 44|119-M|A|19| |119-MA 19|GROGAN F FRENCH & THELMA H|9500|109|LONDONDERRY RD|KNOXVILLE|TENNESSEE|37923|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY SUB|19653.61538|620.027479|6 45|119-M|A|20| |119-MA 20|BOWDEN LORELIA A|10500|101|LONDONDERRY RD|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|17433.514931|520.400641|6 46|119-M|A|21| |119-MA 21|HULTS CURTIS E & IANTHA M|10500|105|LONDONDERRY RD|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|20178.296151|787.7671319999999|6 47|119-M|A|2| |119-MA 2|STEINBACHER SHARON L|10500|132|LONDONDERRY DR|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|21845.955571|578.409129|6 48|119-M|A|3| |119-MA 3|MEYER EDWIN ROBERT & TONI L|10500|129|KILLARNEY RD|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|18731.640436|551.581055|6 49|119-M|A|4| |119-MA 4|WOODS JOHN S|8500|125|KILLARNEY RD|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|15457.649851|506.732016|6 50|119-M|A|5| |119-MA 5|KETCHUM PAUL & BEVERLY|8500|121|KILLARNEY DR|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|15217.736182|502.727026|6 51|119-M|A|6| |119-MA 6|MYERS A C & MILDRED W|9500|117|KILLARNEY RD|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|14655.490709|493.849792|6 52|119-M|A|7| |119-MA 7|DASH DANIEL P & FERNANDA M|9000|113|KILLARNEY RD|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|16125.920533|516.962352|6 53|119-M|A|8| |119-MA 8|HUDSON JULIUS F & RHEMA S|10500|112|LONDONDERRY RD|KNOXVILLE|TENNESSEE|37923|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|17285.037384|502.142129|6 54|119-M|A|9| |119-MA 9|LANCE STERLING H SR|9000|116|LONDONBERRY RD|KNOXVILLE|TENNESSEE|37923|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|15113.792544|497.549025|6

Page 78

55|119-M|A|10| |119-MA 10|CLARK ERNEST W & PEGGY S|8500| |LONDONBERRY RD|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|15040.279772|500.440951|6 56|119-M|A|11| |119-MA 11|CARPENTER MICHAEL D & TINA L|8500|124|LONDONDERRY RD|KNOXVILLE|TENNESSEE|37923|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|14292.763406|490.486079|6 57|119-M|A|12| |119-MA 12|WYLIE ANTHONY N & CHRISTINE F|8500|128|LONDONDERRY ROAD|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|15525.467707|506.773082|6 58|119-M|B|1| |119-MB 1|COILE C J JR & CHAROLETTE|9450|8704|KINGSTON PIKE|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RAE|0|0|MERRY WOOD UNIT 1|18408.455005|538.43796|6 59|119-M|B|2| |119-MB 2|MCCLAIN GRANVILLE S & LUCY H|10500|101|ARGONNE RD|KNOXVILLE|TENNESSEE|37923|KNOX|SW-COUNTY|RAE|0|0|KINGSTON PIKE ESTATE SECTION 1|20739.363653|566.882218|6 60|119-M|B|3| |119-MB 3|RUSSELL ALBERT J & OLDA M|10000|8620|KINGSTON PK|KNOXVILLE|TENNESSEE|37923|KNOX|SW-COUNTY|RAE|0|0|KINGSTON PK ESTATES SEC 1|19929.786928|566.233617|6 61|119-M|B|4| |119-MB 4|BROWN DANIEL G & MARGARET P|10000|8616|KINGSTON PK|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RAE|0|0|KINGSTON PK ESTATES SEC 1|20530.019467|584.857943|6 62|119-M|B|19| |119-MB 19|VAUGHN JOHN W & CAROL JUNE|10000|105|ARGONNE RD|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RAE|0|0|KINGSTON PIKE ESTATES SECTION 1|20025.843196|575.833521|6 63|119-M|B|18| |119-MB 18|PIERCE JIMMY J & PATTY H|10500|104|ARGONNE RD|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RAE|0|0|KINGSTON PK ESTATES SEC 1|25747.698381|663.146701|6 64|119| |35| |119 35|B M L INVESTMENTS|816750|820|STATE ST 434N|KNOXVILLE|TENNESSEE|32701|KNOX|SW-COUNTY|CB|0|0| |267312.142925|2394.921232|6 65|119| |38.17| |119 38.17|RODGERS CADILLAC INC|182250|8360|KINGSTON PK|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|CB|0|0| |99108.128302|1606.122918|6 66|119| |38.15| |119 38.15|FIRST UTILITY DIST OF KNOX COUNTY THE|0| |P O BOX 22580|KNOXVILLE|TENNESSEE|37933|KNOX|SW-COUNTY|RB|0|0| |33.511069|23.326489|6 67|119| |36.01| |119 36.01|W B V H PROPERTIES|79800|8706|UNICORN DR|KNOXVILLE|TENNESSEE|37923|KNOX|SW-COUNTY|CB|0|0| |24986.566672|664.060383|6 68|119| |36.02| |119 36.02|RODGERS CADILLAC INC|180180|8360|KINGSTON PK|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|CB|0|0| |61295.427761|1141.131398|6 69|119| |36| |119 36|SCHUBERT M A LSD HOWARD PONTIAC INC|986000|1601|THIRD CREEK RD|KNOXVILLE|TENNESSEE|37921|KNOX|SW-COUNTY|CB|0|0| |291772.155593|2507.259538|6 70|119| |37| |119 37|NCR CORPORATION|300000|1700|SO PATTERSON BLVD|KNOXVILLE|TENNESSEE|45479|KNOX|SW-COUNTY|CB|0|0| |87817.840514|1187.373688|6 71|119| |38.03| |119 38.03|SANFORD GEORGE B|128520|5512|MARILYN DR|KNOXVILLE|TENNESSEE|37914|KNOX|SW-COUNTY|CB|0|0| |58874.16555|970.8232400000001|6 72|119| |38.07| |119 38.07|STORAGE EQUITIES PS PARTNERS II|882700| |P O BOX 25025|KNOXVILLE|TENNESSEE|15025|KNOX|SW-COUNTY|CB|0|0| |296368.021173|2364.526206|6 73|119| |34.04| |119 34.04|DOVER CAPITAL ENTERPRISES INC|313600|122|SOUTH WOOSTER AVE|KNOXVILLE|TENNESSEE|44622|KNOX|NW-COUNTY|PC|0|0| |168548.953356|1948.488528|6 74|119-L|A|10| |119-LA 10|BRACKETT DEKE W & BARBARA W|9500|224|BRIDGEWATER RD|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS|18042.359576|551.665344|6 75|119-L|A|13| |119-LA 13|CGS LAND COMPANY|7000| |P O BOX 10845|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|PR|0|0| |603747.1471300001|3494.714907|6 76|119| |38.16| |119 38.16|VISSER REAL ESTATE INVESTMENTS|166050|13300|E 38TH AVE|KNOXVILLE|TENNESSEE|80239|KNOX|SW-COUNTY|CB|0|0| |53598.754241|993.357427|6

Page 79

77|119-E|C|19.01| |119-EC 19.01|TENNESSEE TRUST CO TR HOLLINGSWORTH ASSOCIATES|100456|1321|MURFREESBORO ROAD|KNOXVILLE|TENNESSEE|72635|KNOX|NW-COUNTY|PR|0|0| |432316.0|2632.63|2 78|119-E|C|19.04| |119-EC 19.04|KNOX COUNTY|89000| | |KNOXVILLE|TENNESSEE|37902|KNOX|NW-COUNTY|RA|0|0| |33165.7|1438.45|2 79|119-E|C|20| |119-EC 20|KIDDER FLORENCE N|20740|711|WALKER SPRINGS RD|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0| |353628.454155|3222.184452|2 80|119-E|C|21| |119-EC 21|KIDDER FLORENCE N|21170|711|WALKER SPRINGS RD|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0| |88975.612326|1442.6751|2 81|119-E|C|22| |119-EC 22|AMBROSE MIRIAM L|44350|705|WALKER SPRINGS RD|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0| |487235.50964|3789.039944|2 82|119-E|C|24| |119-EC 24|CRAWLEY ALBERT B & MARY E|700890| |BOX 11383|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|CA|0|0| |116323.0|1873.46|2 83|120-H|A|3| |120-HA 3|CRAWLEY ALBERT B & MARY E|73610| |P O BOX 11383|KNOXVILLE|TENNESSEE|37919|KNOX|NW-CITY|C-3|0|0| |143677.021263|2229.146383|2 84|119-L|A|2| |119-LA 2|WALKER SPRINGS PROPERTIES|308880|106|WESTERN AVE|KNOXVILLE|TENNESSEE|37914|KNOX|NW-COUNTY|CA|0|0| |42799.072968|840.146689|2 85|119-L|A|1.09| |119-LA 1.09|WALKER SPRINGS PROPERTIES|16800|106|WESTERN AVE|KNOXVILLE|TENNESSEE|37914|KNOX|NW-COUNTY|C-3|0|0| |6576.271861|459.849239|2 86|119-L|A|1.02| |119-LA 1.02|CHURCH PETROLEUM MARKETERS INC|128800| |RT 4|KNOXVILLE|TENNESSEE|37716|KNOX|NW-COUNTY|C-3|0|0| |38706.075412|794.610777|2 87|119-L|A|1.03| |119-LA 1.03|J B F COMPANY & WILBURS|347900|201|SHERLAKE DR|KNOXVILLE|TENNESSEE|37922|KNOX|NW-COUNTY|C-3|0|0| |63518.3|1166.75|2 88|119-L|A|1.04| |119-LA 1.04|STEPHENS WILLIAM J|80000| |BOX 30208|KNOXVILLE|TENNESSEE|37930|KNOX|NW-COUNTY|CA|0|0| |33128.1811|733.858133|2 89|119-L|A|1.05| |119-LA 1.05|COURTSOUTH KNOXVILLE INC|285860| |WALKER SPRINGS RD|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|C-3|0|0| |101309.840351|1687.245937|2 90|119-L|A|1.07| |119-LA 1.07|STEPHENS WILLIAM J & KATHERINE NULLANE|90000| |P O BOX 30208|KNOXVILLE|TENNESSEE|37930|KNOX|NW-COUNTY|CA|0|0| |44371.997944|859.876432|2 91|119-L|A|1.01| |119-LA 1.01|DANIEL LILY FLAGG LTD PARTNERSHIP|789654| |P O BOX 98309|KNOXVILLE|TENNESSEE|30359|KNOX|NW-COUNTY|RB|0|0| |1273500.0|5213.01|2 92|119-L|A|3.01| |119-LA 3.01|BRIDGEWATER ASSOCIATES LTD|990500|9051|EXECUTIVE PK DR|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|CA|0|0| |249897.20529|2505.44219|2 93|119-L|A|3| |119-LA 3|EXXON CORPORATION|369580| |P O BOX 53|KNOXVILLE|TENNESSEE|77001|KNOX|NW-COUNTY|CA|0|0| |99674.139263|1297.79161|2 94|119-L|A|1.06| |119-LA 1.06|DANIEL REALTY CORP % EASLEY-MCCALEB &|476500| |P O BOX 98309|KNOXVILLE|TENNESSEE|30359|KNOX|NW-COUNTY|RB|0|0| |59002.8|989.773|2 95|119-L|A|1.10| |119-LA 1.10|MCCORD KEITH & THORNTON H R JR TRS|65000| |PLAZA TOWER|KNOXVILLE|TENNESSEE|37929|KNOX|NW-COUNTY|CA|0|0| |43342.684542|1217.504121|2 96|119-L|A|1| |119-LA 1|FISER JOHN R TR|910000|201|SHERLAKE RD|KNOXVILLE|TENNESSEE|37922|KNOX|NW-COUNTY|CA|0|0| |2112429.301612|7554.626397|2 97|119-L|A|1.08| |119-LA 1.08|WAL-MART PROPERTIES INC|1365000|701|SOUTH WALTON BLVD|KNOXVILLE|TENNESSEE|72716|KNOX|NW-COUNTY|CA|0|0| |452624.075109|3012.386228|3 98|120-H|A|4| |120-HA 4|FISER JOHN R TR|37800|201|SHERLAKE RD|KNOXVILLE|TENNESSEE|37922|KNOX|NW-CITY|C-3|0|0| |208507.173918|2939.873354|3 99|120-H|A|5| |120-HA 5|WAL-MART PROPERTIES INC #8256|182000| |HWY 71 MITCHELL BLDG|KNOXVILLE|TENNESSEE|72716|KNOX|NW-CITY|C-3|0|0| |87379.006288|1273.351434|3 100|120-H|A|6| |120-HA 6|WAL-MART PROPERTIES INC|195000|701|SOUTH WALTON BLVD|KNOXVILLE|TENNESSEE|72716|KNOX|NW-CITY|C-3|0|0| |65364.490118|1087.92277|3 101|120-H|B|19| |120-HB 19|KNOXVILLE CITY OF K U B|0| | |KNOXVILLE|TENNESSEE|37902|KNOX|NW-CITY|A-1|0|0| |65721.546969|1040.954195|3 102|120-H|B|20| |120-HB 20|WHALEY DOYLE & MARJORIE|36670| |RT 14 WALKER SPRINGS|KNOXVILLE|TENNESSEE|37919|KNOX|NW-CITY|A-1|0|0| |118061.454417|1950.897573|3

Page 80

103|120-H|B|21| |120-HB 21|FRYE TEDDY G & JESSIE D|19430|236|WALKER SPRINGS RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-CITY|O-1|0|0| |24598.632954|643.236472|3 104|120-H|B|22| |120-HB 22|BLAINE DORMAN & CHARLES A HAYS JR|37300| |P O BOX 10147|KNOXVILLE|TENNESSEE|37919|KNOX|NW-CITY|O-1|0|0| |161547.65155|1675.921039|3 105|120-H|B|23| |120-HB 23|EBANKS VERVIL & KATHRYN ANN|15540|262|WALKER SPRINGS RD|KNOXVILLE|TENNESSEE|37923|KNOX|NW-CITY|A-1|0|0| |20124.540596|601.120949|3 106|120-H|B|24| |120-HB 24|BLAINE C DORMAN & HAYS CHARLES A JR|22880| |P O BOX 10147|KNOXVILLE|TENNESSEE|37923|KNOX|NW-CITY|R-1A|0|0| |178584.430387|1866.462911|3 107|120-H|B|25| |120-HB 25|KINGTON CURTIS H & PATRICIA|31290|274|WALKER SPRINGS RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-CITY|A-1|0|0| |52386.488555|1032.116844|3 108|120-H|B|26| |120-HB 26|KNOXVILLE CITY OF|0| | |KNOXVILLE|TENNESSEE|37902|KNOX|NW-CITY|A-1|0|0| |8989.603637|416.671248|3 109|120-H|B|27| |120-HB 27|JODACA INC % JOHN R FISER &|12000|201|SHERLAKE RD|KNOXVILLE|TENNESSEE|37922|KNOX|NW-CITY|RP-1|0|0|ROLL BACK TAXES EFFECTIVE APPLICATION # A-59|1487136.603733|6350.893209|3 110|120-A|F|1| |120-AF 1|MURRAY TED E & MCKINNEY JAMES MICHAEL|14400|123|LAKEHILLS DR|KNOXVILLE|TENNESSEE|37830|KNOX|NW-CITY|R-1E|0|0|CAVET-S STATION|56333.151146|1063.017425|3 111|120-A|F|2| |120-AF 2|ADKINS BOYD L & HARRINGTON GLENARD F|10800|321|BIG TREE LANE|KNOXVILLE|TENNESSEE|37922|KNOX|NW-CITY|R-1E|0|0|CAVET-S STATION|50359.961897|955.394638|3 112|120-A|F|3| |120-AF 3|ADKINS BOYD L & HARRINGTON GLENARD F|10800|321|BIG TREE LANE|KNOXVILLE|TENNESSEE|37922|KNOX|NW-CITY|R-1E|0|0|CAVET-S STATION|43145.996992|891.097678|3 113|120-A|F|4| |120-AF 4|HUGLEY DAVID B & PEGGY C % UNION SECURITY MORTGAGE|18000|3322|W END AVE SU 400|KNOXVILLE|TENNESSEE|37203|KNOX|NW-CITY|R-1E|0|0|CAVET-S STATION|44070.958551|912.680907|3 114|120-A|F|5| |120-AF 5|ADKINS BOYD L & HARRINGTON GLENARD F|10800|321|BIG TREE LANE|KNOXVILLE|TENNESSEE|37922|KNOX|NW-CITY|R-1E|0|0|CAVET-S STATION|47912.275437|944.090735|3 115|120-A|F|8| |120-AF 8|TURNER J L & MARY J|10800|1729|WINDING RIDGE TR|KNOXVILLE|TENNESSEE|37922|KNOX|NW-CITY|R-1E|0|0|CAVET-S STATION|115322.96073|2017.964952|3 116|120-H|B|1| |120-HB 1|SCHUBERT M A TR|8530|1601|THIRD CREEK RD|KNOXVILLE|TENNESSEE|37921|KNOX|NW-CITY|R-1E|0|0| |15117.496449|622.7134589999999|3 117|120-H|B|2| |120-HB 2|LAMBERT FRANK J JR & ELIZABETH J RAND|25920|8306|CORTELAND DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-CITY|R-1E|0|0|WEST HILLS UNIT 9|30416.537981|717.110909|3 118|120-H|B|3| |120-HB 3|SHEEHAN NELL B|14650|8242|CORTELAND DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-CITY|R-1E|0|0|WEST HILLS UNIT 9|22930.657201|620.733061|3 119|120-H|B|4| |120-HB 4|REMENYIK CARL J & JUDITH M|20390|8240|CORTELAND DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-CITY|R-1E|0|0|WEST HILLS UNIT 9|21419.858|599.078543|3 120|120-A|E|28| |120-AE 28|HOLDEN VERA MAI|17000|8237|CORTELAND DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-CITY|R-1E|0|0|WEST HILLS UNIT 9|22365.106584|579.904689|3 121|120-A|E|29| |120-AE 29|DUNCAN JAMES R|20000|8241|WESTMINISTER LANE|KNOXVILLE|TENNESSEE|37919|KNOX|NW-CITY|R-1E|0|0|WEST HILLS UNIT 9|21987.004474|604.891496|3 122|120-A|E|30| |120-AE 30|WALKER GEORGE R JR & HELEN P|20000|8245|WESTMINISTER LANE|KNOXVILLE|TENNESSEE|37919|KNOX|NW-CITY|R-1E|0|0|WEST HILLS UNIT 9|23620.8242|630.445598|3

Page 81

123|120-A|E|31| |120-AE 31|LIVINGSTON JAY H & CARLA B|20000|8249|WESTMINISTER LANE|KNOXVILLE|TENNESSEE|37919|KNOX|NW-CITY|R-1E|0|0|WEST HILLS UNIT 9|21672.380967|594.756164|3 124|120-A|E|32| |120-AE 32|DICKS NEWTON & CLEMENTINE E|20000|8301|CORTELAND DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-CITY|R-1E|0|0|WEST HILLS UNIT 9|22426.974732|580.954236|3 125|120-A|E|33| |120-AE 33|MILES JAMES T & LANDIN W|16020|8307|CORTELAND DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-CITY|R-1E|0|0|WEST HILLS UT 9 ENLRGMENT|16199.88008|528.397751|3 126|120-A|E|34| |120-AE 34|MURPHREE JAMES E & AILEEN S|23970|8313|CORTLAND DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-CITY|R-1E|0|0|WEST HILLS UT 9|24872.990876|625.560029|3 127|120-A|E|35| |120-AE 35|BECKERS ROBERT M & VIVIAN W|22260|8319|CORTELAND DR|KNOXVILLE|TENNESSEE|37909|KNOX|NW-CITY|R-1E|0|0|WEST HILLS UT 9 ENLRGMENT|23382.593468|618.667151|3 128|120-A|A|24| |120-AA 24|STALEY JOHN R & RUTH G|15290|8324|COTELAND DR|KNOXVILLE|TENNESSEE|37909|KNOX|NW-CITY|R-1E|0|0|WEST HILLS UNIT 9|25763.765567|677.491618|3 129|120-A|A|25| |120-AA 25|SWAGLER CAROL ANNE WYLIE|25070|8320|CORTELAND DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-CITY|R-1E|0|0|WEST HILLS UNIT 9|30993.130263|755.033938|3 130|120-A|A|26| |120-AA 26|WHEELER JUDY O|20590|837|FIRST ST|KNOXVILLE|TENNESSEE|54474|KNOX|NW-CITY|R-1E|0|0|WEST HILLS UNIT 9|26390.017819|645.202585|3 131|120-A|A|27| |120-AA 27|HEWGLEY THOMAS B & JOSEPHINE J|26870|8312|CORTELAND DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-CITY|R-1E|0|0|WEST HILLS UNIT 9|36887.257266|810.391555|3 132|120-A|A|28| |120-AA 28|SCHUBERT M A TR|1600|1601|THIRD CREEK RD|KNOXVILLE|TENNESSEE|37921|KNOX|NW-CITY|R-1|0|0| |2794.225346|383.010348|3 133|120-H|B|18| |120-HB 18|WEST END CHURCH OF CHRIST|880|8301|E WALKER SPRINGS RD|KNOXVILLE|TENNESSEE|37923|KNOX|NW-CITY|R-1|0|0|1.25AC ASSESSED 14.75 AC EXEMPT|698341.3893949999|3924.011316|3 134|120-I|A|4.01| |120-IA 4.01|CAIN LILLIE MAE|183600| |P O BOX 50818|KNOXVILLE|TENNESSEE|37950|KNOX|WEST-CITY|C-3|0|0| |19306.884467|558.318215|4 135|120-I|A|4.02| |120-IA 4.02|CAIN LILLIE MAE LSD CAIN PTNRSHIP LTD|136000|8037|KINGSTON PK|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|C-4|0|0| |11751.387223|457.893077|4 136|120-I|A|4.03| |120-IA 4.03|CAIN LILLIE MAE LEASED TO REID MARY W|183260|8041|KINGSTON PIKE|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|C-4|0|0| |15632.58648|504.755811|4 137|120-I|A|4.04| |120-IA 4.04|CAIN LILLIE MAE|223650| |P O BOX 50818|KNOXVILLE|TENNESSEE|37950|KNOX|WEST-CITY|C-4|0|0| |18067.193708|540.056197|4 138|120-I|A|4.05| |120-IA 4.05|CAIN LILLIE MAE LSD OMEGA ENTPRS INC|116420| |P O BOX 50818|KNOXVILLE|TENNESSEE|37950|KNOX|WEST-CITY|C-3|0|0| |14808.006681|525.843618|4 139|120-I|A|4.07| |120-IA 4.07|CAIN LILLIE MAE LSD OMEGA ENTPRS INC|220000| |P O BOX 50818|KNOXVILLE|TENNESSEE|37950|KNOX|WEST-CITY|C-3|0|0| |74119.534312|1158.69342|4 140|120-I|A|4.08| |120-IA 4.08|CAIN LILLIE MAE|93500|8033|KINGSTON PIKE|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|C-4|0|0| |8794.12695|429.588585|4 141|120-I|A|4.09| |120-IA 4.09|CAIN LILLIE MAE #415020 LSD CAIN PTNRSHIP LTD|170000| |P O BOX 428|KNOXVILLE|TENNESSEE|67201|KNOX|WEST-CITY|C-4|0|0| |15553.415182|512.068295|4 142|120-I|A|4.10| |120-IA 4.10|CAIN LILLIE % NATIONAL PRIDE|161840|3201|WEST LAKE ST|KNOXVILLE|TENNESSEE|60120|KNOX|WEST-CITY|C-3|0|0| |17405.130704|539.241214|4 143|120-I|A|4.11| |120-IA 4.11|CAIN LILLIE MAE|154700| |P O BOX|KNOXVILLE|TENNESSEE|37950|KNOX|WEST-CITY|C-4|0|0| |13589.628796|481.989751|4 144|120-I|A|4.12| |120-IA 4.12|CAIN LILLIE MAE|371080| |P O BOX 50818|KNOXVILLE|TENNESSEE|37950|KNOX|WEST-CITY|C-3|0|0| |46607.588768|879.946532|4

Page 82

145|120-I|A|4.14| |120-IA 4.14|CAIN LILLIE MAE|54570| |P O BOX 50818|KNOXVILLE|TENNESSEE|37950|KNOX|WEST-CITY|C-3|0|0| |9035.522959|459.316547|4 146|120-I|A|4.15| |120-IA 4.15|CAIN LILLIE MAE SUB LEASE THE FERGUSON REALTY COIN|115960| |P O BOX 50818|KNOXVILLE|TENNESSEE|37950|KNOX|WEST-CITY|C-3|0|0| |13872.865432|513.964071|4 147|120-I|A|4.16| |120-IA 4.16|CAIN LILLIE MAE LSD OMEGA ENTPRS INC|82770| |P O BOX 50818|KNOXVILLE|TENNESSEE|37950|KNOX|WEST-CITY|C-3|0|0| |11927.031877|493.175852|4 148|120-I|A|4.17| |120-IA 4.17|CAIN LILLIE MAE LEASED OMEGA ENTPRS INC|151520| |P O BOX 50818|KNOXVILLE|TENNESSEE|37950|KNOX|WEST-CITY|C-3|0|0| |17999.996243|563.892264|4 149|120-I|A|4.21| |120-IA 4.21|CAIN LILLIE MAE LEASED WESTSIDE INC|80220| |P O BOX 50818|KNOXVILLE|TENNESSEE|37950|KNOX|WEST-CITY|C-3|0|0| |50261.519761|1159.722295|4 150|120-I|A|4.22| |120-IA 4.22|CAIN LILLIE MAE LSD UNION REALTY DEV INC|336600| |P O BOX 50818|KNOXVILLE|TENNESSEE|37950|KNOX|WEST-CITY|C-3|0|0| |124689.140799|1534.61441|4 151|120-I|A|4.23| |120-IA 4.23|CAIN LILLIE MAE LSD TO MAP DEV CORP|1890000| |P O BOX 90223|KNOXVILLE|TENNESSEE|37990|KNOX|WEST-CITY|C-6|0|0| |613359.636435|3485.059008|4 152|120-J|A|9| |120-JA 9|HARPER JAMES L SUITE 1000|102900| |FIDELITY FEDERAL BLDG|KNOXVILLE|TENNESSEE|37219|KNOX|WEST-CITY|C-4|0|0|LION OIL CO|14547.225421|493.800972|4 153|120-J|A|8| |120-JA 8|SCHUBERT M A TR|229500|1601|THIRD CREEK ROAD|KNOXVILLE|TENNESSEE|37921|KNOX|WEST-CITY|C-4|0|0|LION OIL CO|22348.234674|598.404094|4 154|120-J|A|7| |120-JA 7|KRYSTAL REAL ESTATE CO % MARVIN F POER & CO|254750| |P O BOX 98189|KNOXVILLE|TENNESSEE|30359|KNOX|WEST-CITY|C-4|0|0| |26574.827625|664.389289|4 155|120-J|A|6.01| |120-JA 6.01|SCHRIVER ROBERT H JR & JULIA|143790|6905|SHERWOOD DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|C-4|0|0| |27955.29126|686.378432|4 156|120-J|B|1| |120-JB 1|SCHUBERT M A TR|304480|1601|THIRD CREEK RD|KNOXVILLE|TENNESSEE|37921|KNOX|WEST-CITY|C-4|0|0| |69868.846179|1103.837983|4 157|120-J|B|2| |120-JB 2|SCHUBERT M A TR % KEN VANN|188700| |P O BOX 23493|KNOXVILLE|TENNESSEE|37933|KNOX|WEST-CITY|C-4|0|0| |19660.204999|600.919402|4 158|120-J|B|1.01| |120-JB 1.01|WESTERN AUTO SUPPLY CO|211340|2107|GRAND AVE|KNOXVILLE|TENNESSEE|64108|KNOX|WEST-CITY|C-4|0|0| |26838.7891|688.0119|4 159|120-J|B|3.01| |120-JB 3.01|BRIGHT FLETCHER LSD WALDEN BOOK CO INC|250440|1300|FIRST TENN BANK BLDG|KNOXVILLE|TENNESSEE|37402|KNOX|WEST-CITY|C-4|0|0| |41211.568602|905.2115700000001|4 160|120-J|B|18.07| |120-JB 18.07|NORTH WINSTON PROPERTIES|184910|7933|RAY MEARS BLVD|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|C-3|0|0|WEST TOWN COMMERCIAL PARK RESUB|27604.982837|678.190776|4 161|120-I|A|3| |120-IA 3|SOUTHMARK REALTY PARTNERS LTD|1980000| |P O BOX 105|KNOXVILLE|TENNESSEE|30091|KNOX|WEST-CITY|C-6|0|0| |461409.786403|2894.343802|4 162|120-I|A|2| |120-IA 2|SOUTHMARK REALTY PARTNERS LTD|300900| |P O BOX 105|KNOXVILLE|TENNESSEE|30091|KNOX|WEST-CITY|C-6|0|0| |25104.286258|635.971212|4 163|120-I|A|1| |120-IA 1|DOWNTOWN WEST ASSOCIATES LTD % M A TURNER|252880| |P O BOX 90444|KNOXVILLE|TENNESSEE|37990|KNOX|WEST-CITY|C-6|0|0| |26034.455275|647.8181049999999|4 164|120-G|A|4| |120-GA 4|FIRST AMERICAN NATIONAL BANK|88800| |P O BOX 511|KNOXVILLE|TENNESSEE|37901|KNOX|WEST-CITY|C-4|0|0| |82497.065086|1492.934181|4 165|120-G|A|5| |120-GA 5|SOHIO OIL COMPANY LEASED GULF OIL COMPANY|278400|200|PUBLIC SQUARE|KNOXVILLE|TENNESSEE|44114|KNOX|WEST-CITY|C-4|0|0| |25888.035721|645.4800300000001|4 166|120-G|A|6| |120-GA 6|BOBS PACKAGE STORE INC WINSTON RD PROPERTIES|224780| |P O BOX 11442|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|C-4|0|0|NR|29625.302837|696.124693|4 167|120-G|A|7| |120-GA 7|KNOXVILLE OFFICE PARTNERS LTD|494000|12700|PRESTON RD SU 200|KNOXVILLE|TENNESSEE|75230|KNOX|WEST-CITY|C-4|0|0| |112015.627755|1421.788417|4 168|120-B|F|1| |120-BF 1|YOUNG MENS CHRISTIAN ASSOC|0|400|WINSTON RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-CITY|R-1|0|0| |583088.117496|3106.454049|4 169|120-H|B|15| |120-HB 15|CHURCH WEST HILLS BAPTIST|0|409|N WINSTON RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-CITY|R-1|0|0| |117316.12144|1455.500433|4 170|120-H|B|16| |120-HB 16|CAIN LILLIE MAE % TOM CAMDEN|7550| |P O BOX 10267|KNOXVILLE|TENNESSEE|37939|KNOX|NW-CITY|RP-1|0|0| |1673183.710103|5967.458703|4

Page 83

171|120-H|B|17| |120-HB 17|CHURCH WEST HILLS BAPTIS|0|409|N WINSTON RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-CITY|R-1|0|0| |323641.148015|2316.217944|4 172|120-H|B|5| |120-HB 5|SUGANTHARAJ DEVADAS G & CHRISTIANA R|20540| |P O BOX 767|KNOXVILLE|TENNESSEE|37919|KNOX|NW-CITY|R-1E|0|0|WEST HILLS UNIT 9|21176.503203|596.0548669999999|4 173|120-H|B|6| |120-HB 6|PATTON THOMAS W & LUCIE S|20540|8232|CORTELAND DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-CITY|R-1E|0|0|WEST HILLS UNIT 9|21846.5653|602.8150460000001|4 174|120-H|B|7| |120-HB 7|OKELLEY GROVER D & GENIE RAE S|20540|8228|CORTELAND DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-CITY|R-1E|0|0|WEST HILLS UNIT 9|22194.25968|606.052283|4 175|120-H|B|8| |120-HB 8|MARVET BERNARD H & MURIEL W|20540|8224|CORTELAND DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-CITY|R-1E|0|0|WEST HILLS UNIT 9|20673.283374|588.37461|4 176|120-H|B|9| |120-HB 9|SCHNEIDER LOUIS K & JEAN H|20540|8220|CORTELAND DR|KNOXVILLE|TENNESSEE|37909|KNOX|NW-CITY|R-1E|0|0|WEST HILLS UNIT 9|22690.672177|610.471811|4 177|120-H|B|10| |120-HB 10|KING HENRY M & MAY L|20540|8216|CORTELAND DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-CITY|R-1E|0|0|WEST HILLS UNIT 9|20938.545015|590.020432|4 178|120-H|B|11| |120-HB 11|MILES FERDINAND W & JUNE CLINE|20540|8212|CORTELAND DR|KNOXVILLE|TENNESSEE|37909|KNOX|NW-CITY|R-1E|0|0|WEST HILLS UNIT 9|21230.091955|592.721841|4 179|120-H|B|12| |120-HB 12|PULEO CHARLES M & C MICHAELLE|16440|8208|CORTELAND DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-CITY|R-1E|0|0|WEST HILLS|20967.272935|589.091178|4 180|120-H|B|13| |120-HB 13|DYKES TEMPLE J & MARILYN L|22320|8204|CORTELAND|KNOXVILLE|TENNESSEE|37909|KNOX|NW-CITY|R-1E|0|0|WEST HILLS UNIT 9|25626.577665|645.485033|4 181|120-H|B|14| |120-HB 14|LEWIS RICHARD R & GRACE C|25170|8200|CORTELAND DR|KNOXVILLE|TENNESSEE|37909|KNOX|NW-CITY|R-1E|0|0|WEST HILLS UNIT 9|26780.397929|648.92129|4 182|120-I|A|4| |120-IA 4|CAIN LILLIE MAE|176000| |P O BOX 50818|KNOXVILLE|TENNESSEE|37950|KNOX|WEST-CITY|C-6|0|0| |13974.008561|674.334028|4 183|120-I|A|4.06| |120-IA 4.06|CAIN LILLIE MAE LSD OMEGA ENTPRS INC|76400| |P O BOZ 50818|KNOXVILLE|TENNESSEE|37950|KNOX|WEST-CITY|C-3|0|0| |10347.386398|478.271326|4 184|120-I|A|4.20| |120-IA 4.20|CAIN LILLIE MAE LEASED OMEGA ENTPRS INC|240720| |P O BOX 50818|KNOXVILLE|TENNESSEE|37950|KNOX|WEST-CITY|C-3|0|0| |59782.219603|1102.177894|4 185|120-B|F|30| |120-BF 30|SCRUGGS GEORGE F|31200|225|VANOSDALE RD|KNOXVILLE|TENNESSEE|37909|KNOX|NW-CITY|R-1|0|0| |111065.99821|1537.40606|5 186|120-B|F|31| |120-BF 31|WHITED DONNA LEA|24050|1790|VALLEY RD|KNOXVILLE|TENNESSEE|37862|KNOX|NW-CITY|R-1|0|0|HARRY BEAN PROP PT LOT 3|15342.510506|620.2873499999999|5 187|120-G|B|2| |120-GB 2|ROBERTS LARRY S & SUZANNE|30390|204|VANOSDALE DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-CITY|R-1E|0|0| |75045.29478700001|1258.338942|5 188|120-G|B|3| |120-GB 3|SHERARD GERALD E & FRANCES M|19140|224|VANOSDALE RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-CITY|R-1E|0|0|WEST HILLS|17919.359738|533.87699|5 189|120-G|B|4| |120-GB 4|DERIEUX RALPH B & ELIZABETH D|16800|217|BUCKINGHAM RD|KNOXVILLE|TENNESSEE|37909|KNOX|NW-CITY|R-1E|0|0|WEST HILLS UNIT 6|17911.718671|538.483819|5 190|120-G|B|5| |120-GB 5|DERIEUX RALPH B & ELIZABETH D|13440|217|BUCKINGHAM RD|KNOXVILLE|TENNESSEE|37909|KNOX|NW-CITY|R-1E|0|0|WEST HILLS UNIT 6|17803.197684|536.977351|5

Page 84

191|120-G|B|6| |120-GB 6|DERIEUX RALPH B & ELIZABETH D|14400|217|BUCKINGHAM RD|KNOXVILLE|TENNESSEE|37909|KNOX|NW-CITY|R-1E|000Y|0000|WEST HILLS PT 4 & 5 INCLUDES ACREAGE|51963.986001|1023.456976|5 192|120-G|B|1| |120-GB 1|EPPS JOYCE S|5250|585|W CHARLENE DRIVE|KNOXVILLE|TENNESSEE|38583|KNOX|NW-CITY|R-1E|0|0| |15310.72164|832.588471|5 193|120-F|A|9| |120-FA 9|SCHAAD JOHN H TRUSTEE|470400| |P O BOX 50818|KNOXVILLE|TENNESSEE|37950|KNOX|WEST-CITY|C-4|0|0| |180812.887121|2103.025719|5 194|120-F|A|10| |120-FA 10|SCHUBERT M A TR LSD HUMBLE OIL CO|299680|1601|THIRD CREEK RD|KNOXVILLE|TENNESSEE|37921|KNOX|WEST-CITY|C-4|0|0| |35409.66388|787.250929|5 195|120-F|A|11| |120-FA 11|MAHONEY ELIZABETH W % MACK A GENTRY|133320| |P O BOX 1275|KNOXVILLE|TENNESSEE|37901|KNOX|WEST-CITY|C-4|0|0| |16757.512992|526.24958|5 196|120-F|A|9.01| |120-FA 9.01|SCHAAD JOHN H TRUSTEE LEASED EAST TENNESSEE|108140| |P O BOX 11527|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|C-4|0|0| |10371.371722|401.000943|5 197|120-G|B|9| |120-GB 9|TENN STATE OF|0| | |KNOXVILLE|TENNESSEE|37902|KNOX|WEST-CITY|C-5|0|0| |46298.219213|897.58113|5 198|120-G|B|10| |120-GB 10|LONGER ENTERPRISES INC WESTERN FED SAVINGS &|611040|14755|PRESTON RD SU 625|KNOXVILLE|TENNESSEE|75240|KNOX|WEST-CITY|C-5|0|0| |94452.42783099999|1231.956243|5 199|120-G|B|11| |120-GB 11|CAIN LILLIE MAE LSD RAMADA INN|188420|7621|KINGSTON PK|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|C-5|0|0| |36618.466757|829.172399|5 200|120-G|A|1| |120-GA 1|CAIN LILLIE MAE LSD KNOX RESORTS INC|1200770|7723|KINGSTON PK|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|C-5|0|0| |240655.362449|2017.720818|5 201|120-G|A|2| |120-GA 2|SAN FRANCISCO FOUNDATION|342590|500|WASHINGTON ST 8TH FL|KNOXVILLE|TENNESSEE|94111|KNOX|WEST-CITY|C-4|0|0| |31387.413294|758.5228519999999|5 202|120-G|A|3| |120-GA 3|MARO INC|325440| |P O BOX 11988|KNOXVILLE|TENNESSEE|40579|KNOX|WEST-CITY|C-4|0|0| |45293.615965|863.5335250000001|5 203|120-G|A|4.02| |120-GA 4.02|FEDERAL DEPOSIT INSURANCE CORP|407000| |P O BOX 15154|KNOXVILLE|TENNESSEE|37901|KNOX|WEST-CITY|C-4|0|0| |81242.97321700001|1167.702154|5 204|120-G|A|4.03| |120-GA 4.03|MCLEAN DONALD M SCHMID ROBERT A|268800|1147|CLINCH AVE|KNOXVILLE|TENNESSEE|37901|KNOX|WEST-CITY|C-4|0|0| |39629.240247|819.240686|5 205|120-G|A|4.04| |120-GA 4.04|WARDS COMPANY INC|41600|2040|THALBRO ST|KNOXVILLE|TENNESSEE|23230|KNOX|WEST-CITY|C-4|0|0| |154703.304458|2013.828329|5 206|120-J|B|4| |120-JB 4|PEROULAS GUS ETAL|164050|4931|KINGSTON PIKE|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|C-4|0|0| |32543.238279|778.9692669999999|5 207|120-J|B|5| |120-JB 5|SCHUBERT M A TR % THIRD NATL BANK|283050| |P O BOX 2448|KNOXVILLE|TENNESSEE|37901|KNOX|WEST-CITY|C-4|0|0| |30236.348617|701.925797|5 208|120-J|B|6| |120-JB 6|SCHUBERT M A TR LSD KEN FRD CHICKEN|288710| |P O BOX 35910|KNOXVILLE|TENNESSEE|40232|KNOX|WEST-CITY|C-4|0|0| |40812.501965|1138.868767|5 209|120-J|B|7| |120-JB 7|SCHUBERT M A SHELL OIL COMPANY|402390|1601|THIRD CREEK RD|KNOXVILLE|TENNESSEE|37921|KNOX|WEST-CITY|C-4|0|0| |40278.753132|807.555232|5 210|120-J|B|8| |120-JB 8|SCHUBERT M A TR|1128600|1601|THIRD CREEK ROAD|KNOXVILLE|TENNESSEE|37921|KNOX|WEST-CITY|C-4|0|0| |211981.050699|1886.080284|5 211|120-J|B|8.01| |120-JB 8.01|SMITH GORDON T & CYNTHIA V|224550|7824|KINGSTON PK|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|C-4|0|0| |28361.881498|684.580031|5 212|120-J|B|18.01| |120-JB 18.01|SMITH GORDON T & CYNTHIA V|182470|7824|KINGSTON PK|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|C-3|0|0|WEST TOWN COMMERCIAL PARK RESUB|34208.060145|810.926462|5 213|120-K|A|1| |120-KA 1|RREEF USA FUND-II TRUSTEES|12420000|650|CALIFORNIA ST|KNOXVILLE|TENNESSEE|94108|KNOX|WEST-CITY|SC-3|0|0| |2978607.864239|7964.221961|5 214|120-K|A|2| |120-KA 2|AMERICAN TELEPHONE & TELEGRAPH COMPANY|0|706|WALNUT ST BLDG|KNOXVILLE|TENNESSEE|37902|KNOX|WEST-CITY|SC-3|0|0| |2744.267438|209.877154|5 215|119-E|B|9| |119-EB 9|STYLES BETTIE A|10500|725|CEDAR BLUFF RD|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT4 EXT|18781.451721|557.733775|1

Page 85

216|119-F|E|11| |119-FE 11|YELVINGTON JIMMY LEE & JO CAROLYN|11000|729|SCHENLEY RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UN 4 EXT|23137.949294|611.4136140000001|1 217|119-E|C|19.02| |119-EC 19.02|G K R DEVELOPMENT CO|17660|10133|KINGSTON PK|KNOXVILLE|TENNESSEE|37922|KNOX|NW-COUNTY|RA|0|0| |74845.13159800001|1237.397436|1 218|119-E|C|18| |119-EC 18|SLOAN DONALD F & MELODY DAWN|11000|708|E MEADCREST DR|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|22006.655927|596.13716|1 219|119-E|C|17| |119-EC 17|TAYLOR LUTHER T & KATHERINE LONG|10000|704|E MEADCREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|16482.253563|530.135813|1 220|119-E|C|16| |119-EC 16|WOMACK BETHEL H|10500| |BOX 641|KNOXVILLE|TENNESSEE|37901|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|17717.238791|547.955459|1 221|119-E|C|15| |119-EC 15|YOUNG JAMES L & LENORE D|10500|616|MEADECREST|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|19956.475977|580.002516|1 222|119-E|C|14| |119-EC 14|GREENLEY JOHN W & CATHERINE C|10000|612|MEADECREST DR|KNOXVILLE|TENNESSEE|37921|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|18623.053412|572.073639|1 223|119-E|C|13| |119-EC 13|JENNINGS LARRY Q & LINDA N|10000|608|MEADECREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|19118.286468|584.5493739999999|1 224|119-E|C|12| |119-EC 12|DAVIS WILLIAM E & JOAN C|10000|604|MEADECREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|20512.349556|607.6065589999999|1 225|119-E|C|11| |119-EC 11|SHENOUDA AWAD I % COMMERCE FED SAVINGS|11500|7005|MAYNARDVILLE HWY|KNOXVILLE|TENNESSEE|37918|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|28306.29043|682.526482|1 226|119-E|C|10| |119-EC 10|MARTIN WILLIAM C III & MARINE R & MARTIN|10000|305|HARDWICKE DR|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|21657.064669|616.441609|1 227|119-E|C|9| |119-EC 9|HUBER LOUIS H JR & MARY W|9900| |HARDWK DR CRSTWD DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|23359.858095|646.094021|1 228|119-E|C|8| |119-EC 8|SIMS DONALD R & SUSAN C|11000|313|E HARDWICK DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|27095.017081|685.053312|1 229|119-E|C|7| |119-EC 7|YATER LAURIE G|8000|8129|HAYDIN DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|19108.661691|569.146646|1 230|119-E|C|6| |119-EC 6|JONES EDWARD H & JOYCE H|10500|321|HARDWICKE DR|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|18096.516404|552.069196|1 231|119-E|C|5| |119-EC 5|WALKER EARL B & CLEO N|10500|325|HARDWICKE DR|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|19156.42189|571.317169|1 232|119-E|C|4| |119-EC 4|SEYMOUR CHARLES W & VIRGINIA H|10500|329|HARDWICKE DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|20768.872187|596.723673|1 233|119-E|C|3| |119-EC 3|WOODS WALTER EDMOND|10500|333|HARDWICKE DR|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|20911.705122|608.144143|1

Page 86

234|119-E|C|2| |119-EC 2|MULLINIKS NORMA J|11000| |HARDWICKE DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|31715.910753|713.447336|1 235|119-E|C|1| |119-EC 1|BROWN THOMAS GARRETT & SANDRA H|9200|3081|BRIDGEWATER RD|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|26897.610344|665.412022|1 236|119-E|B|14| |119-EB 14|ROSENBERG EUGENE A & PATRICIA M|10500|717|E MEADECREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT4 EXT|18092.936217|548.971149|1 237|119-E|B|15| |119-EB 15|YAGER ROBERT B & CECILLA|10500| |MEADECREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT4 EXT|19193.746063|562.330158|1 238|119-E|B|16| |119-EB 16|THOMAS JOHN DALE & L IRIS|11000|209|MEADCREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|21573.046006|591.219376|1 239|119-E|B|17| |119-EB 17|KOLINSKY PEGGY ANN M|9500|705|MEADECREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|16481.867114|529.002525|1 240|119-E|B|18| |119-EB 18|DIEBOLD RICHARD L & SUSAN L|9500|701|E MEADECREST DR|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|16774.728351|532.478997|1 241|119-E|B|19| |119-EB 19|MILLER SARAH JANE|10500|617|E MEADECREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|18255.295201|550.490032|1 242|119-E|B|20| |119-EB 20|MILLER MEYER M & SARAH E|10500|613|E MEADECREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|18386.321761|551.9952060000001|1 243|119-E|B|21| |119-EB 21|WILLIS BETTYE JUNE|10500| |P O BOX 1991|KNOXVILLE|TENNESSEE|37901|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|20303.854044|603.315578|1 244|119-E|B|22| |119-EB 22|HAIR ALVIN D & LUCILLE S|11000|605|MEADECREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|26182.058001|698.891488|1 245|119-E|B|23| |119-EB 23|BOSSE WORRELL C & ANNA S|11000|601|E MEADECREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|29771.974345|737.394267|1 246|119-E|B|24| |119-EB 24|BLEVINS LILLARD W & ETHEL N|11000|517|MEADCREST DR|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|24256.002607|675.428686|1 247|119-E|B|25| |119-EB 25|JONES JAMES D & HELEN R|11000|513|MEADCREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|22309.74319|629.109881|1 248|119-E|B|26| |119-EB 26|WOOD HARRISON P & MARIE D|10500| |MEADECREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|19544.057607|575.557951|1 249|119-E|B|27| |119-EB 27|WILLIAMS HOYT H & MOZELLA H|10500|505|MEADCREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|17091.629959|528.2121969999999|1 250|119-E|B|28| |119-EB 28|CRAFT JAMES R & BARBARA M|11500|500|BRIDGEWATER RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|23538.313161|602.245803|1 251|119-E|B|29| |119-EB 29|STUMB PAUL C & SHARON S % LIBERTY MORTGAGE &|10500|9050-A|EXECUTIVE PK DR|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|19692.068696|566.228729|1

Page 87

252|119-E|B|30| |119-EB 30|TONEY LEE E III & LESLIE R|10500|508|BRIDGEWATER RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|18729.083657|566.806608|1 253|119-E|B|2| |119-EB 2|COATES CAMERON W & SUZANNE L|9000|704|SCHENLEY RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|19668.258503|575.521734|1 254|119-E|B|3| |119-EB 3|FLEMING EUGENE M & JUANITA K|10500|708|SCHENLEY RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|21159.67531|581.808987|1 255|119-E|B|4| |119-EB 4|ISMAIL KHALDIEH|10000|7024|RIDGECREST TERRACE|KNOXVILLE|TENNESSEE|11209|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|17773.926175|546.154441|1 256|119-E|B|5| |119-EB 5|DARROW JAMES F & PHYLLIS M|10000|716|SCHENLEY RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|17699.386065|545.5147920000001|1 257|119-E|B|6| |119-EB 6|SCRUGGS MICHAEL T & JOYCE K|10500|720|SCHENLEY RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|18275.077621|552.329213|1 258|119-E|B|7| |119-EB 7|JUMPER SIDNEY ROBERT & MARY J|11000|724|SCHENLEY RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|24851.558277|631.837527|1 259|119-E|B|8| |119-EB 8|KANGAS DALE H & MARY ELLEN|11000|728|SCHENLEY RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT4 EXT|21417.021749|590.169299|1 260|119-E|C|19| |119-EC 19|KNOX COUNTY|0| |NO ADDRESS|KNOXVILLE|TENNESSEE|37902|KNOX|NW-COUNTY|RA|0|0| |1043493.13981|5506.822233|1 261|119-E|A|1| |119-EA 1|WISHART JOYCE M|10000|412|BRIDGEWATER RD|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|22498.234191|602.023056|1 262|119-E|A|2| |119-EA 2|HOLT DONALD A & REBECCA H|9000|504|MEADECREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|18035.698507|547.32581|1 263|119-E|A|3| |119-EA 3|ZURAKOWSKI PETER JOHN|9000|102|WHITE OAK|KNOXVILLE|TENNESSEE|58619|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|17419.945089|538.735274|1 264|119-E|A|4| |119-EA 4|BLAIR JIMMY L & MARILYN B|9000|512|MEADCREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|17037.192156|533.4411270000001|1 265|119-E|A|5| |119-EA 5|SHOEMAKER WENDELL H & SHELBY M|9000|305|MEADECREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|16972.282952|532.035155|1 266|119-E|A|6| |119-EA 6|MICALE PAUL & CAROLYN|10000|520|MEADECREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|20856.605519|569.072423|1 267|119-E|A|7| |119-EA 7|STORMER R WAYNE & MARTHA M|10000|308|HARDWICKE DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|18571.095293|538.976896|1 268|119-E|A|8| |119-EA 8|SHOEMAKER MARLEY|9000|312|HARDWICKE DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|16665.771618|529.138332|1 269|119-E|A|9| |119-EA 9|BRADLEY S RAY & FAY E|9000|316|HARDWICKE DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|16109.920798|521.47595|1

Page 88

270|119-E|A|10| |119-EA 10|DRINNEN BRUCE A|10000|320|HARDWICKE DR|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|16143.593341|521.143011|1 271|119-E|A|11| |119-EA 11|SUTTON CLARENCE GORDON & SARAH W|9000|324|HARDWICK DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|15891.255806|517.219343|1 272|119-E|A|12| |119-EA 12|ATCHLEY H B & RUBY C|10000|328|E HARDWICK DR|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|16662.886542|528.308625|1 273|119-E|A|13| |119-EA 13|MORTON MARGARET FRANCES|10000|400|BRIDGEWATER RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|20372.568372|562.570979|1 274|119-E|C|19.03| |119-EC 19.03|CRESTWOOD DEV INC|22240|2100|NEYLAND DR|KNOXVILLE|TENNESSEE|37916|KNOX|NW-COUNTY|F|0|0| |114647.081362|1394.912651|1 275|119-F|C|25| |119-FC 25|TOMLINSON CLAUDE A & CAROLYN H|10000|802|SHAWN DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UN 2 EXT|18474.759311|547.174792|1 276|119-F|C|24| |119-FC 24|WITTE WILLARD T & JEAN H|10500| |MEADECREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UN 2 EXT|24350.52216|628.886353|1 277|119-F|C|26| |119-FC 26|BROCK WILLIAM ROBERT & SANDRA H|10500|806|SHAWN ROAD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UN 2 EXT|34628.443002|806.1141260000001|1 278|119-F|C|7| |119-FC 7|HENRY FREDDIE W & LOLA M|10500|721|COVENTRY RD|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|25152.865056|709.398939|1 279|119-C|D|11| |119-CD 11|SEAY WILLIAM GORDON & HELEN GREENLAW|11000|808|BRIDGEWATER RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|27799.39974|668.82447|1 280|119-C|D|10| |119-CD 10|LEWIS JOHN HARRY & SARAH JO H|10500|804|BRIDGEWATER RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|28784.159809|730.40924|1 281|119-C|D|9| |119-CD 9|HANSON ROBERT R & CAROL J|10500|800|BRIDGEWATER RD|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|33061.131621|721.957262|1 282|119-C|D|8| |119-CD 8|PROFFITT JOE D & MARGARET R|9500|813|KEVIN RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|23576.120867|623.683482|1 283|119-F|E|4| |119-FE 4|BALLARD HORACE H & FRANCES ELAINE|11000|816|KEVIN RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|23350.129426|613.6782889999999|1 284|119-F|G|16| |119-FG 16|BURTON JAMES STEPHEN & LEISA D|10000|501|MEADECREST DR|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|16803.597341|533.542011|1 285|119-F|G|17| |119-FG 17|COLLINS JIMMIE L & ETHEL CHRISTINE|11000|421|MEADECREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 1|33582.53552|740.8249029999999|1 286|119-F|G|18| |119-FG 18|LOWE LAWSON W JR & ETHEL L|10500|417|MEADECREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 1|20512.447205|582.273829|1 287|119-F|G|19| |119-FG 19|DEAN MURRIEL C & MARTHA JANE|10000|413|MEADCREST DR WEST|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 1|16701.361145|521.909744|1

Page 89

288|119-F|G|20| |119-FG 20|SMITH SHERMAN E & WILMA|10000|409|MEADECREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 1|17083.790601|524.767184|1 289|119-F|G|21| |119-FG 21|DOGGETTE JOHN R & KAREN K|10000|405|MEADECREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 1|18214.208321|547.383231|1 290|119-F|G|22| |119-FG 22|GOFF CLIFFORD E & BONNIE R|11000|401|MEADECREST|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 1|20719.19576|571.105216|1 291|119-F|G|23| |119-FG 23|ELLIS PHILLIP R & RACHEL M|11000|400|W HARDWICKE DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 1|21839.054723|588.761122|1 292|119-F|G|24| |119-FG 24|ALLEN CHARLES E & AZALEE|10000|404|HARDWICK DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 1|21027.283163|587.8839819999999|1 293|119-F|G|25| |119-FG 25|HOUSTON LEWIS N & ROBERTA S|10500|408|HARDWICKE DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 1|21743.423453|595.61056|1 294|119-F|G|26| |119-FG 26|BRIDGES COLLEEN P & FRANKLIN T|10000|412|HARDWICK DRIVE|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UT 1|17664.970244|539.310433|1 295|119-F|G|27| |119-FG 27|HOPPER CHARLES J & KATHLEEN D|10000|416|HARDWICKE DR E|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 1|16809.245209|525.83626|1 296|119-F|G|28| |119-FG 28|FOX JAMES A JR & KATRINA H|10000|420|HARDWICK DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 6|17667.139237|541.678088|1 297|119-F|G|29| |119-FG 29|PHILLIPS FLOYD E & DIANNE B|10000|424|HARDWICKE DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UT 1|18866.044159|552.796255|1 298|119-F|G|30| |119-FG 30|WATKINS GEORGE EUGENE & SANDRA SAVOY|10500|428|HARDWICKE DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 1|19629.624333|565.886432|1 299|119-F|G|31| |119-FG 31|SHARP KARL W & SALLY J|11500|432|HARDWICKE DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 1|21402.83016|580.664517|1 300|119-F|G|32| |119-FG 32|WHALEY CLAUD MICHAEL & SHERRY LYNN|10500|500|HARDWICKE DR|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|18284.119167|542.970067|1 301|119-F|G|33| |119-FG 33|WEYERHAEUSER CO|10000|504|HARDWICK DRIVE|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|14446.748095|490.080628|1 302|119-F|G|34| |119-FG 34|WILSON DOUGLAS E & CAROLYN B|10000|508|HARWICKE DR|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|15042.344006|502.601991|1 303|119-F|G|35| |119-FG 35|CORRELL CHARLES C JR & ANGELIA|10000|512|HARDWICKE DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|15984.112226|518.752575|1 304|119-F|G|36| |119-FG 36|HELDMAN LEROY E & SHIRLEY A|10000|516|HARDWICK DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|16311.695622|526.003196|1 305|119-F|F|1| |119-FF 1|CHEEK FRANKLIN D|11500|9147|WESLEY PLACE # 69|KNOXVILLE|TENNESSEE|37922|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|23825.288795|607.915808|1

Page 90

306|119-F|F|2| |119-FF 2|GHEZAWI GLORIA G % GLORIA F WILLIS|10500|9509|COTESWORTH LN|KNOXVILLE|TENNESSEE|37922|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|20929.387346|571.8040580000001|1 307|119-F|F|3| |119-FF 3|BONE CHARLES A & ANN M|11500|513|BROMLEY LANE|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|20173.117395|562.1884659999999|1 308|119-F|F|4| |119-FF 4|BINGHAM CARROLL R & SANDRA K|10500|509|BROMLEY LN|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|22785.428485|634.616618|1 309|119-F|F|5| |119-FF 5|PRZYGOCKI JULIUS VINCENT & DELORES S|10000| |BROMLEY LANE|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2 PT 15|18694.730075|589.452992|1 310|119-F|F|6| |119-FF 6|CRUZE KYLE L & CHARLOTTE K|10500|1812|BROMLEY LANE|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2 PT 15|28411.730926|687.902584|1 311|119-F|F|7| |119-FF 7|LEE ROY E & EMMA P|10500|500|BROMLEY LN|KNOXVILLE|TENNESSEE|37921|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|26275.5763|636.656162|1 312|119-F|F|8| |119-FF 8|GOMBERT GERALD E|10000|504|BROMLEY LN|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|17479.563801|534.921128|1 313|119-F|F|9| |119-FF 9|O-CONNOR HELEN CAMLIN|11000|508|BROMLEY LANE|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS U 2|21889.813028|581.837296|1 314|119-F|F|10| |119-FF 10|FINGALSON DONLEY A & BARBARA S|11000|513|BRIDGEWATER RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|19932.302749|558.6883329999999|1 315|119-F|F|11| |119-FF 11|BRAZLETON WILLIAM P & BARBARA H|10000|509|BRIDGEWATER RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|15536.534709|505.666492|1 316|119-F|F|12| |119-FF 12|WILSON JAMES R & MARGARET|10000|5505|CRESTWOOD DR|KNOXVILLE|TENNESSEE|37914|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|15674.141965|507.697481|1 317|119-F|F|13| |119-FF 13|WYATT FREDERICK J JR & MARGARET E|11000|400|MEADECREST DR|KNOXVILLE|TENNESSEE|32432|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|20905.156782|579.674682|1 318|119-F|F|14| |119-FF 14|HARDWAY CHARLES E & GERALDINE|10500|402|W MEADECREST DR|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|20415.291832|584.073226|1 319|119-F|F|15| |119-FF 15|GAMBOLD BARRY & SHIRLEY H|11000|404|MEADECREST DR|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|21355.918749|597.392521|1 320|119-F|F|16| |119-FF 16|STORER JAMES M & CHARLOTTE|11000| |MEADCREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|21100.031182|594.304814|1 321|119-F|F|17| |119-FF 17|DYE W RALPH & RUBY D|11000| |BOX 10888|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|24613.646134|619.18153|1 322|119-F|F|18| |119-FF 18|CALDWELL JANE L|10500| |MEADECREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|15049.074011|502.595323|1 323|119-F|F|19| |119-FF 19|BARDES ARCHER P & GRACE H|10000|504|MEADECREAST DR|KNOXVILLE|TENNESSEE|37920|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNT 2|14810.645605|496.592057|1

Page 91

324|119-F|F|20| |119-FF 20|POTTS RONALD J & BARBARA|10000|508|MEADECREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|14862.981498|498.243952|1 325|119-F|F|21| |119-FF 21|REHDER JOHN B & JUDITH J|10000|512|MEADECREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|15163.059874|503.208583|1 326|119-F|F|22| |119-FF 22|OWENS DAVID H|10000|516|MEADCREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|15132.63636|504.464891|1 327|119-F|A|19| |119-FA 19|WEYERHAEUSER CO|10000|513|HARDWICK DRIVE|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|21410.121115|626.960182|1 328|119-F|A|20| |119-FA 20|BRENNEMAN SCOTT L & DEBRA LEE|10000|509|HARDWICKE DR|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|20576.350426|616.2990129999999|1 329|119-F|A|21| |119-FA 21|WEYERHAEUSER CO|10000|505|HARDWICK DRIVE|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|20958.129726|617.18512|1 330|119-F|A|22| |119-FA 22|DAVIS FRANK W JR & MARLEY HOOVER|10000| |HARDWICKE DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|24031.454659|643.698325|1 331|119-F|A|23| |119-FA 23|FORRESTER JERRY WAYNE & MARY LYNN|11000|445|HARDWICKE DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 1|27506.254353|688.849856|1 332|119-F|A|24| |119-FA 24|KIRBY WARREN M & SHIRLEY J|10500|441|HARDWICKE DR|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 1|27261.205893|687.130054|1 333|119-F|A|25| |119-FA 25|ROBERTS JOHN T JR & DEBORAH B|10000|437|HARDWICK DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 1|22157.041678|617.05453|1 334|119-F|A|26| |119-FA 26|WHITTINGTON MAXINE|10000|4333|HARDWICKE DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 1|26614.4041|680.202545|1 335|119-F|A|27| |119-FA 27|RANDOLPH W D & PATRICIA K|10000|429|HARDWICKE DR|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 1|21972.705781|617.018297|1 336|119-F|A|28| |119-FA 28|MCRAE HOWARD K & NADINE C|10000|425|HARDWICKE DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 1 PT 5|17454.541118|534.279792|1 337|119-F|A|29| |119-FA 29|STRINGFIELD ALBERT & PAULINE|10500|417|HARDWICKE DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 1 PT 5|17731.267314|534.783566|1 338|119-F|A|30| |119-FA 30|HOWARD PAUL E & EVELYN W|10500|2921|BROADWAY|KNOXVILLE|TENNESSEE|37912|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 1|23279.096058|624.169387|1 339|119-F|A|31| |119-FA 31|BANKS WILLIAM DAVID & NANCY B|10500|409|HARDWICKE DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 1|31399.789957|702.972341|1 340|119-F|A|32| |119-FA 32|OWENS RALPH C & JESSIE C|10000|405|HARDWICKE DR|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 1|19879.798862|590.343564|1 341|119-F|A|33| |119-FA 33|SANDERS FRANK P & MARCELLA R|10500|401|HARDWICKE DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 1|18114.99171|525.788464|1

Page 92

342|119-F|E|1| |119-FE 1|CORNETT JASPER K & ALICE H|11500|712|BRIDGEWATER RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILL UNIT 4|24645.858677|624.019143|1 343|119-L|A|12| |119-LA 12|CRESTWOOD DEV INC|6000|1601|THIRD CREEK RD|KNOXVILLE|TENNESSEE|37921|KNOX|NW-COUNTY|F|0|0| |51827.211739|915.277077|1 344|119-L|A|11| |119-LA 11|LANE NELLIE & R E|11500|228|BRIDGEWATER RD|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 1|39665.035848|787.739977|1 345|119-E|B|31| |119-EB 31|CONNOR HELEN MARIE MABRY|10500| |R 1 COVE POINT LN|KNOXVILLE|TENNESSEE|37922|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|20915.802206|605.081736|1 346|119-E|B|32| |119-EB 32|ADAMS DON A & ANNA L|10500|604|BRIDGEWATER RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|23993.007321|646.114752|1 347|119-E|B|1| |119-EB 1|BEASLEY ALFRED DURANT & SANDRA ELINOR|12000|608|BRIDGEWATER RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|34519.269497|729.765486|1 348|119-F|E|19| |119-FE 19|LIPSCOMB WILMA JEAN W|10500|708|BRIDGEWATER RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|17377.31855|553.07052|1 349|119-F|E|18| |119-FE 18|WEIGEL CHARLOTTE A|10500|704|BRIDGEWATER RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|17413.741457|549.00117|1 350|119-F|E|17| |119-FE 17|SHELTON A PAUL & VIRGINIA KING|11000|700|BRIDGEWATER RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|20728.429375|564.160664|1 351|119-F|E|16| |119-FE 16|BROWN VICTOR A|10000|705|SCHENLEY RD|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|13505.685439|481.837182|1 352|119-F|E|15| |119-FE 15|YATES ROBERT L & SALLY M|10000|709|SCHENLEY RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|16752.265769|549.368747|1 353|119-F|E|14| |119-FE 14|BILLINGSLEY JIMMY C & LINNIE M|10000|713|SCHENLEY RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|18168.537838|566.762571|1 354|119-F|E|13| |119-FE 13|PEEK THOMAS B|10000|717|SCHENLEY RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|16845.342797|536.910467|1 355|119-F|E|12| |119-FE 12|JUNG JAMES E & LETRAN NGUY|8800|721|SCHENLEY RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|22013.966931|598.21835|1 356|119-F|E|2| |119-FE 2|KNIGHT PHILIP T|11000|808|KEVIN RD|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|27870.326417|695.850326|1 357|119-F|E|3| |119-FE 3|GORE RAYMOND E & PAULETTE|11000|812|KEVIN RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|27569.210978|677.994239|1 358|119-F|D|21| |119-FD 21|THIELE TERRILL L % LOMAS & NETTLETON CO|10000|3200|PACIFIC AVE|KNOXVILLE|TENNESSEE|23451|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|17214.042962|550.4492729999999|1 359|119-F|D|20| |119-FD 20|GARRETT ALBERT S JR & LILLIAN W|10000|708|COVENTRY RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|21323.019641|628.378407|1

Page 93

360|119-F|D|19| |119-FD 19|SIMMONS KIMBERLY ANN & ROBERT WALLACE THOMAS|10500|704|COVENTRY RD|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|23141.668539|650.29509|1 361|119-F|D|18| |119-FD 18|MAILHOS LARRY EUGENE & MELINDA HANNAH|10000|700|COVENTRY RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|20246.056151|604.663311|1 362|119-F|D|17| |119-FD 17|SCHAFFER PHILIP WM & PATRICIA E|8500|608|COVENTRY RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|19450.35359|575.557467|1 363|119-F|D|16| |119-FD 16|LOST SEA INC|10500| |P O BOX 2046|KNOXVILLE|TENNESSEE|37901|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|18786.344908|560.476125|1 364|119-F|D|15| |119-FD 15|COX JOHN C JR % D MICHAEL TRANUM|11000| |P O BOX 10568|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HIILLS UNIT 3|23814.366814|616.271734|1 365|119-F|D|14| |119-FD 14|HUNT WILLIAM D & PATRICIA A|10000|8609|RUSHBROOK DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|19854.804928|576.564093|1 366|119-F|D|13| |119-FD 13|ROBINSON DANIEL T & M CATHERINE|10000|8605|RUSHBROOK DR|KNOXVILLE|TENNESSEE|37917|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|20007.589508|575.367991|1 367|119-F|D|12| |119-FD 12|RUSSELL WM MCKINLEY & DORIS LONG|11000|601|BRIDGEWATER RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|21304.689372|578.630254|1 368|119-F|D|11| |119-FD 11|GREENE N MAURICE & DOROTHY G|11500|605|BRIDGEWATER RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|25478.443438|624.525235|1 369|119-F|D|10| |119-FD 10|SCOTT LESLIE B & RUTH H|10500|604|SCHENLEY RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|18622.145075|569.954759|1 370|119-F|D|9| |119-FD 9|HARR WILLIAM E & LAURA W|11000|600|SCHENLEY RD|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|24565.026056|628.246909|1 371|119-F|D|8| |119-FD 8|JONES GEORGE D. AND LINDA K.|11000|598|SCHENLEY RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HLS U 4|27948.009049|669.351279|1 372|119-F|G|39| |119-FG 39|RITCHEY DONALD CARTER & MARY I|10000|600|HARDWICKE DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|17875.036992|543.189509|1 373|119-F|D|7| |119-FD 7|SHERRILL ALVIN B & EVELYN R|7700|701|BRIDGEWOOD ROAD|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|20925.141875|574.7274169999999|1 374|119-F|D|6| |119-FD 6|JONES EARL M|10000|705|BRIDGEWATER RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HLS U 4|17005.527182|540.341005|1 375|119-F|D|5| |119-FD 5|MAY BRYAN T & MARIE O|10000|709|BRIDGEWATER DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|16945.940503|538.185998|1 376|119-F|D|4| |119-FD 4|BAGBY ROLAND M & GLORIA F|10500|713|BRIDGEWATER DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|23046.723823|683.225151|1 377|119-F|D|3| |119-FD 3|ANDERSON NATHAN D & YUN SOON|10000|9047|EXECUTIVE PARK DR|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|18985.294493|574.543726|1

Page 94

378|119-F|D|2| |119-FD 2|RIGGS THEODORE L & EARNEST M|10000|805|BRIDEWATER RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT|17389.77185|536.649418|1 379|119-F|D|1| |119-FD 1|JACOBS JAMES E & MARGARET LOUISE S|11500|720|BRIDGEWATER RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|21487.992501|574.994273|1 380|119-F|C|8| |119-FC 8|LEDBETTER JAMES L & MARY A|10500|717|COVENTRY ROAD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|30245.147492|832.367407|1 381|119-F|C|9| |119-FC 9|DOUGHERTY RICHARD C|8800|713|COVENTRY RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|39367.86639|903.974053|1 382|119-F|C|10| |119-FC 10|CRAIG DAVID G & ELIZABETH A|10000|709|COVENTRY RD|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|24999.908876|701.4779140000001|1 383|119-F|C|11| |119-FC 11|CRAIG DAVID G|10000|709|COVENTRY RD|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|24622.618425|652.058835|1 384|119-F|C|12| |119-FC 12|JOHNSON EARL W & CAROLYN C|9500|701|COVENTRY RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|20206.778472|608.572017|1 385|119-F|C|13| |119-FC 13|VANHOY BLAKE W & MELINDA COOTER|10000|609|COVENTRY RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|20311.519867|605.3427820000001|1 386|119-F|C|14| |119-FC 14|MOOREFIELD CHARLES WILLIAM & MICKI O|10000|605|COVENTRY RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 4|19469.240476|586.476932|1 387|119-F|C|15| |119-FC 15|CHESNEY MICHAEL KENNETH & KAREN|11500|8617|RUSHBROOK DR|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 3|26090.148853|634.902163|1 388|119-F|C|16| |119-FC 16|WOODS LOWELL L & CAROLYN E|11000|600|MEADCREST DRIVE|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|20652.215097|569.792371|1 389|119-F|C|17| |119-FC 17|SWEET DAVID GORDON|10000|604|MEADECREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UT 2|16432.492208|525.613907|1 390|119-F|C|18| |119-FC 18|KRAUSE BARRY W & BARBARA J|10000|608|MEADECREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|16014.509518|519.944972|1 391|119-F|C|19| |119-FC 19|MATHIS M V & CAROLINE S|10000| |MEADECREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|15849.938737|517.568386|1 392|119-F|C|20| |119-FC 20|WILLIAMS MICHAEL L & PATRICIA L|10000|616|MEADCREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|15349.405597|510.908403|1 393|119-F|C|21| |119-FC 21|RAINWATER G BURL|9000|620|MEADECREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|17468.914791|564.170696|1 394|119-F|C|22| |119-FC 22|RHYNE ELMER RAY & PAULA G|11000|624|MEADECREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|25364.903457|648.849991|1 395|119-F|C|23| |119-FC 23|BROWN BARBARA POINTER|10500|700|MEADCREST DR|KNOXVILLE|TENNESSEE|37922|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|21845.228662|609.847806|1

Page 95

396|119-F|B|8| |119-FB 8|BANKSTON RAYMOND H & DEBORAH P|11000|8701|LONGMEADE DR|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|25120.331119|626.250289|1 397|119-F|G|4| |119-FG 4|MASSENGAILLE RUTH EDNA B|10500|625|W MEADECREST DR|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|19312.710095|549.964826|1 398|119-F|G|5| |119-FG 5|BOWSER DANIEL A & MARILYN JO|10000|617|MEADECREST DR|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|19142.932541|584.2311110000001|1 399|119-F|G|6| |119-FG 6|SMITH RICHARD JAY & LOIS C|10500|613|MEADECREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|20227.83104|600.366971|1 400|119-F|G|7| |119-FG 7|ESTILL WALLACE F & ELIZABETH J|10500|609|MEADECREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|19739.683821|593.585961|1 401|119-F|G|8| |119-FG 8|WILBANKS DENNIS R & LOIS MARIE|10000|605|W MEADECREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|19455.897491|601.3703369999999|1 402|119-F|G|9| |119-FG 9|CLONINGER BRUCE W & DOROTHY A|10500|601|MEADECREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|25593.462421|664.865034|1 403|119-F|G|10| |119-FG 10|MILLER GARY S & PATRICIA A|10000| |MEADECREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|16359.295463|529.381269|1 404|119-F|G|11| |119-FG 11|ZELENAK CHARLOTTE LEMMON|10000|521|W MEADECREST DR|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|16563.437306|532.883004|1 405|119-F|G|12| |119-FG 12|HART ANNE F|10000|517|W MEADCREST DR|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|17026.112899|539.4513459999999|1 406|119-F|G|13| |119-FG 13|BIVEN RICHARD D & JANE RUTH|10000|513|W MEADECREST DR|KNOXVILLE|TENNESSEE|37923|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|16534.948794|531.278769|1 407|119-F|G|14| |119-FG 14|CHOATE WILLIAM J & NANCY H|10000| |P O BOX 10025|KNOXVILLE|TENNESSEE|35206|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|16395.319357|523.608487|1 408|119-F|G|15| |119-FG 15|BEEKMAN DANIEL WAYNE & FARSHING ELISABETH|10000|505|MEADECREST DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|17048.938894|527.45119|1 409|119-F|G|37| |119-FG 37|MERRITT DONELYN N SR & GERALDINE H|10000|11805|COUCH MILL RD|KNOXVILLE|TENNESSEE|37932|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|15461.214622|513.392057|1 410|119-F|G|38| |119-FG 38|SMALLING JOHN A & LEANNE|10000|524|HARDWICKE RD|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|17198.546266|535.489516|1 411|119-F|G|40| |119-FG 40|OSBOURN JERRY W & VIVIAN G|10500|604|HARDWICKE DR|KNOXVILLE|TENNESSEE|37919|KNOX|NW-COUNTY|RA|0|0|CRESTWOOD HILLS UNIT 2|20554.879014|581.025665|1 412|120-I|A|11.01| |120-IA 11.01|SCHUBERT M A TR SCHAAD JOHN H TR|271730|1601|THIRD CREEK RD|KNOXVILLE|TENNESSEE|37921|KNOX|SW-COUNTY|CA|0|0| |73981.68057900001|1197.646457|8 413|120-I|A|11.03| |120-IA 11.03|SCHUBERT M A TR SCHAAD JOHN H TR|266400|8413|KINGSTON PIKE|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|CA|0|0| |65214.7114|1156.890346|8 414|120-I|A|10.01| |120-IA 10.01|ENTERPRISE LAND CORPORATION LTD|347210|6408|PAPERMILL BOX 10156|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|C-4|0|0| |41211.957454|800.892845|8

Page 96

415|120-P|A|2.02| |120-PA 2.02|SMOTHERS C C & LAMURIEL S|253940|6212|CRESWELL DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|C-4|0|0| |31167.748602|721.488656|8 416|120-I|B|3.01| |120-IB 3.01|LEAKE DONALDSON M TRUSTEE ET AL|305800|5600|MEADOW GLEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|C-4|0|0| |61087.476072|1041.841135|8 417|120-P|A|1.05| |120-PA 1.05|TURLEY BROTHERS|294000|985|REDDOCH COVE|KNOXVILLE|TENNESSEE|38117|KNOX|SW-COUNTY|CA|0|0| |42205.874933|833.636631|8 418|120-P|A|2.04| |120-PA 2.04|CLAYTON B JOE|188760|4600|CLINTON HWY|KNOXVILLE|TENNESSEE|37912|KNOX|WEST-CITY|C-4|0|0| |56081.909874|966.5323090000001|8 419|120-I|B|3.02| |120-IB 3.02|RODGERS COWAN III LSD TO HARPER THOMAS W|301400|8360|KINGSTON PK|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|C-4|0|0| |60450.820639|1016.065687|8 420|120-I|B|3| |120-IB 3|RODGERS COWAN III % RODGERS CADILLAC INC|734800|8360|KINGSTON PK|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|C-4|0|0| |149190.788098|1635.26389|8 421|120-I|B|4| |120-IB 4|SCHRIVER ROBERT H JR & JULIA D|239460|6905|SHERWOOD DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|C-4|0|0|MORGAN A SCHUBERT|27571.911029|706.247176|8 422|120-I|B|5| |120-IB 5|RICE OLDSMOBILE INC|184930| |P O BOX 1767|KNOXVILLE|TENNESSEE|37901|KNOX|WEST-CITY|C-4|0|0|MORGAN A SCHUBERT|27743.542815|706.775612|8 423|120-I|A|9| |120-IA 9|LONAS W BOYD|119700| |P O BOX 10124|KNOXVILLE|TENNESSEE|37939|KNOX|WEST-CITY|C-3|0|0| |61227.50073|1214.019555|8 424|120-I|A|9.01| |120-IA 9.01|N & N ALIBARA INC|109450|8361|KINGSTON PK|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|C-4|0|0| |107728.117016|1462.861913|8 425|120-I|A|9.02| |120-IA 9.02|KINGSTON FOUR PROPERTIES|702030| |F-28 WEST TOWN MALL|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|C-3|0|0| |93521.158922|1389.138945|8 426|120-I|A|8| |120-IA 8|ANDERSON WILLIAM E & KENNETH LYNN TRUSTEE|560250|8725|GROSPOINT DR|KNOXVILLE|TENNESSEE|37923|KNOX|WEST-CITY|C-3|0|0| |202819.814984|2087.484983|8 427|120-I|A|6| |120-IA 6|SHAGAN MORRIS L|376200|8301|KINGSTON PK|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|C-4|0|0| |242017.091208|2093.008846|8 428|120-I|A|7| |120-IA 7|PILOT OIL CORPORATION|260100| |P O BOX 10146|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|C-3|0|0| |22880.353976|620.761753|8 429|120-I|A|7.01| |120-IA 7.01|A S INVESTORS % AUTO SHACK|244490| |P O BOX 2198|KNOXVILLE|TENNESSEE|38701|KNOX|WEST-CITY|C-3|0|0| |24544.480256|640.171149|8 430|120-I|A|6.01| |120-IA 6.01|SHAGAN MORRIS L LEASED DAVID AIKEN|83540|8301|KINGSTON PIKE|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|C-4|0|0| |7066.953543|347.695898|8 431|120-I|B|7| |120-IB 7|STEAK & ALE REALTY CORP % THE PILLSBURY TAX DEPT|234600|3922|PILLSBURY CENTER|KNOXVILLE|TENNESSEE|55402|KNOX|WEST-CITY|C-4|0|0| |92449.654702|1691.430937|8 432|120-I|B|7.01| |120-IB 7.01|S AND A LEASING CORP|310930|6606|LBJ FREEWAY|KNOXVILLE|TENNESSEE|75240|KNOX|WEST-CITY|C-4|0|0| |52390.22757|1018.284656|8 433|120-I|B|8| |120-IB 8|EAST TENNESSEE NATURAL GAS CO|0|8200|KINGSTON PK|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|C-4|0|0| |1525563.521237|6468.772916|8 434|120-I|B|2| |120-IB 2|CITY OF KNOXVILLE|0| | |KNOXVILLE|TENNESSEE|37902|KNOX|WEST-CITY|A-1|0|0| |1747260.009978|7234.538212|8 435|120-I|B|1| |120-IB 1|CAIN LILLIE MAE % TENN HOUSING DEV|202400|401|CHURCH ST|KNOXVILLE|TENNESSEE|37219|KNOX|WEST-CITY|RP-1|0|0| |408593.025476|2692.478607|8 436|120-P|A|3| |120-PA 3|GALLAHER VIEW BAPTIST CHURCH|0| |GALLAHER VIEW RD|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|A-1|0|0| |120741.84272|1556.473841|8 437|120-P|A|5.01| |120-PA 5.01|SUBURBAN PROPERTIES|189370| |P O BOX 1704|KNOXVILLE|TENNESSEE|37901|KNOX|WEST-CITY|O-3|0|0| |85368.37124199999|1298.37572|8 438|120-P|A|6.01| |120-PA 6.01|SUBURBAN PROPERTIES|50000| |P O BOX 1704|KNOXVILLE|TENNESSEE|37901|KNOX|SW-COUNTY|OB|0|0| |148282.399663|1655.510124|8 439|120-P|A|1.03| |120-PA 1.03|CEMETERY GALLAHER VIEW BAPTIST CHURCH THE TR OF|0| |NO ADDRESS|KNOXVILLE|TENNESSEE|0|KNOX|SW-COUNTY|CA|0|0| |17081.29729|1049.955951|8

Page 97

440|120-P|A|2.01| |120-PA 2.01|CEMETERY GALLAHER VIEW BAPTIST CHURCH THE|0| |NO ADDRESS|KNOXVILLE|TENNESSEE|0|KNOX|WEST-CITY|C-4|0|0| |18365.918943|601.396372|8 441|120-I|A|10| |120-IA 10|ENTERPRISE LAND CORPORATION LTD|274890|6408|PAPERMILL RD|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|C-4|0|0| |61899.927052|1276.770229|8 442|120-I|A|11| |120-IA 11|ENTERPRISE LAND CORPORATION LTD|280000|6408|PAPERMILL BOX 10156|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|CA|0|0| |83329.57130700001|1613.422056|8 443|120-I|A|11.02| |120-IA 11.02|SOUTHERN INDUSTRIAL BANKING|280000|8419|KINGSTON PIKE|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|CA|0|0| |26085.963618|648.190637|8 444|120-P|A|1.02| |120-PA 1.02|FORE MERRITT C JR CAMP GENE B|176280|1111|NORTHSHORE DR|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|CA|0|0| |21936.629803|684.426544|8 445|120-P|A|2| |120-PA 2|FORE MERRITT C JR & GENE B CAMP|64410|1111|NORTHSHORE DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|C-4|0|0| |20846.187651|860.124769|8 446|120-P|A|2.06| |120-PA 2.06|SCHUBERT MORGAN A JR ETAL|26000|201|SHERLAKE RD|KNOXVILLE|TENNESSEE|37922|KNOX|WEST-CITY|C-4|0|0| |5727.479084|496.189592|8 447|120-P|A|2.03| |120-PA 2.03|CLAYTON JOE TR|55000|4600|CLINTON HWY|KNOXVILLE|TENNESSEE|37912|KNOX|WEST-CITY|C-4|0|0| |15706.431418|1156.624698|8 448|120-P|A|1.11| |120-PA 1.11|CLAYTON JOE TR|70000|4600|CLINTON HWY|KNOXVILLE|TENNESSEE|37912|KNOX|SW-COUNTY|CA|0|0| |27478.144462|791.7892890000001|8 449|120-P|A|4| |120-PA 4|GALLAHER VIEW BAPTIST CHURCH|0| |GALLAHER VIEW RD|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|CA|0|0| |605781.705524|3354.560862|8 450|120-P|A|1.04| |120-PA 1.04|SCHUBERT MORGAN A JR ETAL % JOHN FISER|175000|201|SHERLAKE RD|KNOXVILLE|TENNESSEE|37922|KNOX|SW-COUNTY|CA|0|0| |164652.748526|2074.144459|8 451|120-I|B|6| |120-IB 6|RICE KENNETH PAUL & RUTH KISSINGER|1056000|8330|KINGSTON PK|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|C-4|0|0| |208662.009103|2135.47183|8 452|120-I|B|2.01| |120-IB 2.01|RICE OLDSMOBILE INC|12800| |P O BOX 1767|KNOXVILLE|TENNESSEE|37901|KNOX|WEST-CITY|A-1|0|0| |12679.673209|516.620891|8 453|119-L|B|26| |119-LB 26|IRWIN THOMAS L & REVIA MAXINE|9000|8613|KILDARE DR|KNOXVILLE|TENNESSEE|37923|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|15622.10616|509.937341|7 454|119-L|B|25| |119-LB 25|LANGENBRUNNER JOHN G & MARY R|9000|8609|KILDARE DR|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|16028.580042|509.231907|7 455|119-L|B|24| |119-LB 24|KLEIN FRANKLIN C & FRANCES B|10000|8605|KILDARE DR|KNOXVILLE|TENNESSEE|37923|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|20396.701393|577.977413|7 456|119-L|B|23| |119-LB 23|BROWN JAMES EDWARD & MAZIE L|9500|8601|KILDARE DR|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|17140.792097|570.889598|7 457|119-L|B|22| |119-LB 22|MCBRIDE JANE S|10500|8600|KILDARE DR|KNOXVILLE|TENNESSEE|37923|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY|29246.757468|707.527902|7 458|119-L|B|21| |119-LB 21|BALL G PERRY & NORMA|9000|8604|KILDARE DR|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY|15599.451582|525.82517|7 459|119-L|B|18| |119-LB 18|GREENE ROBERT LEE & SHIRLEY ANN|9000|228|NORFOLK DR|KNOXVILLE|TENNESSEE|37922|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|15857.873949|517.8376009999999|7 460|119-L|B|19| |119-LB 19|LARKIN LARRY F|9000|8608|KILDARE DR|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RB|0|0|GREEN VALLEY ADD|15935.646738|516.307261|7 461|119-L|B|20| |119-LB 20|SEGASSIE EDWARD E & ABBIE L|30720|8616|KILDARE|KNOXVILLE|TENNESSEE|37923|KNOX|SW-COUNTY|RB|0|0| |140006.208737|2475.839299|7 462|119-L|B|1| |119-LB 1|GAMBILL LIDA BELLE TRUST LSD WEIGELS INC|248640| |P O BOX 50158|KNOXVILLE|TENNESSEE|1058|KNOX|SW-COUNTY|CA|0|0| |38389.020442|797.3607940000001|7

Page 98

463|119-L|B|1.01| |119-LB 1.01|RUSSELL TED W & DRAMA % ALLEN RUSSELL INC|1650250| |WALKER SPGS-KINGSTON PK|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|CA|0|0| |415530.577069|2773.732349|7 464|119-L|B|3| |119-LB 3|RUSSELL DRAMA GREEN LIFE EST & TED W RUSSELL TR|880430|8601|KINGSTON PK|KNOXVILLE|TENNESSEE|37923|KNOX|SW-COUNTY|CA|0|0| |241602.859836|2115.959457|7 465|119-L|B|4| |119-LB 4|RUSSELL DRAMA GREEN LIFE EST & RUSSELL TED W TR|31000|12219|TORREY PINES|KNOXVILLE|TENNESSEE|37922|KNOX|SW-COUNTY|CA|0|0| |40609.400788|1231.20945|7 466|120-I|A|12| |120-IA 12|FIDELITY FEDERAL SAVINGS & LOAN ASSOCIATION OF|336000|8517|KINGSTON PIKE|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|CA|0|0| |25397.438848|643.639398|7 467|120-I|A|13| |120-IA 13|GAMBILL BESSIE KATE LIDA BELLE & JESSE|362300|9720|TRUCKERS LANE|KNOXVILLE|TENNESSEE|37922|KNOX|SW-COUNTY|CA|0|0| |53226.307517|948.342172|7 468|120-I|A|14| |120-IA 14|GAMBILL LIDA BELLE LSD TEXACO REFINING &|355200|1111|RUSK AVE|KNOXVILLE|TENNESSEE|77002|KNOX|SW-COUNTY|CA|0|0| |38228.470572|800.648581|7 469|120-I|A|12.01| |120-IA 12.01|FIRST CAPITAL COMPANIES|2255750| |P O BOX 98309|KNOXVILLE|TENNESSEE|30359|KNOX|SW-COUNTY|CA|0|0| |560298.090102|3601.146075|7 470|120-P|A|1.14| |120-PA 1.14|FIRESTONE REAL ESTATE & LEASING COMPANY|214900|1200|FIRESTONE PKWY|KNOXVILLE|TENNESSEE|44317|KNOX|SW-COUNTY|CA|0|0| |25559.572353|673.44713|7 471|120-P|A|1.06| |120-PA 1.06|M R I INC|87500|408|CEDAR BLUFF RD|KNOXVILLE|TENNESSEE|37923|KNOX|SW-COUNTY|CA|0|0| |39875.082399|1209.684496|7 472|120-P|A|1.12| |120-PA 1.12|STURM MELVIN S ET AL|193200|119|WESTLOOK CIR|KNOXVILLE|TENNESSEE|37830|KNOX|SW-COUNTY|CA|0|0| |51515.397477|1082.930689|7 473|120-P|A|1.10| |120-PA 1.10|SCHAAD JAMES J TRUSTEE|201600| |P O BOX 50818|KNOXVILLE|TENNESSEE|37950|KNOX|SW-COUNTY|CA|0|0| |34481.491387|770.122221|7 474|120-P|A|1.07| |120-PA 1.07|COMER RICHARD W ETAL % WATER BED SHED|218120|8420|KINGSTON PIKE|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|CA|0|0| |28946.155126|698.9874589999999|7 475|120-P|A|1.13| |120-PA 1.13|SCHAAD LOUIS E JR TR & SCHAAD PATRICK J JR|57250| |P O BOX 50818|KNOXVILLE|TENNESSEE|37950|KNOX|SW-COUNTY|CA|0|0| |27806.640015|675.570863|7 476|120-P|A|1.17| |120-PA 1.17|WINNERS CORP|258060| |P O BOX 184|KNOXVILLE|TENNESSEE|37029|KNOX|SW-COUNTY|CA|0|0| |26013.588303|654.622511|7 477|120-P|A|1.09| |120-PA 1.09|BP OIL INC|333000| |P O BOX 94563|KNOXVILLE|TENNESSEE|44101|KNOX|SW-COUNTY|CA|0|0| |43396.884478|834.084988|7 478|120-P|A|1.15| |120-PA 1.15|WALKER SPRINGS SQUARE PARTNERSHIP|226630|9111|CROSSPARK DR SU 430|KNOXVILLE|TENNESSEE|37923|KNOX|SW-COUNTY|CA|0|0| |154663.747222|1711.634389|7 479|120-P|A|1| |120-PA 1|WALKER SPRINGS SQUARE PARTNERSHIP|226800|9111|CROSS PARK DR|KNOXVILLE|TENNESSEE|37923|KNOX|SW-COUNTY|CA|0|0| |92421.068654|2298.675656|7 480|120-P|A|1.01| |120-PA 1.01|GAMBILL BESSIE KATE & LIDA BELLE|525000| |P O BOX 1919|KNOXVILLE|TENNESSEE|48288|KNOX|SW-COUNTY|CA|0|0| |200993.729155|1939.884124|7 481|119-M|D|23| |119-MD 23|SCHUBERT MORGAN A & MARTHA B|49600|1601|THIRD CREEK RD|KNOXVILLE|TENNESSEE|37921|KNOX|SW-COUNTY|OA|0|0| |136487.248806|1608.15794|7 482|119-M|D|16| |119-MD 16|EDGEWOOD CEMETERY|0| |CARTWRIGHT LN|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RB|0|0| |104921.553841|1377.452646|7 483|119-M|D|17| |119-MD 17|GOELTZ RICHARD T & MERILYN E|16500|8501|CARTWRIGHT LANE|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RAE|0|0|SUBURBAN HILLS UNIT 1|27838.736821|661.406553|7 484|119-M|D|18| |119-MD 18|SAFFOLD JOHN H & ELIZABETH W|15000|8505|CARTWRIGHT LN|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RAE|0|0|SUBURBAN HILLS UNT 1|17675.687808|555.744064|7 485|119-M|D|19| |119-MD 19|CONRAD FREDERICK L JR & LOUISE STITES|17000|8509|CARTWRIGHT LANE|KNOXVILLE|TENNESSEE|37923|KNOX|SW-COUNTY|RAE|0|0|SUBURBAN HILLS UNT 1|22893.781729|635.320575|7

Page 99

486|119-M|D|20| |119-MD 20|PHAM KHAM THANH & TRAN LINH|17500|140|SUBURBAN RD|KNOXVILLE|TENNESSEE|37923|KNOX|SW-COUNTY|RAE|0|0|SUBURBAN HILL UNT 1|23177.335104|607.884935|7 487|119-M|D|21| |119-MD 21|WAGNER JOSEPH P & ANGES H|16000|136|SUBURBAN RD|KNOXVILLE|TENNESSEE|37923|KNOX|SW-COUNTY|RAE|0|0|SUBURBAN HILLS UNT 1|22870.251485|608.359277|7 488|119-M|D|22| |119-MD 22|BAKER ALBERT N & SALLY K|16000|132|SUBURBAN RD|KNOXVILLE|TENNESSEE|37923|KNOX|SW-COUNTY|RAE|0|0|SUBURBAN HILLS UNT 1|16989.103155|539.447855|7 489|119-M|D|12| |119-MD 12|PRINCE THOMAS C III & ANGIE B|16500|204|SUBURBAN RD|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RAE|0|0|SUBURBAN HILLS UNT 1|24128.411291|620.3402129999999|7 490|119-M|D|13| |119-MD 13|BLAIR HERMAN H & MARGARET P|16500|200|SUBURBAN RD|KNOXVILLE|TENNESSEE|37923|KNOX|SW-COUNTY|RAE|0|0|SUBURBAN HILLS UNIT 1|24218.332938|622.944689|7 491|119-M|D|14| |119-MD 14|SILER ELIZABETH I|20000|8504|CARTWRIGHT LANE|KNOXVILLE|TENNESSEE|37923|KNOX|SW-COUNTY|RAE|0|0|SUBURBAN HILLS UNT 1|46633.82117|929.581|7 492|119-M|D|15| |119-MD 15|IRWIN LOUISE M|19000|8500|CARTWRIGHT LN|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RAE|0|0|SUBURBAN HILLS UNT 1|39481.063301|875.678003|7 493|120-P|A|6.03| |120-PA 6.03|SUBURBAN PROPERTIES|50000| |P O BOX 1704|KNOXVILLE|TENNESSEE|37901|KNOX|SW-COUNTY|OB|0|0| |261835.224551|1984.509331|7 494|119-M|C|1| |119-MC 1|BRADLEY BESSIE L|12000|8600|KINGSRIDGE DR|KNOXVILLE|TENNESSEE|37923|KNOX|SW-COUNTY|RAE|0|0|KINGSTON PK ESTATES SEC 1|19676.062306|551.651713|7 495|119-M|C|2| |119-MC 2|PIERCE CHARLES R & MABLE R|4800|8604|SULTON LN|KNOXVILLE|TENNESSEE|37923|KNOX|SW-COUNTY|RAE|0|0|KINGSTON PIKE ESTATE SECTION 1|18423.653508|543.005367|7 496|119-M|C|22| |119-MC 22|PIERCE CHARLES R & MABEL R|10500|8604|SULTON LN|KNOXVILLE|TENNESSEE|37923|KNOX|SW-COUNTY|RAE|0|0|KINGSTON PIKE ESTATES SECTION 1|18593.084802|530.600873|7 497|119-M|C|21| |119-MC 21|SARTELLE HARRY M JR & MARJORIE M|10500|8608|SULTAN LN SW|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RAE|0|0|KINGSTON PK ESTATES SEC 1|19864.310477|571.923776|7 498|119-M|C|20| |119-MC 20|DAVIS JAMES P|10500|8610|SULTAN LN|KNOXVILLE|TENNESSEE|37923|KNOX|SW-COUNTY|RAE|0|0|KINGSTON PK ESTATES SEC 1|21172.998834|598.37353|7 499|119-M|C|19| |119-MC 19|VANN JOHN H & NELLIE G|16500|200|GENEVA ROAD|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RAE|0|0|KINGSTON PK ESTATES SEC 1|31632.079755|676.133009|7 500|119-M|C|18| |119-MC 18|TROTTER MARION G|4600|204|GENEVA RD|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RAE|0|PT|KINGSTON PK EST SEC 1|35653.279674|782.777831|7 501|119-M|F|12| |119-MF 12|COLE T EDWARD & MARY BELL|12000|201|GENEVA RD|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RAE|0|0|KINGSTON PK ESTATES SEC 1|37253.684154|793.741162|7 502|119-M|C|15| |119-MC 15|LUTTRELL W W & HILDA PHILLIPS|20000|220|GENEVA RD|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RAE|0|0|SUBURBAN HILLS UNIT 1 PT 14|23843.845784|617.985265|7 503|119-M|C|16| |119-MC 16|LUTTRELL JOHN M & JUDITH ANN S|16500|216|GENEVA RD|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RAE|0|0|SUBURBAN HILLS UNIT 1 PT 14|16735.237669|524.336242|7

Page 100

504|119-M|C|17| |119-MC 17|BROADY JOSEPH LEROY & MARY ANN J|18000|212|GENEVA RD|KNOXVILLE|TENNESSEE|37923|KNOX|SW-COUNTY|RAE|0|0|SUBURBAN HILLS UNIT 1|24921.786173|658.801526|7 505|119-M|C|4| |119-MC 4|ISENBERG KIM MARIE & JAY THOMAS|12400|1110|W ADAIR DR|KNOXVILLE|TENNESSEE|37918|KNOX|SW-COUNTY|RAE|0|0|SUBURBAN HILLS UT 1|24488.473633|653.536348|7 506|119-M|C|5| |119-MC 5|KAY LULA WILLS|16500|329|VISTA TR|KNOXVILLE|TENNESSEE|37922|KNOX|SW-COUNTY|RAE|0|0|SUBURBAN HILLS UNIT 1|19063.231057|556.58275|7 507|119-M|C|6| |119-MC 6|GARDNER HAZEL|16500|9300|SUBURBAN RD|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RAE|0|0|SUBURBAN HILLS UNIT 1|21381.234315|587.420513|7 508|119-M|C|7| |119-MC 7|WEIGEL GWEN C|17500|143|SUBURBAN RD|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RAE|0|0|SUBURBAN HILL UNT 1|22807.694892|614.678827|7 509|119-M|B|5| |119-MB 5|PARRISH HARVEY LEE & HELEN C|10000|8612|KINGSTON PIKE|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RAE|0|0|KINGSTON PK ESTATES|21278.535358|594.153871|7 510|119-M|B|6| |119-MB 6|MYNATT NORMA F & BILL R|10000|8608|KINGSTON PK|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RAE|0|0|KINGSTON PK ESTATES SEC 1|20022.701296|580.543719|7 511|119-M|B|7| |119-MB 7|GREEN ALLEN C & BLANKENBECKLER ELMER L|10000|8604|KINGSTON PIKE|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RAE|0|0|KINGSTON PK ESTATES SEC 1|20677.474025|588.504268|7 512|119-M|B|8| |119-MB 8|DAVENPORT ROY F & MARY K|10500|8600|KINGSTON PK|KNOXVILLE|TENNESSEE|37923|KNOX|SW-COUNTY|RAE|0|0|KINGSTON PK ESTATES SEC 1|21209.133548|572.7319189999999|7 513|119-M|B|9| |119-MB 9|RAHBAR MOSTAFA & LINDA|10000|8605|KINGSRIDGE DR|KNOXVILLE|TENNESSEE|37921|KNOX|SW-COUNTY|RAE|0|0|KINGSTON PIKE EST-SEC 1|19193.542505|555.891689|7 514|119-M|B|10| |119-MB 10|ESMAILIAN ALI REZA|9500|8605|KINGSRIDGE DR|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RAE|0|0|KINGSTON PIKE ESTATE ADD SEC 1|17117.408191|532.5815260000001|7 515|119-M|B|11| |119-MB 11|SPOON JOHN C & TRILBY G|10000|8613|KINGSRIDGE DR|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RAE|0|0|KINGSTON PIKE EST|19175.789607|575.207943|7 516|119-M|B|12| |119-MB 12|TOWLE JOHN WILSON|10000|8621|DIANA LANE|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RAE|0|0|KINGSTON PIKE EST|20852.863957|578.342146|7 517|119-M|B|13| |119-MB 13|CARTER FRANCIS E & FRANCES S|10500|8623|DIANA LN|KNOXVILLE|TENNESSEE|37919|KNOX|SW-COUNTY|RAE|0|0|KINGSTON PIKE EST-SEC 1|32600.347358|705.460156|7 518|119-M|B|14| |119-MB 14|GREER BETTY P|9450|5448|VILLAGE WAY|KNOXVILLE|TENNESSEE|37211|KNOX|SW-COUNTY|RAE|0|0|KINGSTON PIKE ESTATES SECTION 1|25799.521062|642.982423|7 519|119-M|C|8| |119-MC 8|RASKOPF B D & MARGARET P|18500|201|SUBURBAN RD|KNOXVILLE|TENNESSEE|37923|KNOX|SW-COUNTY|RAE|0|0|SUBURBAN HILLS UNIT 1 PT 6|31208.630043|707.246614|7 520|119-M|C|3.01| |119-MC 3.01|COBBLE BILL L & DONNA M|70400|10017|CASA REAL COVE|KNOXVILLE|TENNESSEE|37922|KNOX|SW-COUNTY|OA|0|0|SUBURBAN PROFESSIONAL PARK|22524.51059|646.9150519999999|7 521|119-M|D|23.01| |119-MD 23.01|FIRST UTILITY DIST OF KNOX COUNTY TN|0| |P O BOX 22580|KNOXVILLE|TENNESSEE|37933|KNOX|SW-COUNTY|OA|0|0| |164.630087|53.970569|7

Page 101

522|119-L|B|2| |119-LB 2|HART FRED EUGENE & ELSIE IRENE|62240|8557|KINGSTON PK|KNOXVILLE|TENNESSEE|37923|KNOX|SW-COUNTY|CA|0|0| |48175.546571|1131.387619|7 523|119-M|C|3.02| |119-MC 3.02|PILGRIM CHARLES R & BRENDA E|69440| |P O BOX 2448|KNOXVILLE|TENNESSEE|37901|KNOX|SW-COUNTY|OA|0|0|SUBURBAN PROFESSIONAL PARK|27843.935993|690.164955|7 524|119-M|C|3| |119-MC 3|PILGRIM CHARLES R & BRENDA E & SINCLAIR|28320| |P O BOX 2448|KNOXVILLE|TENNESSEE|37901|KNOX|SW-COUNTY|OA|0|0| |37745.869871|847.714199|7 525|120-K|A|13| |120-KA 13|SEARS ROEBUCK & CO ANNEX 95 TAX DEPT|1373760|675|PONCE DELEON NE|KNOXVILLE|TENNESSEE|30395|KNOX|WEST-CITY|RA|0|0| |375069.27454|2805.155014|10 526|120-K|A|10.01| |120-KA 10.01|WEST VIEW TOWERS % BEACON MORTGAGE CO|552000|5409|N JIM MILLER RD|KNOXVILLE|TENNESSEE|75227|KNOX|WEST-CITY|RA|0|0| |154894.085053|1584.076643|10 527|120-J|B|9| |120-JB 9|BUSCH SAM & ANN F|19620|7901|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|W HILLS UNIT 10|28906.304797|688.873787|10 528|120-J|B|10| |120-JB 10|JOHNSON RALPH D|16940|7905|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|W HILLS UNIT 10|21789.432874|615.992159|10 529|120-J|B|11| |120-JB 11|NEEDHAM JAMES H JR & RUTH K|16030|7909|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|W HILLS UNIT 10|19715.211906|580.324946|10 530|120-J|B|12| |120-JB 12|COOPER LEON MITCHELL & MAUD BENNETT|15430|7913|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|W HILLS UNIT 10|18544.129511|563.339336|10 531|120-J|B|13| |120-JB 13|SOSS KATHERINE B & SHELDON B|15280|7917|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|W HILLS UNIT 10|17861.170318|553.493756|10 532|120-J|B|14| |120-JB 14|TANGALOS APOSTOLOS PAUL & HELEN LIFE ESTATE|15140|29|HOLLY LANE BOX 255|KNOXVILLE|TENNESSEE|2637|KNOX|WEST-CITY|R-1|0|0|W HILLS UNIT 10|17361.157163|545.724025|10 533|120-J|B|15| |120-JB 15|CLAXTON JAMES A & GLENNIS L|15140|7925|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|W HILLS UNIT 10|16929.948917|538.652426|10 534|120-J|E|8| |120-JE 8|PORTER R FRANK & CHRISTINE S|15400|7924|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|W HILLS UNIT 10|16293.333068|519.2447550000001|10 535|120-J|E|9| |120-JE 9|CRIM H FRANK & CLAIRE G|14940|4165|TAN BARK PLACE|KNOXVILLE|TENNESSEE|42303|KNOX|WEST-CITY|R-1|0|0|W HILLS UNIT 10|15843.726382|510.556834|10 536|120-J|E|10| |120-JE 10|LARUE HUGH F JR & VIVIEN F|15890|7916|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|W HILLS UNIT 10|15809.234247|490.393402|10 537|120-J|E|11| |120-JE 11|VANCE JOHN M & PEGGY S|15290|7909|STRATTON DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|14463.221124|494.387769|10 538|120-J|E|12| |120-JE 12|SIPSIS FRANK D & KATIE D|14840|7917|STRATTON DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|W HILLS UNIT 10|15054.25143|496.371972|10 539|120-J|E|13| |120-JE 13|GUINN FRANK J & DORA B|14000|7921|STRATTON DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|W HILLS UNIT 10|14422.419178|490.863804|10 540|120-J|C|17| |120-JC 17|SHELTON MICHAEL T & DORIS T|14000|7928|STRATTON DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|W HILLS UNIT 10|14804.383196|492.896428|10

Page 102

541|120-J|C|18| |120-JC 18|APPLEBY MARY B|14000|7924|STRATTON DRIVE|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|W HILLS UNIT 10|14381.745944|490.004921|10 542|120-J|C|19| |120-JC 19|MCGEE B R & RHEA|14000|7920|STRATTON DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|W HILLS UNIT 10|14855.339018|497.753833|10 543|120-J|C|20| |120-JC 20|HESS NINA O|16140|7916|STRATTON DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|W HILLS UNIT 10|20755.865933|597.411022|10 544|120-J|C|21| |120-JC 21|DOSSETT KATE H|15850|7912|STRATTON DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|W HILLS UNIT 10|24547.16468|643.160573|10 545|120-J|C|22| |120-JC 22|HADDEN SHELBY N & GEORGIA M|16920|7908|STRATTON DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|21123.747279|609.7578549999999|10 546|120-J|C|23| |120-JC 23|ABAED ANTONIO|14000|7904|STRATTON DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|W HILLS UNIT 10|19794.54951|552.282743|10 547|120-J|C|1| |120-JC 1|DUNLAP PAULINE|14330|204|E LAKE FOREST DR|KNOXVILLE|TENNESSEE|37920|KNOX|WEST-CITY|R-1|0|0|W HILLS UNIT 10|14254.089958|470.752539|10 548|120-J|C|2| |120-JC 2|SWALLOWS ALBERT H & PEARL P|14970|7904|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|W HILLS UNIT 10|16988.583972|527.967362|10 549|120-J|C|3| |120-JC 3|WOLFE CLIFTON & MILDRED WELCH|15640|7900|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|W HILLS UNIT 10|17552.48534|521.762049|10 550|120-J|C|4| |120-JC 4|MAISEL CLARE G|14480|205|MONTVUE RD|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|15282.025739|492.319181|10 551|120-J|C|5| |120-JC 5|ALEXANDER GREGORY C|15400|209|MONTVUE RD|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|16308.102937|516.770132|10 552|120-J|C|6| |120-JC 6|WEBB LILLIAN H|15400|213|MONTVUE RD|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|16804.860699|523.007156|10 553|120-J|C|7| |120-JC 7|BROWN LOIS B & BROWN PAUL BLAKELEY & BROWN STERLIN|15400|217|MONTVUE RD|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|15825.24912|510.331558|10 554|120-J|C|8| |120-JC 8|MOWER GEORGE R & NORMA S|16340|7901|LIVINGSTON DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|18269.638491|536.361653|10 555|120-J|C|9| |120-JC 9|JOHNSON MATTIE C & BASSETT ROBERT J|17070|7905|LIVINGSTON DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|21112.308967|596.5208710000001|10 556|120-J|C|10| |120-JC 10|JONES JOSEPH F & LANETTE|14280|7909|LIVINGSTON DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|15936.316588|515.6538420000001|10 557|120-J|C|11| |120-JC 11|WELLS LOIS P & PETERS EMMA L|14000|7913|LIVINGSTON DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|14896.543868|498.030728|10 558|120-J|C|12| |120-JC 12|BADAL KENNETH J & MARGARET B|14000|7917|LIVINGSTON DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|14691.129956|495.838325|10

Page 103

559|120-J|C|13| |120-JC 13|MOORE PAUL A & MARTHA P|14000|7921|LIVINGSTON DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WESTHILLS UNIT 10|15174.08284|503.054012|10 560|120-J|D|1| |120-JD 1|BAKER ROBERT M & BARBARA O|16300|7924|LIVINGSTON DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|20290.734795|567.958268|10 561|120-J|D|2| |120-JD 2|WINESETTE JOTTY F & ETHEL A|14280|7920|LIVINGSTON DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|15280.804403|505.929358|10 562|120-J|D|3| |120-JD 3|MARTIN ROBERT R & BARBARA K|14000|7916|LIVINGSTON DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|15089.188034|500.204556|10 563|120-J|D|4| |120-JD 4|LORD HERBERT P & EVELYN S|14000|7912|LIVINGSTON DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|14622.351906|494.375219|10 564|120-J|D|5| |120-JD 5|WRIGHT MILDRED H|14000|7908|LIVINGSTON DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|14862.866632|496.832035|10 565|120-J|D|6| |120-JD 6|OLAUGLIN ROBERT JAMES & BARBARA N|14400|7904|LIVINGSTON DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|14528.924088|486.449385|10 566|120-J|D|7| |120-JD 7|JETT DONALD P & RUTH C|14060|7900|LIVINGSTON DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|14178.375581|467.663819|10 567|120-J|D|8| |120-JD 8|SMITH HOWARD S & MADILINE MAY|8270|305|MONTVUE RD|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|19538.894499|546.622684|10 568|120-J|D|9| |120-JD 9|MAXWELL HOOPER D & RUBY J|14550| |P O BOX 1769|KNOXVILLE|TENNESSEE|38555|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|14994.344497|496.653893|10 569|120-J|D|10| |120-JD 10|BOYD HUGH T & CAROLYN JODELL|14550|7909|GLEASON RD|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|15489.414833|503.546414|10 570|120-J|D|11| |120-JD 11|HERRON DANIEL E & ANN L|14550|7913|GLEASON RD|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|15206.968423|499.695319|10 571|120-J|D|12| |120-JD 12|HANSHAW BOBBY EUGENE|15660|7917|GLEASON RD|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|16663.344662|519.837974|10 572|120-J|D|13| |120-JD 13|MCKEEHAN J COLSON & MARY O|18950|308|DANBURY RD|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|20165.45877|557.468025|10 573|120-O|B|3| |120-OB 3|ROSSON JOHN R JR|20160|401|KENDALL RD|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|A-1|0|0|KINGSTON HILLS UNIT 3 PT LOT 1|31440.858125|880.600125|10 574|120-O|B|4| |120-OB 4|CHESNEY WILLIAM ALBERT III|11500|2037|CHEROKEE BLVD|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|A|0|0|KINGSTON HILLS U-3|17855.722446|541.774307|10 575|120-O|B|5| |120-OB 5|TREECE JOHN K & ANNA J|12500|409|KENDALL RD SW|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|A|0|0|KINGSTON HLS U3|26051.656258|681.012617|10 576|120-O|B|6| |120-OB 6|TAYLOR CLYDE N & LAURA H|15000|413|KENDALL RD|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|A|0|0|KINGSTON HILLS U3|40387.365425|825.0674770000001|10

Page 104

577|120-O|B|1| |120-OB 1|TRAVIS L RANDALL DBA GLEASON ASSOCIATES|0|6322R|PAPERMILL RD|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|RP-1|0|0|THE MEADOWS CONDOMINIUMS|997864.914855|4106.443613|10 578|120-O|B|19| |120-OB 19|RITTER RAYMOND GEORGE & JANET SIBIN|61920|7807|RAMSGATE DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|RAE|0|0| |288728.452388|2191.813672|10 579|120-O|B|12| |120-OB 12|CITY OF KNOXVILLE|0| | |KNOXVILLE|TENNESSEE|37902|KNOX|WEST-CITY|A|0|0| |166101.46587|1686.084966|10 580|120-O|B|7| |120-OB 7|WILLIAMS JOHN LOUIS & BOST MELVYN C|59520|145|MONTVU CENTER|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|A|0|0| |265874.190944|2276.574809|10 581|120-O|B|8| |120-OB 8|FINGER ERNEST R & PATSY A|12000|423|KENDALL RD|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|RA|000D|0008|KINGSTON HILLS UNIT 3|17733.368926|534.6448339999999|10 582|120-O|B|9| |120-OB 9|HAGE LAURICE & YOLLA RITA|12500| |P O BOX 1407|KNOXVILLE|TENNESSEE|37654|KNOX|WEST-CITY|RA|000D|0007|KINGSTON HILLS UNIT 3|19513.366579|575.943642|10 583|120-O|B|10| |120-OB 10|CHEEK BARBARA S|12500|429|KENDALL RD|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|RA|0|0|KINGSTON HILLS UNIT 1|21432.242521|612.1508239999999|10 584|120-O|B|11| |120-OB 11|WRIGHT BETTY CRONISE RASNIC & JAMES H|12500|433|KENDALL RD|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|RA|0|0|KINGSTON HILLS UNIT 1|23802.285464|644.286264|10 585|120-O|C|1| |120-OC 1|SCHNEIDER WILLIAM J & REBECCA|9600|8101|OSLER LANE|KNOXVILLE|TENNESSEE|37909|KNOX|WEST-CITY|A|0|0|KINGSTON HILLS UNIT 3|27194.148409|689.156939|10 586|120-O|C|2| |120-OC 2|WALLIN JOHN H|11000|420|KENDALL RD|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|A|0|0|KINGSTON HLS U3|18452.169914|557.244248|10 587|120-O|C|3| |120-OC 3|SMITH LEONARD W & CAROLE B|11000|416|KENDALL RD|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|A|0|0|KINGSTON HILLS|32340.866783|801.977654|10 588|120-O|C|4| |120-OC 4|PIERCE ARTHUR M|12000|412|KENDALL RD|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|A|0|0|KINGSTON HILLS UT 3|26076.85158|689.421971|10 589|120-O|C|5| |120-OC 5|CRUSLING VICTOR E III & LINDA K|14000|408|KENDALL RD|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|A|0|0|KINGSTON HILLS U3|40801.901924|852.488491|10 590|120-O|C|6| |120-OC 6|CHURCH UNITY OF KNOXVILLE|0|404|KENDALL ROAD|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|A|0|0|KINGSTON HILLS UT 3|45562.085792|868.57305|10 591|120-O|C|7| |120-OC 7|UNITY CHURCH OF KNOXVILLE|0|404|KENDALL DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|A|0|0| |45489.0502|925.793694|10 592|120-O|C|8| |120-OC 8|CHURCH JESUS CHRIST OF LATTER-DAY SAINTS|0| |GLEASON DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|A-1|0|0| |179872.172441|1884.608578|10 593|120-O|C|9| |120-OC 9|BUCHANAN JAMES H & IMOGENE S|14590|301|FOREST OAK DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|A-1|0|0|OAK FOREST|21063.097292|571.257518|10 594|120-O|C|10| |120-OC 10|DEERING GEORGE & THERESE|14580|305|FORREST OAK DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|A-1|0|0|OAK FOREST|19607.445115|560.769529|10 595|120-O|C|11| |120-OC 11|SCHILLING FRIEDRICH & BARBARA HUEY|14430|309|FOREST OAK DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|RA|0|0|OAK FOREST ADD|20292.16774|690.085977|10 596|120-O|C|12| |120-OC 12|SMITH E HANBY & BETTY B|12000|311|FOREST OAK DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|RA|0|0|OAK FOREST|19636.411147|559.12549|10 597|120-O|C|13| |120-OC 13|COMER JACK & MARJORIE W|12000|313|FOREST OAK DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|RA|0|0|OAK FOREST|20148.823644|568.941695|10

Page 105

598|120-O|C|14| |120-OC 14|SCHAAD WILLIAM O & YVONNE O|12500|321|FOREST OAK DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|RA|0|0|OAK FOREST|21245.771519|574.958454|10 599|120-O|C|15| |120-OC 15|COLGLAZIER E WILLIAM & CATHERINE C|12500|323|FOREST OAK DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|RA|0|0|OAK FOREST|35704.666849|943.552826|10 600|120-O|C|16| |120-OC 16|SONTAG MELINDA LEA COMER & COMER FRANK EDDY|18000|325|FOREST OAK DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|RA|0|0|OAK FOREST|65118.243137|1195.849342|10 601|120-O|C|17| |120-OC 17|COOPWOOD M K & CHARLOTTE W|15000|329|FOREST OAK DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|RA|0|0|OAK FOREST|50415.178772|1104.166922|10 602|120-O|C|18| |120-OC 18|RATNER LORMAN & NINA|15000|333|FOREST OAK DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|RA|0|0|OAK FOREST RESUB|42251.600524|1006.180893|10 603|120-O|C|19| |120-OC 19|THURSTON CLAYTON WARREN & VIRGINIA|15000|335|FOREST OAK DRIVE|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|RA|0|0|OAK FOREST|39261.823463|905.031267|10 604|120-O|C|20| |120-OC 20|KARAKASHIAN OHANNES & SERVART|15000|339|FOREST OAK DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|RA|0|0|OAK FOREST|29910.549561|754.064307|10 605|120-O|C|21| |120-OC 21|ROBERTS ROYCE E & CAROL ANNE|12000|342|FOREST OAK DR|KNOXVILLE|TENNESSEE|37921|KNOX|WEST-CITY|RA|0|0|OAK FOREST|22957.994693|638.124013|10 606|120-O|C|22| |120-OC 22|TAYLOR JULIA B & ERNEST R|12000|347|FOREST OAK DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|RA|0|0|OAK FOREST ADD|22449.073952|644.741658|10 607|120-O|C|23| |120-OC 23|SANDERS MICHAEL H & ANNE C|12000|344|FOREST OAK DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|RA|0|0|OAK FOREST|24392.093241|754.698634|10 608|120-O|C|24| |120-OC 24|COFFIELD WILLIAM H & JEANETTE C|12000|340|FOREST OAK DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|RA|0|0|OAK FOREST|28824.184999|711.875661|10 609|120-O|C|25| |120-OC 25|WAYNE MALCOM L & PATRICIA A|12000|336|FOREST OAK DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|RA|0|0|OAK FOREST|27852.445568|713.326986|10 610|120-O|C|26| |120-OC 26|SEXTON SUZANNE M|30000|332|FOREST OAK DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|RA|0|0|OAK FOREST|29854.302149|727.8306229999999|10 611|120-O|C|27| |120-OC 27|FIELDEN THOMAS D & KATHY R|12000|328|FOREST OAK DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|RA|0|0|OAK FOREST|28734.312967|718.246786|10 612|120-O|C|28| |120-OC 28|MCDONALD DANIEL W & VICTORIA ANNE|12000|324|FOREST OAK DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|RA|0|0|OAK FOREST|38056.940566|821.89779|10 613|120-O|C|29| |120-OC 29|SAPPER JOHN H & GERDA R|12000|316|FOREST OAK DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|RA|0|0|OAK FOREST|23981.117008|613.157643|10 614|120-O|C|30| |120-OC 30|HARTMAN REBECCA H|12000|312|FOREST OAK DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|RA|0|0|OAK FOREST|24693.752861|648.844839|10 615|120-O|C|31| |120-OC 31|PATTERSON FRANCES K|13000|308|FOREST OAK DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|RA|0|0|OAK FOREST|27899.340611|683.204243|10 616|120-O|C|32| |120-OC 32|VENABLE FRANK F & MARY BELLE D|15890|304|FOREST OAK DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|A-1|0|0|OAK FOREST SUB|25898.496772|771.208482|10 617|120-O|C|33| |120-OC 33|VENABLE FRANK F & MARY BELLE|10330|304|FOREST OAK DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|OAK FOREST|25451.047367|632.119103|10 618|120-O|C|34| |120-OC 34|TRIMBLE DONNA D|17300|7140|WELLINGTON DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|A-1|0|0|OAK FOREST|29103.068331|687.881271|10 619|120-O|C|35| |120-OC 35|DOYLE SARA W SULLIVAN|15580|4278|LOCH HIGHLAND PKWY|KNOXVILLE|TENNESSEE|30075|KNOX|WEST-CITY|A-1|0|0|OAK FOREST|31726.390295|847.848099|10 620|120-O|C|36| |120-OC 36|HARTMAN SHEREE DIANE|12600|103|PACES RUN|KNOXVILLE|TENNESSEE|30339|KNOX|WEST-CITY|RA|0|0|OAK FOREST|47332.693742|893.151039|10

Page 106

621|120-O|C|37| |120-OC 37|CARLSON THOMAS B ETAL|12600|6523|DEANE HILL APT #11|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|RA|0|0|OAK FOREST|71170.515423|1146.107295|10 622|120-O|C|38| |120-OC 38|CHITTUM WALTER W & DOROTHY JUANITA|13880|308|SILVER MAPLE LN|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|RA|0|0|OAK FOREST PT 30|14623.034622|568.685838|10 623|120-O|C|39| |120-OC 39|CHITTUM WALTER W & DOROTHY JUANITA|5880|308|SILVER MAPLE LN|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|A-1|0|0|OAK FOREST PT 30|9496.856953|493.082115|10 624|120-O|C|40| |120-OC 40|PARRIS JOHN L & CHRISTINE T|12160|314|KENNON RD|KNOXVILLE|TENNESSEE|37909|KNOX|WEST-CITY|A-1|0|0|OAK FOREST|18768.576207|553.502328|10 625|120-O|C|41| |120-OC 41|CARTER MARTHA ELIZABETH|13310|2991|STATION HILL RD|KNOXVILLE|TENNESSEE|38138|KNOX|WEST-CITY|R-1|0|0|OAK FOREST|19873.699251|551.978685|10 626|120-O|C|37.01| |120-OC 37.01|BEELER ROBERT L & HOYLE F WILKERSON|1600|316|PETERS RD|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|RA|0|0| |3058.887647|317.115329|10 627|120-K|B|1| |120-KB 1|ROOS WILBUR LEE & ALMA DRAKE|14110|7760|GLEASON RD APT B|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1A|0|0|DEAN CATE & H B ELLISON|21132.598626|755.78535|10 628|120-K|B|2| |120-KB 2|DEANE HILL REALITY ASSOCIATES|101200|5410|HAMBERG DR SU A|KNOXVILLE|TENNESSEE|37939|KNOX|WEST-CITY|R-1A|0|0|DEAN CATE & H B ELLISON DEANE HILL CO CLUB APTS|220832.082182|2074.201876|10 629|120-K|B|3| |120-KB 3|DEANE HILL REALITY ASSOCIATES|0|5410|HAMBERG DR SU A|KNOXVILLE|TENNESSEE|37939|KNOX|WEST-CITY|PR|0|0| |309890.786894|2476.87492|10 630|120-K|A|10| |120-KA 10|OMIE INC % RAYMOND FREDERICK|76320| |P O BOX 80324|KNOXVILLE|TENNESSEE|37411|KNOX|WEST-CITY|RA|0|0|JOHN L MONTGOMERY JR S/D|48454.995622|1116.498132|10 631|120-K|A|11| |120-KA 11|OMIE INC % RAYMOND FREDERICK|97050| |P O BOX 80324|KNOXVILLE|TENNESSEE|37411|KNOX|WEST-CITY|RA|0|0|JOHN L MONTGOMERY JR S/D|18782.73638|560.4994799999999|10 632|120-K|A|12| |120-KA 12|OMIE INC|97020| |P O BOX 80324|KNOXVILLE|TENNESSEE|37411|KNOX|WEST-CITY|RA|0|0|JOHN L MONTGOMERY JR S/D|18583.114223|556.2560089999999|10 633|120-K|A|12.01| |120-KA 12.01|SMITH OLIVER A JR & EVELYN D|116190|7600|KINGSTON PK SU F-28|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|RA|0|0|JOHN L MONTGOMERY JR S/D|29237.452339|668.69641|10 634|120-O|A|34| |120-OA 34|JONES WILLIAM D JR TR|35200|312|NANCY LYNN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-2|0|0|COUNTRY DAY EST UNIT 2|20654.865364|565.925176|9 635|120-O|A|35| |120-OA 35|JONES WILLIAM D JR TR|20000|312|NANCY LYNN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-2|0|0|COUNTRY DAY EST UNIT 2|17907.096529|557.6966609999999|9 636|120-O|A|36| |120-OA 36|JONES WILLIAM D JR & ET AL|16000|312|NANCY LYNN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-2|0|0|COUNTRY DAY EST UNIT 2|16810.938602|535.482073|9 637|120-O|A|37| |120-OA 37|CROLEY RALPH W & VERA V|14000|10804|WESTLAND DR|KNOXVILLE|TENNESSEE|37922|KNOX|WEST-CITY|R-2|0|0|COUNTRY DAY EST UNIT 2|14919.482133|501.329951|9 638|120-O|A|38| |120-OA 38|HARB BILL H & ZAHWA H HARB NAIM G & TAMAM G|16000| |RT 23 RIVERTRACE BLVD|KNOXVILLE|TENNESSEE|37920|KNOX|WEST-CITY|R-2|0|0|COUNTRY DAY EST UNIT 2|14606.711996|505.227687|9 639|120-O|A|39| |120-OA 39|HARB BILL H & ZAHWA H HARB NAIM G & TAMAM G|16000| |RT 23 RIVERTRACE BLVD|KNOXVILLE|TENNESSEE|37920|KNOX|WEST-CITY|R-2|0|0|COUNTRY DAY EST UNIT 2|14995.272666|508.978566|9

Page 107

640|120-O|A|40| |120-OA 40|HARB BILL H & ZAHWA H HARB NAIM G & TAMAM G|16000| |RT 23 RIVERTRACE BLVD|KNOXVILLE|TENNESSEE|37920|KNOX|WEST-CITY|R-2|0|0|COUNTRY DAY EST UNIT 2|14297.176402|499.910032|9 641|120-O|A|41| |120-OA 41|HARB BILL H & ZAHWA H HARB NAIM G & TAMAM G|16000| |RT 23 RIVERTRACE BLVD|KNOXVILLE|TENNESSEE|37920|KNOX|WEST-CITY|R-2|0|0|COUNTRY DAY ESTATES UT 2|14967.883757|517.534714|9 642|120-O|A|42| |120-OA 42|HARB BILL H & ZAHWA H HARB NAIM G & TAMAM G|16000| |RT 23 RIVERTRACE BLVD|KNOXVILLE|TENNESSEE|37920|KNOX|WEST-CITY|R-2|0|0|COUNTRY DAY EST UT 2|16499.754885|558.445481|9 643|120-O|A|43| |120-OA 43|SEALS ROY L|26400| |SUITE 204 FT SANDERS PROF|KNOXVILLE|TENNESSEE|37916|KNOX|WEST-CITY|R-2|0|0|COUNTRY DAY EST UNIT 2|31877.663809|721.212973|9 644|120-O|A|44| |120-OA 44|CITY OF KNOXVILLE|0| | |KNOXVILLE|TENNESSEE|37902|KNOX|WEST-CITY|R-2|0|0|COUNTRY DAY ESTATES|2767.90706|219.830182|9 645|120-O|A|46| |120-OA 46|ZAVELS MOSE|45140|5612|KINGSTON PK BOX 19|KNOXVILLE|TENNESSEE|96301|KNOX|WEST-CITY|R-2|0|0| |233127.788648|2102.8333|9 646|120-O|A|2| |120-OA 2|EAST TENNESSEE CHILDRENS REHABILITATION CENTER|0|610|21ST ST|KNOXVILLE|TENNESSEE|37916|KNOX|WEST-CITY|RB|0|0|COUNTRY DAY SCHOOL PARCEL|97573.226004|1272.790721|9 647|120-O|A|1| |120-OA 1|EAST TENNESSEE CHILDRENS REHABILTATION CENTER|0|610|21ST ST|KNOXVILLE|TENNESSEE|37916|KNOX|WEST-CITY|R-2|0|0|COUNTRY DAY SCHOOL PARCEL|113877.892259|1381.029254|9 648|120-P|B|13| |120-PB 13|LENOX PLACE REALTY CO % USGI|0| |PO BOX 1601|KNOXVILLE|TENNESSEE|6820|KNOX|WEST-CITY|R-1A|0|0| |223561.004211|2087.277087|9 649|120-P|B|10| |120-PB 10|LEE ZONA H MRS|15460|9599|ROSS AVE|KNOXVILLE|TENNESSEE|45242|KNOX|WEST-CITY|A-1|0|0| |43146.236956|1110.182428|9 650|120-P|B|11| |120-PB 11|BYRD MICHAEL E & PATRICIA|50000|523|BERTRAND UNIT 212|KNOXVILLE|TENNESSEE|37917|KNOX|WEST-CITY|C-3|0|0| |43456.549371|1113.300227|9 651|120-P|B|12| |120-PB 12|ALLISON LEROY & PEARL|19330|8218|GLEASON RD|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|A-1|0|0| |43272.487638|1113.828352|9 652|120-I|B|9.03| |120-IB 9.03|WEIGEL LYNN B & WILLIAM B|114750| |P O BOX 50158|KNOXVILLE|TENNESSEE|158|KNOX|WEST-CITY|C-6|0|0| |42768.256749|963.187638|9 653|120-I|B|9.27| |120-IB 9.27|MUSSELMAN MUSSELMAN & TOTTEN INC|278100|220|FOIEMOST DRIVE|KNOXVILLE|TENNESSEE|78745|KNOX|WEST-CITY|C-6|0|0| |36350.966453|757.735024|9 654|120-I|B|9.25| |120-IB 9.25|UNIVERSITY REAL ESTATE FUND 10 LTD|240640| |P O BOX 105|KNOXVILLE|TENNESSEE|30091|KNOX|WEST-CITY|C-6|0|0| |85943.551591|1613.666544|9 655|120-I|B|9.20| |120-IB 9.20|UNIVERSITY REAL ESTATE FUND 10 LTD|844800|1601|LBJ PARK WEST SU 800|KNOXVILLE|TENNESSEE|75234|KNOX|WEST-CITY|C-6|0|0| |378738.191|2714.444344|9 656|120-I|B|9.19| |120-IB 9.19|UNIVERSITY REAL ESTATE FUND 10 LTD LSD DOWNTOWN|84820| |P O BOX 105|KNOXVILLE|TENNESSEE|30091|KNOX|WEST-CITY|C-6|0|0| |33584.4412|765.636899|9 657|120-I|B|9.26| |120-IB 9.26|DOWNTOWN WEST ASSOC LTD LSD TO DONLEVYS OF TN INC|161280|1440|BROADWAY SUITE 1655|KNOXVILLE|TENNESSEE|10018|KNOX|WEST-CITY|C-6|0|0| |42316.204608|918.493097|9 658|120-I|B|9.18| |120-IB 9.18|TGI FRIDAYS INC|240000| |P O BOX 809062|KNOXVILLE|TENNESSEE|75380|KNOX|WEST-CITY|C-6|0|0| |70346.45177699999|1180.973496|9 659|120-I|B|9.13| |120-IB 9.13|BMW & I PARTNERSHIP|224000| |P O BOX 19805|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|C-6|0|0| |61578.728063|1021.921146|9 660|120-I|B|9.12| |120-IB 9.12|MCNEILL INVESTMENT COMPANY INC|294400|4735|SPOTTSWOOD SU 201|KNOXVILLE|TENNESSEE|40777|KNOX|WEST-CITY|C-6|0|0| |82473.261576|1141.936812|9 661|120-I|B|9.04| |120-IB 9.04|UNIVERSITY REAL ESTATE FUND 10 LTD LSD FAIRLANE|256000| |P O BOX 1600|KNOXVILLE|TENNESSEE|81600|KNOX|WEST-CITY|C-6|0|0| |65519.177668|1035.992711|9 662|120-I|B|9.14| |120-IB 9.14|H & S COMPANY % SAIEB HADDAD|110670|8604|LAKE COURT LANE|KNOXVILLE|TENNESSEE|37923|KNOX|WEST-CITY|C-6|0|0| |27227.005479|675.495584|9

Page 108

663|120-I|B|9.22| |120-IB 9.22|UNIVERSITY REAL ESTATE FUND 10 LTD|176800|1601|LBJ PARK WEST SU 800|KNOXVILLE|TENNESSEE|75234|KNOX|WEST-CITY|C-6|0|0| |60969.481176|1554.578296|9 664|120-I|B|9.28| |120-IB 9.28|PARKINS-FAIN INVESTMENT PROPERTIES-VII LTD|110670|238|PETERS RD BLDG A|KNOXVILLE|TENNESSEE|37923|KNOX|WEST-CITY|C-6|0|0| |28643.970856|675.659293|9 665|120-I|B|9.21| |120-IB 9.21|DOWNTOWN WEST ASSOC LTD|96000| |P O BOX 90444|KNOXVILLE|TENNESSEE|37990|KNOX|WEST-CITY|C-6|0|0| |262889.615087|2723.423568|9 666|120-I|B|9.05| |120-IB 9.05|UNIVERSITY REAL ESTATE FUND 10 LTD LSD BIG|200000| |P O BOX 105|KNOXVILLE|TENNESSEE|30091|KNOX|WEST-CITY|C-6|0|0| |54449.255177|972.747372|9 667|120-I|B|9| |120-IB 9|UNIVERSITY REAL ESTATE FUND 10 LTD|37440|1601|LBJ PARK WEST SU 800|KNOXVILLE|TENNESSEE|75234|KNOX|WEST-CITY|C-6|0|0| |15636.668926|548.3287319999999|9 668|120-I|B|9.11| |120-IB 9.11|SPARTAN FOOD SYSTEMS % RASH # 858-42-7104|318840| |P O BOX 1600|KNOXVILLE|TENNESSEE|81600|KNOX|WEST-CITY|C-6|0|0| |63512.186071|1119.065537|9 669|120-I|B|9.06| |120-IB 9.06|FIRST TENNESSEE BANK ATTN: CORPORATE TAX DEPT|188800| |P O BOX 280|KNOXVILLE|TENNESSEE|50280|KNOX|WEST-CITY|C-6|0|0| |51367.087124|897.402043|9 670|120-I|B|9.24| |120-IB 9.24|UNIVERSITY REAL ESTATE FUND 10 LTD|160000|1601|LBJ PARK WEST SU 800|KNOXVILLE|TENNESSEE|75234|KNOX|WEST-CITY|C-6|0|0| |43552.265906|836.613219|9 671|120-I|B|9.09| |120-IB 9.09|SWENSEN-S OF DOWNTOWN WEST INC|100000|1715|DOWNTOWN WEST BLVD|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|C-6|0|0| |24976.565123|643.633557|9 672|120-I|B|9.23| |120-IB 9.23|SEDGLEY RICHARD TR|76800|7212|KINGSTON PIKE|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|C-6|0|0| |25275.57586|904.845297|9 673|120-I|B|9.10| |120-IB 9.10|MUSSELMAN BROTHERS % THE H L ERDMAN CORP|74930|8200|BROOKRIVER DR|KNOXVILLE|TENNESSEE|75247|KNOX|WEST-CITY|C-6|0|0| |20326.1073|672.78071|9 674|120-I|B|9.17| |120-IB 9.17|UNIVERSITY REAL ESTATE SUND 10 LTD|984000|1601|LBJ PARK WEST SU 800|KNOXVILLE|TENNESSEE|75234|KNOX|WEST-CITY|C-6|0|0|DOWNTOWN WEST COMMERCIAL CENTER S/D PT TRACT 1|377405.652743|4330.615228|9 675|120-I|B|9.15| |120-IB 9.15|HOME FEDERAL SAVINGS & LOAN ASSN OF KNOXVILLE|160000|515|MARKET ST|KNOXVILLE|TENNESSEE|37902|KNOX|WEST-CITY|C-6|0|0| |40853.455509|826.252828|9 676|120-I|B|9.01| |120-IB 9.01|CAIN LILLIE MAE % TINSLEY TIRE CO|115260|5228|MIDDLEBROOK PIKE|KNOXVILLE|TENNESSEE|37921|KNOX|WEST-CITY|C-6|0|0| |19348.497141|655.110674|9 677|120-I|B|9.08| |120-IB 9.08|HSF INC|128520|3251|POPLAR AVE|KNOXVILLE|TENNESSEE|38111|KNOX|WEST-CITY|C-6|0|0| |17361.973932|620.827134|9 678|120-I|B|9.07| |120-IB 9.07|SOUTHERN FARM BUREAU ANNUITY INSURANCE CO|379280| |P O BOX 98189|KNOXVILLE|TENNESSEE|30359|KNOX|WEST-CITY|C-6|0|0| |174532.282563|2075.327028|9 679|120-I|B|9.02| |120-IB 9.02|CAIN LILLIE MAE LEASED PONDEROSA INC|298350| |P O BOX 578|KNOXVILLE|TENNESSEE|45401|KNOX|WEST-CITY|C-6|0|0| |50329.625014|974.058656|9 680|120-I|B|9.16| |120-IB 9.16|TRENT PATTI F|128000|8044|RAY MEARS BLVD|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|C-6|0|0| |43662.912691|899.577917|9 681|120-J|A|1| |120-JA 1|RED LOBSTER INN OF AM INC BOX 13330|297390|6880|LAKE ELLENOR DR|KNOXVILLE|TENNESSEE|32809|KNOX|WEST-CITY|C-4|0|0| |82896.125417|1233.755092|9 682|120-J|A|2| |120-JA 2|SCHUBERT M A TR & JOHN H SCHAAD TR|276790|1601|THIRD CREEK RD|KNOXVILLE|TENNESSEE|37921|KNOX|WEST-CITY|C-4|0|0| |39715.994622|844.290498|9 683|120-J|A|3.01| |120-JA 3.01|SCHWARTZMAN AARON S & BEATRICE H|444800|2520|30TH ST NW|KNOXVILLE|TENNESSEE|20008|KNOX|WEST-CITY|C-4|0|0| |125054.280782|1548.931666|9 684|120-J|A|4| |120-JA 4|MORRIS HAROLD H % TRANSMISSION INC|149190| |P O BOX 111060|KNOXVILLE|TENNESSEE|37211|KNOX|WEST-CITY|C-4|0|0| |22649.782885|608.130888|9 685|120-J|A|5| |120-JA 5|PHILLIPS WILLIAM TED JR|124870|8018|KINGSTON PK|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|C-4|0|0| |14815.329693|628.161347|9 686|120-J|A|6| |120-JA 6|SCHUBERT M A|138820|1601|THIRD CREEK RD|KNOXVILLE|TENNESSEE|37921|KNOX|WEST-CITY|C-4|0|0| |42484.449133|1188.277925|9 687|120-J|A|10| |120-JA 10|SOUTH CENTRAL BELL TELEPHONE CO|0|706|WALNUT ST BLDG|KNOXVILLE|TENNESSEE|37902|KNOX|WEST-CITY|C-4|0|0| |83612.94478799999|1180.222763|9

Page 109

688|120-J|A|2.01| |120-JA 2.01|ISAACS JOHN H & TERESA M & RONALD S & DENISE F|135540|1820|RYDER DR|KNOXVILLE|TENNESSEE|37664|KNOX|WEST-CITY|C-4|0|0| |36068.693944|807.574316|9 689|120-J|A|3| |120-JA 3|DAYTON HUDSON CORP #151 % PROPERTY TAX DEPT|2020800|777|NICOLLET MALL|KNOXVILLE|TENNESSEE|55402|KNOX|WEST-CITY|C-4|0|0| |548774.746886|3150.967583|9 690|120-J|A|12| |120-JA 12|COMMUNICATIONS PROPERTIES ASSOCIATES|17470| |P O DRAWER 10767 FED STA|KNOXVILLE|TENNESSEE|29603|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|18837.179408|544.181777|9 691|120-J|A|13| |120-JA 13|KRAMER RALPH P & LILLIAN L|14420|8005|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|W HILLS UNIT 10|16019.764056|519.031835|9 692|120-J|A|14| |120-JA 14|HOFFNER NELL M & BEDWELL FRANCES C|14410|8009|HAYDEN DRIVE|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|16579.783575|532.370141|9 693|120-J|A|15| |120-JA 15|ROSE HAZEL B & MARTHA JO|16020|8013|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|W HILLS UNIT 10|23967.020272|661.026694|9 694|120-J|A|16| |120-JA 16|RICHARDSON R JACK JR & CAROLE S|16450|8017|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|W HILLS UNIT 10|31539.25176|739.162691|9 695|120-J|A|17| |120-JA 17|RAUEN LAWRENCE GERHERD ETAL|14960|2529|TALL PINE|KNOXVILLE|TENNESSEE|37920|KNOX|WEST-CITY|R-1|0|0|W HILLS UNIT 10|20909.563401|616.672198|9 696|120-J|A|18| |120-JA 18|MCGINNIS CHARLES S & MARY R|15520|8025|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|W HILLS UNIT 10|18174.5029|552.047237|9 697|120-J|A|19| |120-JA 19|CARLSON ADDIE GERTRUDE|14680|8029|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|W HILLS UNIT 10|16082.457136|512.340239|9 698|120-J|A|20| |120-JA 20|PERRY RANDY L & MARGARET N & UNIVERSITY OF TENN|2200|432|COMMUNICATIONS BLDG|KNOXVILLE|TENNESSEE|37996|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10 15% ASSESSED-85% EXEMPT|15474.925745|504.734449|9 699|120-J|A|21| |120-JA 21|GARREN KEITH A & PAMELA D|14530|8101|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|16092.399999|508.582377|9 700|120-J|A|22| |120-JA 22|ROTH DONALD L & JANICE JEAN|15920|8103|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|13789.018302|495.023124|9 701|120-J|A|23| |120-JA 23|CARNEY PATRICIA ANNE|15620|8113|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|16287.426696|509.490527|9 702|120-J|A|24| |120-JA 24|OBEID MAURICE S & DAKELE S|15090|8117|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|15308.595653|499.313398|9 703|120-J|A|25| |120-JA 25|BASKETTE ROBERT L & MARGARET E|15090|8121|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|15920.515122|508.071026|9 704|120-J|A|26| |120-JA 26|WILLIS WILLIAM F & BETTYE S|15090|8125|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|15666.383234|504.588605|9 705|120-J|A|27| |120-JA 27|YATER LAURIE GANTT|15090|8129|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|15605.172088|503.880395|9 706|120-J|A|28| |120-JA 28|INKLEBARGER SULA H|14140|8133|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|16311.860896|524.621972|9

Page 110

707|120-J|A|29| |120-JA 29|TALLMAN JESS & FERN|15720|8137|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|21840.154725|614.100973|9 708|120-J|A|30| |120-JA 30|SMITH J THOMAS & DANTHA S|15290|8141|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|20508.488357|607.268283|9 709|120-J|A|31| |120-JA 31|WILSON TALMADGE C & BARBARA N|15690|8145|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|16316.308837|521.294858|9 710|120-J|A|32| |120-JA 32|MERRITT JACK P & THELMA J|17780|8149|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|19410.234398|561.908442|9 711|120-J|F|6| |120-JF 6|SCRUGGS CHARLES R & NORMA G|16320|8005|GLEASON RD|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|20588.191876|601.956719|9 712|120-J|F|7| |120-JF 7|BEAL STEPHEN T|15730|8009|GLEASON RD|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS|19056.654792|585.70713|9 713|120-J|F|8| |120-JF 8|HALSETH ROBIN JEAN|15250|8013|GLEASON RD|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|16441.388727|519.741812|9 714|120-J|F|9| |120-JF 9|ROBERTSON DAN E & FREIDERICKE V R|15320|8017|GLEASON RD|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|15509.835458|500.736905|9 715|120-J|F|10| |120-JF 10|CHU JOSEPH K & PATRICIA A|15050| |GLEASON RD|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|15595.197345|502.009672|9 716|120-J|F|11| |120-JF 11|GLASS CHARLES A & CONNIE F|15050|8025|GLEASON DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|15802.765112|505.051906|9 717|120-J|F|12| |120-JF 12|MILLER MURPHY G JR|15050|8029|GLEASON RD|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|15271.332939|497.390304|9 718|120-J|F|13| |120-JF 13|MERRITT ROBERT LEE & BONNIE JACQUELINE|15050|8033|GLEASON RD|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|15798.10364|505.04991|9 719|120-J|F|14| |120-JF 14|PERRY LOUISE R|14330|12145|WARRIOR TRAIL|KNOXVILLE|TENNESSEE|37922|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|15198.066516|484.196604|9 720|120-J|F|15| |120-JF 15|HENSLEY PAUL L & JOYCE C|16150|8148|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|15179.000508|477.500473|9 721|120-J|F|16| |120-JF 16|PICKETT DONALD R|14010|8140|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|12762.018368|450.755083|9 722|120-J|F|17| |120-JF 17|SMITH CHARLES E & SHAWNA LEA|13930| |OWLS HILL BEECH CRK|KNOXVILLE|TENNESSEE|37027|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|14093.389571|474.432923|9 723|120-J|F|18| |120-JF 18|BURGESS ARTHUR BLAINE & JUDIE ETHEL|15210|8128|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|15955.754715|507.753329|9 724|120-J|F|19| |120-JF 19|WIEBE JOHN & JULIA|15210|8124|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UT 10|15297.740932|497.863365|9

Page 111

725|120-J|F|20| |120-JF 20|CARR PEARL ELIZABETH|15210|8120|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|15697.755792|503.212335|9 726|120-J|F|21| |120-JF 21|OBRIEN FRANK J & MARGARET H|15050|8116|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|15359.380079|497.832667|9 727|120-J|F|22| |120-JF 22|KENNEDY ASTON & LENA D|16460| |RT 4 BEALS CHAPEL RD|KNOXVILLE|TENNESSEE|37771|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|16039.485854|513.295824|9 728|120-J|F|23| |120-JF 23|MORTON JOHN E & FRANCES S|14850|8108|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|18368.373559|560.122434|9 729|120-J|F|24| |120-JF 24|PAYNE REUBEN S & ELINOR P|17090|8104|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|25096.692106|636.24981|9 730|120-J|F|1| |120-JF 1|RIMMER HARRIS W|19140|8100|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|21328.988437|586.465635|9 731|120-J|F|2| |120-JF 2|WARD BILLY JOE & MARGARET O|14990|8004|LIVINGSTON DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|16657.176791|532.593289|9 732|120-J|F|3| |120-JF 3|MCKENZIE CHARLES A & BETTY S|17930|8000|LIVINGSTON DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|17503.907491|528.914347|9 733|120-J|F|4| |120-JF 4|BARGER BILLY J & DARLENE B|12820|305|DANBURY RD|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|19254.251261|553.9826430000001|9 734|120-J|F|5| |120-JF 5|ROBINSON LESTER M|17450|309|DANBURY RD|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|18590.302387|540.396649|9 735|120-J|E|14| |120-JE 14|NOLAN ISABELLE|14000|7925|STRATTON DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|W HILLS UNIT 10|15222.349147|502.722146|9 736|120-J|E|15| |120-JE 15|CHEEK FRANK D|14000|9147|WESLEY PLACE # 69|KNOXVILLE|TENNESSEE|37922|KNOX|WEST-CITY|R-1|0|0|W HILLS UNIT 10|15339.389707|509.569276|9 737|120-J|E|16| |120-JE 16|DAVIS GRADY M & NAOMI W|14850|7933|STRATTON DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|W HILLS UNIT 10|18222.573166|557.129198|9 738|120-J|E|17| |120-JE 17|WILLIAMS LUKE C & JONNE D|14280|7937|STRATTON DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|20374.067312|575.5141589999999|9 739|120-J|E|18| |120-JE 18|COTTRELL CHARLES H JR & MARY N|17460| |RT 4 BOX 99 EDM PRK|KNOXVILLE|TENNESSEE|37211|KNOX|WEST-CITY|R-1|0|0|W HILLS UNIT 10|18089.305518|549.591354|9 740|120-J|E|1| |120-JE 1|TIPPETT FRANK D|19110|8032|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|17109.316775|523.375277|9 741|120-J|E|2| |120-JE 2|GRAY DOUGLAS B|15430|309|HIGHFIELD ROAD|KNOXVILLE|TENNESSEE|37923|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UT 10|16385.407171|525.24604|9 742|120-J|E|3| |120-JE 3|BECK STANLEY CHARLES JR & LOUISE H|17080| |QTRS 6950|KNOXVILLE|TENNESSEE|80840|KNOX|WEST-CITY|R-1|0|0|W HILLS UNIT 10|19467.558772|571.866657|9

Page 112

743|120-J|E|4| |120-JE 4|BELL THOMAS W & MARY E|17800|2017|PINEY GROVE CH RD|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|W HILLS UNIT 10|21036.351487|588.871217|9 744|120-J|E|5| |120-JE 5|FLANARY ANDREW J & MARY E|16020|8000|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|W HILLS UNIT 10|18340.360601|555.237074|9 745|120-J|C|16| |120-JC 16|MATTHEWS C L & LORENA M|16760|7932|STRATTON DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|W HILLS UNIT 10|14472.210375|491.468292|9 746|120-J|C|15| |120-JC 15|ZEHNDER CHARLES F JR & TERESA F|17710|7940|STRATTON DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|W HILLS UNIT 10|17326.896775|509.400684|9 747|120-J|C|14| |120-JC 14|RADER DENNIS THOMAS SR & JOYCE ELAINE MACKELL|14820|7925|LIVINGSTON DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|WEST HILLS UNIT 10|14365.640887|487.765094|9 748|120-J|B|16| |120-JB 16|PATTON ROZELLA C|17640|7929|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|W HILLS UNIT 10|19751.646395|559.361466|9 749|120-J|E|6| |120-JE 6|ROSS DOROTHY|15400|8000|HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|W HILLS UNIT 10|16664.03616|522.93276|9 750|120-J|E|7| |120-JE 7|HUFF PHYLLIS ESTER|15400| |HAYDEN DR|KNOXVILLE|TENNESSEE|37919|KNOX|WEST-CITY|R-1|0|0|W HILLS UNIT 10|17192.909274|529.874722|9 751|120-J|A|2.02| |120-JA 2.02|SCHWARTZMAN AARON S & BEATRICE H|7620|2520|30TH ST NW|KNOXVILLE|TENNESSEE|20008|KNOX|WEST-CITY|C-4|0|0| |403.597656|80.35977699999999|9 752|120-J|A|3.02| |120-JA 3.02|JOHNSON ANDY & RAYMOND|69340|2100|GRAND AVE|KNOXVILLE|TENNESSEE|37916|KNOX|WEST-CITY|C-4|0|0|TARGET WEST RESUB|18345.527843|539.067688|9 753|||||||0|||||0|||||||0.0|0.0|0 PARD.ORA (PARCEL_DAS TABLE DATA) LOAD DATA INFILE * REPLACE INTO TABLE PARCEL_DAS FIELDS TERMINATED BY '|' OPTIONALLY ENCLOSED '"' TRAILING NULLCOLS (dastype,formname,sqldas) BEGINDATA 1|parcel|select owner,value from parcel| 2|parcel|select parcel_no from parcel| 3|parcel|select parcel_no,owner from parcel|