Previous Page | Next Page

The ACCESS Procedure for Relational Databases

Example 1: Example 1: Update an Access Descriptor


The following example updates an access descriptor AdLib.Employ on the Oracle table Employees. The original access descriptor includes all of the columns in the table. The updated access descriptor omits the Salary and BirthDate columns.

proc access dbms=oracle ad=adlaib.employ;

   /* update access descriptor  */

   update adlib.employ.access;
   drop salary birthdate;
   list all;
run;

You can use the LIST statement to write all variables to the SAS log so that you can see the complete access descriptor before you update it.

Previous Page | Next Page | Top of Page