<?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: how to get numeric variables and character variables for all dataset in a library in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/how-to-get-numeric-variables-and-character-variables-for-all/m-p/867950#M342804</link>
    <description>&lt;P&gt;Thank you&amp;nbsp; very munch&amp;nbsp;yabwon for your solution&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 04 Apr 2023 10:03:27 GMT</pubDate>
    <dc:creator>BrahmanandaRao</dc:creator>
    <dc:date>2023-04-04T10:03:27Z</dc:date>
    <item>
      <title>how to get numeric variables and character variables for all dataset in a library</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-get-numeric-variables-and-character-variables-for-all/m-p/867906#M342784</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data ds1;
set sashelp.class;
run;


data ds2;
set sashelp.cars;
run;


proc sql;
select MEMNAME into: numvar separated by " "
from dictionary.tables
where LIBNAME="WORK"
      and
MEMNAME="DATA"
      and
TYPE="num";  /*'CHAR"*/
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;How to get all numeric and character variables from all datasets in a library&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2023 04:47:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-get-numeric-variables-and-character-variables-for-all/m-p/867906#M342784</guid>
      <dc:creator>BrahmanandaRao</dc:creator>
      <dc:date>2023-04-04T04:47:23Z</dc:date>
    </item>
    <item>
      <title>Re: how to get numeric variables and character variables for all dataset in a library</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-get-numeric-variables-and-character-variables-for-all/m-p/867912#M342785</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
  create table columns as
  select *
  from dictionary.columns
  where libname = 'WORK';
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 04 Apr 2023 05:05:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-get-numeric-variables-and-character-variables-for-all/m-p/867912#M342785</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2023-04-04T05:05:46Z</dc:date>
    </item>
    <item>
      <title>Re: how to get numeric variables and character variables for all dataset in a library</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-get-numeric-variables-and-character-variables-for-all/m-p/867919#M342791</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc contents data=WORK._ALL_ out=Variables noprint;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 04 Apr 2023 07:12:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-get-numeric-variables-and-character-variables-for-all/m-p/867919#M342791</guid>
      <dc:creator>yabwon</dc:creator>
      <dc:date>2023-04-04T07:12:05Z</dc:date>
    </item>
    <item>
      <title>Re: how to get numeric variables and character variables for all dataset in a library</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-get-numeric-variables-and-character-variables-for-all/m-p/867950#M342804</link>
      <description>&lt;P&gt;Thank you&amp;nbsp; very munch&amp;nbsp;yabwon for your solution&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2023 10:03:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-get-numeric-variables-and-character-variables-for-all/m-p/867950#M342804</guid>
      <dc:creator>BrahmanandaRao</dc:creator>
      <dc:date>2023-04-04T10:03:27Z</dc:date>
    </item>
  </channel>
</rss>

