<?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: Proc Export silently fails in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/460505#M117054</link>
    <description>&lt;P&gt;Just a guess - try export only part of dataset using options obs and check is failure dependent on -&lt;/P&gt;
&lt;P&gt;either amount of observations or on data in a specific obs.&lt;/P&gt;</description>
    <pubDate>Mon, 07 May 2018 16:44:04 GMT</pubDate>
    <dc:creator>Shmuel</dc:creator>
    <dc:date>2018-05-07T16:44:04Z</dc:date>
    <item>
      <title>Proc Export silently fails</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/311095#M67138</link>
      <description>&lt;P&gt;I have a strange "error" when I use Proc Export and it doesn't always happen, only sometimes and happens in multiple programs.&amp;nbsp; It's a standard Proc Export:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc export data =&amp;nbsp;dataset outfile = "C:\myfile.xlsx" dbms = Excel replace;sheet="test";run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SAS 9.3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Windows 7&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There will be no error, the log will say it all completed successfully, but when I check the sheet (which is set up with formatting so I don't have to copy/paste from a new file) it is not updated.&amp;nbsp; The only way I know how to make it work is to open the sheet, make ANY change, even 1 number in one cell, and save it.&amp;nbsp; Then re-run the export and VOILA! it works, never fails.&lt;/P&gt;&lt;P&gt;Any ideas?&amp;nbsp; Anyone else get this?&lt;/P&gt;</description>
      <pubDate>Fri, 11 Nov 2016 21:29:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/311095#M67138</guid>
      <dc:creator>Brian_S</dc:creator>
      <dc:date>2016-11-11T21:29:22Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export silently fails</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/311099#M67139</link>
      <description>&lt;P&gt;Could it be that the excel file was open while exporting ?&lt;/P&gt;
&lt;P&gt;If the &lt;STRONG&gt;file is open&lt;/STRONG&gt;, update/replace &amp;nbsp;will be not done.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Nov 2016 21:41:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/311099#M67139</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2016-11-11T21:41:55Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export silently fails</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/311119#M67154</link>
      <description>&lt;P&gt;Did you try newfile= option ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc export data = have outfile = "/folders/myfolders/myfile.xlsx" dbms = xlsx replace;
sheet="test";
newfile=y;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 12 Nov 2016 03:47:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/311119#M67154</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-11-12T03:47:49Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export silently fails</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/311451#M67311</link>
      <description>&lt;P&gt;I have considered both of these solutions.&lt;/P&gt;&lt;P&gt;I am sure the file is not open.&amp;nbsp; I open the file daily but only after the completion of the SAS job....unless I get&amp;nbsp;the error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NEWFILE=Y deletes the file that is currently saved in that location and saves a new one and so the formatting that is on the file is lost.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It may be worth it to note that a code that is always run prior to this one saves information to a separate tab than the target tab in this proc export.&amp;nbsp; I'm not sure if that would occasionally make the file appear to be open.&amp;nbsp; If there is an option to set to make sure this is not the case, I'd be willing to try it.&amp;nbsp; I'm not sure though if I did have the file open, if it would error out completely.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Nov 2016 16:35:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/311451#M67311</guid>
      <dc:creator>Brian_S</dc:creator>
      <dc:date>2016-11-14T16:35:24Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export silently fails</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/311496#M67340</link>
      <description>&lt;P&gt;I understand that you have two steps, each update different tab in same excel &amp;nbsp;file.&lt;/P&gt;
&lt;P&gt;You may try do:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;filename &amp;nbsp;xxxx excel '...path and name ...';&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;proc export &amp;nbsp; &amp;nbsp; /* &amp;nbsp;update tab1 */&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;filename xxxx &lt;STRONG&gt;clear&lt;/STRONG&gt;; &amp;nbsp; &amp;nbsp;/* with hope that will close and release the file to another update */&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;filename &amp;nbsp;xxxx excel '...path and name ...';&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;proc export &amp;nbsp; &amp;nbsp; /* &amp;nbsp;update tab2 */&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm curious to know, does it help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Nov 2016 19:40:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/311496#M67340</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2016-11-14T19:40:12Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export silently fails</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/321612#M71057</link>
      <description>&lt;P&gt;Unfortunately this did not help.&amp;nbsp; Additional piece of information.&amp;nbsp; The change of the number in the Excel file is not even necessary.&amp;nbsp; I just open it and press the save disk icon and close it and it exports fine after that.&amp;nbsp; It's a strange issue.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Dec 2016 17:17:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/321612#M71057</guid>
      <dc:creator>Brian_S</dc:creator>
      <dc:date>2016-12-29T17:17:55Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export silently fails</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/375034#M89872</link>
      <description>&lt;P&gt;I also have the same issue when exporting to formatted excel files - I'm outputting reports as datasheets in the excel file which are then pulled by formatted presentation tables.&amp;nbsp; The log will indicate a successful export but on opening the output there are blank pages.&amp;nbsp; I'm hoping that there is a solution as I have this within a Macro which produces in excess of 100 reports,&amp;nbsp; however I'm not hopeful give the recent silence on this silent error!&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jul 2017 16:07:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/375034#M89872</guid>
      <dc:creator>StewM</dc:creator>
      <dc:date>2017-07-11T16:07:42Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export silently fails</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/394654#M95124</link>
      <description>&lt;P&gt;I have the same issue!&lt;/P&gt;&lt;P&gt;Our report update script is scheduled on a monthly basis.&lt;/P&gt;&lt;P&gt;Couple of month in a row the update with "proc export" work just fine, but than it fails "silently".&lt;/P&gt;&lt;P&gt;I already have written a macro which compares the time stamp of the file and the current time.&lt;/P&gt;&lt;P&gt;If the difference is more than 5 sec (for example) after an update I do abort with an error message.&lt;/P&gt;&lt;P&gt;But it still doesn't solve the problem!&lt;/P&gt;&lt;P&gt;I tried everything, like writing a blank data set into the spreadsheet.&lt;/P&gt;&lt;P&gt;I also tried to delete the data set with proc datasets delete.&lt;/P&gt;&lt;P&gt;In both cases the file doesn't get updated or chaged and process fails silently.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Only option is to change the file manually.&lt;/P&gt;&lt;P&gt;Unfortunately it's not a solution as we want to eliminate manual intervention with the process.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Help?!&lt;/P&gt;</description>
      <pubDate>Mon, 11 Sep 2017 12:58:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/394654#M95124</guid>
      <dc:creator>pw182126</dc:creator>
      <dc:date>2017-09-11T12:58:06Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export silently fails</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/460497#M117051</link>
      <description>&lt;P&gt;It's been awhile, and this problem still presents itself.&amp;nbsp; We have since moved to 9.4.&amp;nbsp; It is completely dependent on the file itself.&amp;nbsp; The timestamp remains unchanged.&amp;nbsp; No prior processes stop it, this code has a single proc export.&amp;nbsp; Anyone else found a way to correct this?&lt;/P&gt;</description>
      <pubDate>Mon, 07 May 2018 16:19:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/460497#M117051</guid>
      <dc:creator>Brian_S</dc:creator>
      <dc:date>2018-05-07T16:19:14Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export silently fails</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/460505#M117054</link>
      <description>&lt;P&gt;Just a guess - try export only part of dataset using options obs and check is failure dependent on -&lt;/P&gt;
&lt;P&gt;either amount of observations or on data in a specific obs.&lt;/P&gt;</description>
      <pubDate>Mon, 07 May 2018 16:44:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/460505#M117054</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2018-05-07T16:44:04Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export silently fails</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/463791#M118211</link>
      <description>&lt;P&gt;I have the same issue with a "silent fail" writing to an existing spreadsheet/named range where the corrective action is to manually open/save the file.&amp;nbsp; That makes me think that this is a problem with a cached version of the file or metadata information perhaps and the manual save is refreshing/replacing the cached version?&amp;nbsp; (just guessing there)&amp;nbsp; My master spreadsheet is in a protected folder so no users can open it so it doesn't get touched by any SAS procedure or myself between runs (don't know what windows/antivirus stuff happens between runs though).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I posted a similar question several months ago and all the suggestions were on ways to identify that the spreadsheet has not updated (which we have now done to prevent incorrect reports from going to users but doesn't really fix the issue.)&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I wonder if issuing a &lt;STRONG&gt;system&lt;/STRONG&gt; command to open/save the file right before the export would help fix this (we technically use a libname statement with data steps writing to the existing named ranges after deleting the data from those ranges) .&amp;nbsp; Problem is that I have yet found a way to reliably reproduce the error so I could test this as it can be months between this error happening.&lt;/P&gt;</description>
      <pubDate>Mon, 21 May 2018 14:51:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/463791#M118211</guid>
      <dc:creator>epp_dog</dc:creator>
      <dc:date>2018-05-21T14:51:50Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export silently fails</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/485788#M126256</link>
      <description>&lt;P&gt;I'm having the same issue exporting daily data. It will run for 3-4 days, then just stop updating the file. I'll go into it, delete a cell, save and close. Then run the export, and it's fine for another 3-4 days.&amp;nbsp; Nobody else has access to the location, and it's being updated at 4am, so i know nobody else is touching it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm just wondering if you've gotten anywhere with this, or had any new ideas?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There are other sheets in the spreadsheet, so i can't delete the file itself, wondering if there is a command to delete just the sheet, so it's technically creating a new sheet every day?&lt;/P&gt;</description>
      <pubDate>Fri, 10 Aug 2018 14:37:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/485788#M126256</guid>
      <dc:creator>jdaleo23</dc:creator>
      <dc:date>2018-08-10T14:37:41Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export silently fails</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/485911#M126308</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/225564"&gt;@jdaleo23&lt;/a&gt; wrote:&amp;nbsp; "&lt;SPAN&gt;I'll go into it, delete a cell, save and close.&lt;/SPAN&gt;".&lt;/P&gt;
&lt;P&gt;Is there any criterion you used to choose the cell to delete ? which afterwards it worked fine?&lt;/P&gt;</description>
      <pubDate>Fri, 10 Aug 2018 18:54:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/485911#M126308</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2018-08-10T18:54:00Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export silently fails</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/485915#M126311</link>
      <description>&lt;P&gt;No, I can delete or modify any single cell, A1, B4, C12.. it doesn't matter. But once I make that change, save and close.. it'll export and replace with the correct data again for a few days.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Aug 2018 18:56:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/485915#M126311</guid>
      <dc:creator>jdaleo23</dc:creator>
      <dc:date>2018-08-10T18:56:16Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export silently fails</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/485917#M126313</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/225564"&gt;@jdaleo23&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;No, I can delete or modify any single cell, A1, B4, C12.. it doesn't matter. But once I make that change, save and close.. it'll export and replace with the correct data again for a few days.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Is there any message or hint in the log ? can you post it ?&lt;/P&gt;</description>
      <pubDate>Fri, 10 Aug 2018 19:04:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/485917#M126313</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2018-08-10T19:04:35Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export silently fails</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/485918#M126314</link>
      <description>I mean the log of the failed run.</description>
      <pubDate>Fri, 10 Aug 2018 19:05:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/485918#M126314</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2018-08-10T19:05:10Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export silently fails</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/485919#M126315</link>
      <description>&lt;P&gt;I'll send a good and bad log, when it fails again.. which should be tomorrow or Sunday, since it usually fails after one successful run.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Aug 2018 19:07:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/485919#M126315</guid>
      <dc:creator>jdaleo23</dc:creator>
      <dc:date>2018-08-10T19:07:34Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export silently fails</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/485950#M126328</link>
      <description>&lt;P&gt;Couple of month ago our customer migrated to SAS 9.4, so I changed the proc export from dbms=excel to dbms=xlsx.&lt;/P&gt;&lt;P&gt;The problem solved!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm afraid analysing the logs won't help.&lt;/P&gt;&lt;P&gt;There is not even a little hint what could cause the issue.&lt;/P&gt;&lt;P&gt;The problem occur very random&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The only solution, what worked for us, was to analyse the timestamp and abort the process, then delete some data in excel file, save and rerun the process again.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Good luck! &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Aug 2018 20:56:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/485950#M126328</guid>
      <dc:creator>pw182126</dc:creator>
      <dc:date>2018-08-10T20:56:18Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export silently fails</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/486176#M126449</link>
      <description>&lt;P&gt;Thanks for the update!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'll have to see if I can get dbms=xlsx to work, although the only issue I have been running into with that, is that I cannot get multiple sheets to write using that dbms. It basically clears the entire document and rewrites just the one sheet.&amp;nbsp; My output file has a few sheets in it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any ideas on that? Is that a 9.3 issue?&lt;/P&gt;</description>
      <pubDate>Sun, 12 Aug 2018 17:51:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/486176#M126449</guid>
      <dc:creator>jdaleo23</dc:creator>
      <dc:date>2018-08-12T17:51:03Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export silently fails</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/486356#M126536</link>
      <description>&lt;P&gt;I believe&amp;nbsp;the DBMS=XLSX engine does not support named ranges in Excel - which my pivot tables use so that is not an option.&amp;nbsp; I have good macros to check the spreadsheet after SAS thinks it writes to it and compare to the SAS datasets used to write to those named ranges.&amp;nbsp; If they don't match, we send the programmer/admin a text to open/save/re-write the data.&amp;nbsp; It is a 5 minute fix but annoying to have to do at all.&amp;nbsp; My VB is not very good (i.e. really BAD) but I am thinking that if I can write a VB script to execute from within the SAS program, I can just always open/save/close the spreadsheet before attempting the write.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It is really strange as I have some reports where this seems to happen 70-80% of the time and others where it seems to only happen 10-20% of the time.&amp;nbsp; And I have never been able to force the error to happen either (tried just looping a open/write/close thousands of times to see if it could hit this error).&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Aug 2018 14:25:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-silently-fails/m-p/486356#M126536</guid>
      <dc:creator>epp_dog</dc:creator>
      <dc:date>2018-08-13T14:25:41Z</dc:date>
    </item>
  </channel>
</rss>

