<?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 find the physical storage of WORK dataset which was created under precode and postcode? in SAS Data Management</title>
    <link>https://communities.sas.com/t5/SAS-Data-Management/How-to-find-the-physical-storage-of-WORK-dataset-which-was/m-p/586761#M17941</link>
    <description>It is pointing to the folder where it is not accessible. I wonder if that&lt;BR /&gt;folder exists.&lt;BR /&gt;</description>
    <pubDate>Fri, 06 Sep 2019 13:30:44 GMT</pubDate>
    <dc:creator>Babloo</dc:creator>
    <dc:date>2019-09-06T13:30:44Z</dc:date>
    <item>
      <title>How to find the physical storage of WORK dataset which was created under precode and postcode?</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/How-to-find-the-physical-storage-of-WORK-dataset-which-was/m-p/586732#M17939</link>
      <description>&lt;P&gt;I've created the WORK datasets under precode and postcode and I would like to see how the data was populated. However I'm unable to figure out where this dataset is physically located in DI studio 4.9.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I see the physical storage of other&amp;nbsp; WORK datasets which was created as part of other transformation e.g. Extract, Sort...I could see as 'Job's default library for temporary tables' under Location. Is there a way that we can find the location without any support from SAS admin?&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2019 12:39:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/How-to-find-the-physical-storage-of-WORK-dataset-which-was/m-p/586732#M17939</guid>
      <dc:creator>Babloo</dc:creator>
      <dc:date>2019-09-06T12:39:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to find the physical storage of WORK dataset which was created under precode and postcode?</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/How-to-find-the-physical-storage-of-WORK-dataset-which-was/m-p/586737#M17940</link>
      <description>&lt;PRE&gt;%let work=%sysfunc(pathname(WORK));

%put &amp;amp;work ;&lt;/PRE&gt;</description>
      <pubDate>Fri, 06 Sep 2019 12:57:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/How-to-find-the-physical-storage-of-WORK-dataset-which-was/m-p/586737#M17940</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2019-09-06T12:57:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to find the physical storage of WORK dataset which was created under precode and postcode?</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/How-to-find-the-physical-storage-of-WORK-dataset-which-was/m-p/586761#M17941</link>
      <description>It is pointing to the folder where it is not accessible. I wonder if that&lt;BR /&gt;folder exists.&lt;BR /&gt;</description>
      <pubDate>Fri, 06 Sep 2019 13:30:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/How-to-find-the-physical-storage-of-WORK-dataset-which-was/m-p/586761#M17941</guid>
      <dc:creator>Babloo</dc:creator>
      <dc:date>2019-09-06T13:30:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to find the physical storage of WORK dataset which was created under precode and postcode?</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/How-to-find-the-physical-storage-of-WORK-dataset-which-was/m-p/586831#M17947</link>
      <description>If you're running in batch the work folder only exists when you're running a session and is deleted after so it doesn't take up space so it won't exist. Ensure your timing is set up correctly when checking for the existence of work folders. Usually they go to the same place so you can go up a level and use the parent folder size if needed. Problem with that approach is if you have sessions that terminate abruptly you'll have the leftover work spaces. &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 06 Sep 2019 17:52:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/How-to-find-the-physical-storage-of-WORK-dataset-which-was/m-p/586831#M17947</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-09-06T17:52:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to find the physical storage of WORK dataset which was created under precode and postcode?</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/How-to-find-the-physical-storage-of-WORK-dataset-which-was/m-p/586920#M17948</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/8409"&gt;@Babloo&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For such cases I normally just copy/paste the DIS generated code into EG and run it from there as this gives you easy access to all the tables in Work whether registered in metadata or not.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I normally try to avoid pre- and post-code especially when it's creating tables/data. I'd rather go for a user written code node pre/post the transformation where I then create the work tables also as metadata (green tables). In doing so you can easily investigate the tables directly within DIS. It also makes such user written code "visible" in the job flow and it better support impact analysis as at least table level dependencies will show in the analysis.&lt;/P&gt;</description>
      <pubDate>Sat, 07 Sep 2019 00:20:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/How-to-find-the-physical-storage-of-WORK-dataset-which-was/m-p/586920#M17948</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2019-09-07T00:20:28Z</dc:date>
    </item>
  </channel>
</rss>

