SAS OnlineTutor HomeFAQ PageSuggested Learning PathsContents+Searchback||next

Accessing Other Vendors' DBMS Data
DBMS Access Using the SQL Procedure Pass-Through Facility


Question: In the statement below that grants UPDATE access to the user STUDENT, specify the correct keyword.
proc sql;
   connect to oracle as tempdb
           (user=student pw=sesame path=temppath
            connection=global);
   select *
      from connection to tempdb
              (select ssn, lname, fname, activity
                  from members 
                  where contacts<5);
   (grant update on members
                      to student) by tempdb;
   ...
quit;

           


back||next


Copyright © 2002 SAS Institute Inc., Cary, NC, USA. All rights reserved.

Terms of Use & Legal Information | Privacy Statement