Search notes:

SAS statements: datalines

datalines together with the input statement allow to read data that is stored with the program (rather than reading external data).
The ; after the datalines statement marks a data step boundary
/*
     Reading instream data lines
     
     Apparently, datalines is also a reserved fileref for 
     the INFILE statement.
     
*/

data tq84;
  input num english $ german $;
datalines;
1 one eins
4 four vier
2 two zwei
9 nine neun
;;;;
Github repository about-SAS, path: /programming/statements/datalines/basic.sas

Options

Apparently, in order to read data lines longer than 80 characters, the nocardimage option need to be set.

See also

datalines4
SAS statements

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