Storing SAS data (including table structure) in a single flat file - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T11:01:58Z http://stackoverflow.com/feeds/question/119929 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/119929/storing-sas-data-including-table-structure-in-a-single-flat-file 2 Storing SAS data (including table structure) in a single flat file Martin Bøgelund 2008-09-23T08:52:05Z 2009-02-11T23:53:03Z <p>I need to convert SAS data tables into flat files (or "ASCII files" as they were called once, as opposed to binary files). And only 1 flat file for each original SAS table. The challenging thing is that I want the flat file to contain some structural information of the original SAS table also, specifically:</p> <ul> <li>Variable/Column name</li> <li>Variable/Column label</li> <li>Variable/Column type</li> <li>Variable/Column length</li> <li>Variable/Column format</li> <li>Variable/Column informat</li> </ul> <p>Additional information:</p> <ul> <li>I will only need to convert small data (&lt; 100 obs).</li> <li>Performance is not an issue (within reasonable limits).</li> <li>The flat file should form a basis for recreating the original SAS table, I don't need to be able to use the file directly as a table in DATA or PROC steps.</li> </ul> <p>The standard SAS tables, transport files, XPORT files, etc are all binary format files, and the standard XML table format in SAS and CSV-files don't preserve table structure. So obviously these options don't help.</p> <p>What is my best option?</p> http://stackoverflow.com/questions/119929/storing-sas-data-including-table-structure-in-a-single-flat-file/122179#122179 -1 Answer by jeffm for Storing SAS data (including table structure) in a single flat file jeffm 2008-09-23T16:37:35Z 2008-09-23T16:37:35Z <p>If you're only going to use the data in SAS, then you can just use PROC COPY to make transport files:</p> <p><a href="http://www.usc.edu/isd/doc/statistics/sas/sastransport/" rel="nofollow">http://www.usc.edu/isd/doc/statistics/sas/sastransport/</a></p> http://stackoverflow.com/questions/119929/storing-sas-data-including-table-structure-in-a-single-flat-file/137713#137713 3 Answer by John Fouhy for Storing SAS data (including table structure) in a single flat file John Fouhy 2008-09-26T04:01:24Z 2008-09-26T04:01:24Z <p>I'm not aware of any easy solutions.</p> <p>Possibly:</p> <ol> <li>Use PROC EXPORT to produce CSV file with the data in it.</li> <li>Use PROC DATASETS with ODS to produce a dataset with the names, types, etc.</li> <li>Produce another CSV file for this dataset.</li> </ol> <p>Now you've got your ASCII description of the table (spread over two CSV files). Reversing the process would be more tricky. Basically you'd have to read in the description data set, then use CALL SYMPUT in a loop to create a bunch of macro variables with the information in them, then use your macro variables to build a PROC IMPORT for the CSV file...</p> http://stackoverflow.com/questions/119929/storing-sas-data-including-table-structure-in-a-single-flat-file/261956#261956 1 Answer by mjw149 for Storing SAS data (including table structure) in a single flat file mjw149 2008-11-04T13:52:12Z 2008-11-04T13:52:12Z <ol> <li><p>Create the code to export the table to text (this is straightforward, just google it or look at 'The Little SAS Book' if you have a copy).</p></li> <li><p>Then append the 'meta' info from sashelp.vcolumn, which is where sas stores information (meta data) about sas datasets. It's a sas table itself, so you could do a proc sql union operation to join it with the actual columns that this table describes (though you will need to do a transpose type operation because the meta data about the columns is in rows, not columns). </p></li> </ol> <p>You're not being completely specific about how you want to see the meta data in the text file, so that's as far as I can go.</p> http://stackoverflow.com/questions/119929/storing-sas-data-including-table-structure-in-a-single-flat-file/539422#539422 1 Answer by Rog for Storing SAS data (including table structure) in a single flat file Rog 2009-02-11T23:53:03Z 2009-02-11T23:53:03Z <p>proc sql's describe syntax might be handy to get the metadata portion, including lengths, types, formats, indexes etc...</p> <p>Code:</p> <pre><code>proc sql; describe table sashelp.class; quit; </code></pre> <p>Log:</p> <pre><code>NOTE: SQL table SASHELP.CLASS was created like: create table SASHELP.CLASS( bufsize=4096 ) ( Name char(8), Sex char(1), Age num, Height num, Weight num ); </code></pre>