space
Previous Page | Next Page

Overview of the SAS/ACCESS Interface to CA-Datacom/DB

SAS/ACCESS Descriptor Files


Access Descriptor and View Descriptor Files

SAS/ACCESS software uses SAS/ACCESS descriptor files to establish a connection between SAS and CA-Datacom/DB. To create these files, you use the ACCESS procedure.

There are two types of descriptor files: access descriptors and view descriptors. The following figure illustrates the relationships among a CA-Datacom/DB table, access descriptors, and view descriptors.

Relationships between a CA-Datacom/DB Table, Access Descriptor Files, and View Descriptor Files

[Access Descriptor Files, and View Descriptor Files]

The two types of descriptor files are discussed next. Defining SAS/ACCESS Descriptor Files shows you how to create and edit these files.


Access Descriptor Files

Access descriptor files are of member type ACCESS. Each access descriptor holds essential information about one CA-Datacom/DB table you want to access, for example, the table name, field names, and data types. It also contains corresponding SAS information, such as the SAS column names, formats, and informats. Typically, you have one access descriptor for each CA-Datacom/DB table.

An access descriptor describes one CA-Datacom/DB table. You cannot create a single access descriptor that references two CA-Datacom/DB tables.


View Descriptor Files

View descriptor files are sometimes called SAS views, because their member type is VIEW. This document uses the term view descriptor to distinguish them from views created by the SQL procedure.

Each view descriptor can define all of the data or a particular subset of the data described by one access descriptor (and therefore one CA-Datacom/DB table). For example, you might want to use only three of four possible fields in the table and only some of the values stored in the fields. The view descriptor enables you to select the fields you want and, by specifying selection criteria, to select only the specific data you want. (For example, your selection criteria might be that the date of transaction is January 3, 1998, and that customers' names begin with W.) Typically, for each access descriptor, you have several view descriptors, which select different subsets of data.

You can join data from multiple CA-Datacom/DB tables with the SQL procedure. The SQL procedure can join SAS data files, PROC SQL views, and SAS/ACCESS view descriptors. See Using CA-Datacom/DB Data in SAS Programs and Browsing and Updating CA-Datacom/DB Data for examples that use the SQL procedure.

space
Previous Page | Next Page | Top of Page