<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Keeping all variables in sas session in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Keeping-all-variables-in-sas-session/m-p/196367#M266524</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your message.&lt;/P&gt;&lt;P&gt;Yes , I want to see all variables and thier attributes( name, type, length, ....)&lt;/P&gt;&lt;P&gt;It is great, if i can see if the variable is missing or not.&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 30 May 2015 13:13:18 GMT</pubDate>
    <dc:creator>LineMoon</dc:creator>
    <dc:date>2015-05-30T13:13:18Z</dc:date>
    <item>
      <title>Keeping all variables in sas session</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Keeping-all-variables-in-sas-session/m-p/196365#M266522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please, we want to keep all sas variables attibute&lt;A name="a001103996"&gt;&lt;/A&gt;s in sas session by library in one file (or data).&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 May 2015 11:47:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Keeping-all-variables-in-sas-session/m-p/196365#M266522</guid>
      <dc:creator>LineMoon</dc:creator>
      <dc:date>2015-05-30T11:47:49Z</dc:date>
    </item>
    <item>
      <title>Re: Keeping all variables in sas session</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Keeping-all-variables-in-sas-session/m-p/196366#M266523</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you describe what you want a bit more?&amp;nbsp; You have a SAS session, that has libraries defined, and datasets in those libraries, and variables in those datatsets.&amp;nbsp; That's a lot of variables.&amp;nbsp; You want a list of all those variables?? And what attributes?&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You might start by looking at dictionary.columns&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt; create table AllVars as&lt;/P&gt;&lt;P&gt; select * from dictionary.columns&lt;/P&gt;&lt;P&gt;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc print data=AllVars;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 May 2015 12:56:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Keeping-all-variables-in-sas-session/m-p/196366#M266523</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2015-05-30T12:56:21Z</dc:date>
    </item>
    <item>
      <title>Re: Keeping all variables in sas session</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Keeping-all-variables-in-sas-session/m-p/196367#M266524</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your message.&lt;/P&gt;&lt;P&gt;Yes , I want to see all variables and thier attributes( name, type, length, ....)&lt;/P&gt;&lt;P&gt;It is great, if i can see if the variable is missing or not.&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 May 2015 13:13:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Keeping-all-variables-in-sas-session/m-p/196367#M266524</guid>
      <dc:creator>LineMoon</dc:creator>
      <dc:date>2015-05-30T13:13:18Z</dc:date>
    </item>
    <item>
      <title>Re: Keeping all variables in sas session</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Keeping-all-variables-in-sas-session/m-p/196368#M266525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PROC CONTENTS does this pretty easily:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc contents data=lib._all_ out=lib._contents_;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have the option of adding the word NOPRINT if you want the data set only but not a printed report.&amp;nbsp; Of course, you don't have to run this right away.&amp;nbsp; It can be run later, as long as you don't delete any data sets.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This stores the attributes.&amp;nbsp; That has nothing to do with missing values, which you will have to analyze separately.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 May 2015 20:24:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Keeping-all-variables-in-sas-session/m-p/196368#M266525</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2015-05-30T20:24:05Z</dc:date>
    </item>
    <item>
      <title>Re: Keeping all variables in sas session</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Keeping-all-variables-in-sas-session/m-p/196369#M266526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, that's right, but I need also to know the missing variables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I have a data with some of the missing variables and i want to see the missing variables and the non missing variables for all the libraries&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lib&amp;nbsp; Table vaiable&amp;nbsp; type length&amp;nbsp; Missing&lt;/P&gt;&lt;P&gt;lb1&amp;nbsp; t11&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; v11&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; yes&lt;/P&gt;&lt;P&gt;..................................................&lt;/P&gt;&lt;P&gt;lb2&amp;nbsp; t21&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; v21&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $8&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; no&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lbn&amp;nbsp;&amp;nbsp; tn1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; vn1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3$&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; yes&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 31 May 2015 00:32:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Keeping-all-variables-in-sas-session/m-p/196369#M266526</guid>
      <dc:creator>LineMoon</dc:creator>
      <dc:date>2015-05-31T00:32:05Z</dc:date>
    </item>
    <item>
      <title>Re: Keeping all variables in sas session</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Keeping-all-variables-in-sas-session/m-p/196370#M266527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A __default_attr="76729" __jive_macro_name="thread" class="jive_macro jive_macro_thread" href="https://communities.sas.com/"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 31 May 2015 04:01:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Keeping-all-variables-in-sas-session/m-p/196370#M266527</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2015-05-31T04:01:56Z</dc:date>
    </item>
  </channel>
</rss>

