Search notes:

SAS proc sql: describe table

data some_table;
     attrib
       col_one   label = 'foo'
       col_two   label = 'bar' length = $20.
       col_three label = 'baz' length = $10.
     ;
     col_one   =  42;
     col_two   = 'Hello world.';
     col_three = ' ';
run;

proc sql;
  describe table work.some_table;
quit;
/* 
  create table WORK.SOME_TABLE( bufsize=65536 )
     (
      col_one num label='foo',
      col_two char(20) label='bar',
      col_three char(10) label='baz'
     );
*/
Github repository about-SAS, path: /programming/proc/sql/describe-table.sas

See also

proc sql

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...', 1759415520, '216.73.216.42', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/Companies-Products/SAS/programming/proc/sql/describe-table(59): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78