LASR Procedure

Example 6: Unload a Table from Memory

Details

This PROC LASR example demonstrates how to unload tables from memory. The first REMOVE statement applies to tables that were loaded from HDFS. The second REMOVE statement is typical for tables that are loaded from SAS libraries.

Program

libname finance "/data/finance/2011/";

proc lasr port=10010;
    remove user.sales.2011.q4; 1
    remove finance.trans; 2
    performance host="grid001.example.com" 
        install="/opt/TKGrid";
run;

Program Description

  1. This REMOVE statement specifies a table that was loaded from HDFS.
  2. The libref and member name for a SAS data set are specified in this REMOVE statement example.