Search notes:

SAS: dictionary.destinations

Describe

proc sql;
  describe table dictionary.destinations;
quit;
/*
create table DICTIONARY.DESTINATIONS
  (
   destination char(100) label='Destination',
   style char(32) label='Style'
  );
*/
Github repository about-SAS, path: /programming/dictionary/destinations/describe.sas

sashelp.vdest

The view sashelp.vdest is derived from dictionary.destinations.

Show ODS desinations

dictionary.destinations contains the open ODS destinations.
%macro ods_dest;
  proc sql flow=15;
    select * from dictionary.destinations;
  quit;
%mend ods_dest;

%ods_dest
/*
   Destination      Style
   --------------------------------
   LISTING          Listing
*/

ods html style=sasweb;
%ods_dest
/*
  Destination      Style
  --------------------------------
  LISTING          Listing
  HTML             SasWeb
*/

ods rtf;
%ods_dest
/*
  Destination      Style
  --------------------------------
  LISTING          Listing
  HTML             SasWeb
  RTF              Rtf
*/

ods html close;
%ods_dest
/*
   Destination      Style
   --------------------------------
   LISTING          Listing
   RTF              Rtf
*/
Github repository about-SAS, path: /programming/dictionary/destinations/show-ods-destinations.sas

See also

dictionary tables

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/Companie...', 1759408437, '216.73.216.42', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/Companies-Products/SAS/programming/dictionary/destinations/index(104): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78