<?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: Why previous work tables are not shown in output data tab? in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Why-previous-work-tables-are-not-shown-in-output-data-tab/m-p/764637#M30495</link>
    <description>&lt;P&gt;What SAS environment are you running?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to view the data set, that only shows one, most likely the last created by default.. This is intentional because data sets can have different variables or same named variables with different properties.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You are not creating any "output" that could be displayed in a single window only data sets. You will have to open data sets separately. Go to whereever you see your libraries, open the library and click on the desired data set(s) one at a time.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You could use Proc Print to send the output to an actual output window that will display more than one result.&lt;/P&gt;</description>
    <pubDate>Sat, 28 Aug 2021 16:43:06 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2021-08-28T16:43:06Z</dc:date>
    <item>
      <title>Why previous work tables are not shown in output data tab?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Why-previous-work-tables-are-not-shown-in-output-data-tab/m-p/764633#M30494</link>
      <description>&lt;P&gt;when I run the entire code both work.crsp_indx&amp;nbsp; and work.sicx are shown in output data tab. When I run them sequentially, i.e. first run one and then run the other one then only the last one is shown. I understand at the end the first table is still there and I can use it for future commands. But what can I do to make both of them stay even when run blocks of codes one by one?&lt;/P&gt;&lt;P&gt;(I know I can for example use the following code to make the first table show but I'm trying to find a solution which does not need extra coding after each run.&lt;/P&gt;&lt;P&gt;data crsp_indx ;&lt;BR /&gt;set crsp_indx ;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sql;&lt;BR /&gt;create table crsp_indx as&lt;BR /&gt;select vwretd,date,spindx From crsp.dsi&lt;BR /&gt;where date&amp;gt;='01DEC2002'd and date&amp;lt;'31DEC2020'd ;&lt;BR /&gt;*quit;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sql;&lt;BR /&gt;create table sicx as&lt;BR /&gt;select sic,gvkey From compa.company;&lt;BR /&gt;*quit;&lt;BR /&gt;RUN;&lt;/P&gt;</description>
      <pubDate>Sat, 28 Aug 2021 16:09:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Why-previous-work-tables-are-not-shown-in-output-data-tab/m-p/764633#M30494</guid>
      <dc:creator>austin_sas</dc:creator>
      <dc:date>2021-08-28T16:09:50Z</dc:date>
    </item>
    <item>
      <title>Re: Why previous work tables are not shown in output data tab?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Why-previous-work-tables-are-not-shown-in-output-data-tab/m-p/764637#M30495</link>
      <description>&lt;P&gt;What SAS environment are you running?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to view the data set, that only shows one, most likely the last created by default.. This is intentional because data sets can have different variables or same named variables with different properties.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You are not creating any "output" that could be displayed in a single window only data sets. You will have to open data sets separately. Go to whereever you see your libraries, open the library and click on the desired data set(s) one at a time.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You could use Proc Print to send the output to an actual output window that will display more than one result.&lt;/P&gt;</description>
      <pubDate>Sat, 28 Aug 2021 16:43:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Why-previous-work-tables-are-not-shown-in-output-data-tab/m-p/764637#M30495</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-08-28T16:43:06Z</dc:date>
    </item>
    <item>
      <title>Re: Why previous work tables are not shown in output data tab?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Why-previous-work-tables-are-not-shown-in-output-data-tab/m-p/764643#M30496</link>
      <description>&lt;P&gt;Enterprise Guide or SAS Studio will only show the datasets created in the last run from a node; if you submit only part of the code, only datasets created in that part will show up.&lt;/P&gt;
&lt;P&gt;Any datasets created before that will still be available through the WORK library in the server list, as long as the SAS session is not terminated or restarted.&lt;/P&gt;</description>
      <pubDate>Sat, 28 Aug 2021 18:23:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Why-previous-work-tables-are-not-shown-in-output-data-tab/m-p/764643#M30496</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-08-28T18:23:11Z</dc:date>
    </item>
    <item>
      <title>Re: Why previous work tables are not shown in output data tab?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Why-previous-work-tables-are-not-shown-in-output-data-tab/m-p/764731#M30502</link>
      <description>&lt;P&gt;I'm using SAS Studio&lt;/P&gt;</description>
      <pubDate>Sun, 29 Aug 2021 15:56:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Why-previous-work-tables-are-not-shown-in-output-data-tab/m-p/764731#M30502</guid>
      <dc:creator>austin_sas</dc:creator>
      <dc:date>2021-08-29T15:56:07Z</dc:date>
    </item>
  </channel>
</rss>

