<?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 SAS ERROR:  Read Access Violation TRANSPOSE in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/SAS-ERROR-Read-Access-Violation-TRANSPOSE/m-p/261094#M310114</link>
    <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am getting below exception and error while Transposing a dataset in SAS. Can anyone please help me on this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ERROR: An exception has been encountered.&lt;BR /&gt;Please contact technical support and provide them with the following traceback information:&lt;BR /&gt;&lt;BR /&gt;The SAS task name is [TRANSPOSE]&lt;BR /&gt;ERROR: Read Access Violation TRANSPOSE&lt;BR /&gt;Exception occurred at (0CEBEA19)&lt;BR /&gt;Task Traceback&lt;BR /&gt;Address Frame (DBGHELP API Version 4.0 rev 5)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance for your help,&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rajesh&lt;/P&gt;</description>
    <pubDate>Mon, 04 Apr 2016 14:14:13 GMT</pubDate>
    <dc:creator>rajesh_k_jha_accenture_com</dc:creator>
    <dc:date>2016-04-04T14:14:13Z</dc:date>
    <item>
      <title>SAS ERROR:  Read Access Violation TRANSPOSE</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-ERROR-Read-Access-Violation-TRANSPOSE/m-p/261094#M310114</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am getting below exception and error while Transposing a dataset in SAS. Can anyone please help me on this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ERROR: An exception has been encountered.&lt;BR /&gt;Please contact technical support and provide them with the following traceback information:&lt;BR /&gt;&lt;BR /&gt;The SAS task name is [TRANSPOSE]&lt;BR /&gt;ERROR: Read Access Violation TRANSPOSE&lt;BR /&gt;Exception occurred at (0CEBEA19)&lt;BR /&gt;Task Traceback&lt;BR /&gt;Address Frame (DBGHELP API Version 4.0 rev 5)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance for your help,&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rajesh&lt;/P&gt;</description>
      <pubDate>Mon, 04 Apr 2016 14:14:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-ERROR-Read-Access-Violation-TRANSPOSE/m-p/261094#M310114</guid>
      <dc:creator>rajesh_k_jha_accenture_com</dc:creator>
      <dc:date>2016-04-04T14:14:13Z</dc:date>
    </item>
    <item>
      <title>Re: SAS ERROR:  Read Access Violation TRANSPOSE</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-ERROR-Read-Access-Violation-TRANSPOSE/m-p/261096#M310115</link>
      <description>&lt;P&gt;Close your session completey, open a new fresh session, run your program up to that point. &amp;nbsp;I.e. test its not just something clogged up in your session. &amp;nbsp;Re-run your code, do it step by step, make sure everything needed for the step is present - i.e. no errors/warnings, data present etc, so the code should function. &amp;nbsp;Etc. debug as far as you can.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If it does it again, then I would suggest doing as the text states, contact technical support with that information. Could be any number of things.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Apr 2016 14:24:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-ERROR-Read-Access-Violation-TRANSPOSE/m-p/261096#M310115</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2016-04-04T14:24:50Z</dc:date>
    </item>
    <item>
      <title>Re: SAS ERROR:  Read Access Violation TRANSPOSE</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-ERROR-Read-Access-Violation-TRANSPOSE/m-p/261103#M310116</link>
      <description>&lt;P&gt;Does it happen everytime you run the code or is it a one time occurence? Also, without the code, there's no way to tell what the issue might be.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Apr 2016 14:40:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-ERROR-Read-Access-Violation-TRANSPOSE/m-p/261103#M310116</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-04-04T14:40:06Z</dc:date>
    </item>
    <item>
      <title>Re: SAS ERROR:  Read Access Violation TRANSPOSE</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-ERROR-Read-Access-Violation-TRANSPOSE/m-p/272404#M310117</link>
      <description>&lt;P&gt;HI Reeza,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It is happening with certain specific data but not with every input &amp;nbsp;data. So, trying to find out the reason and pattern which is causing this issue:&lt;/P&gt;&lt;P&gt;Below is the SAS code, which i am trying to execute:&lt;/P&gt;&lt;P&gt;libname test "C:\Rajesh\HRA\AL_CERT\Input_May_06\test_datasets";&lt;/P&gt;&lt;P&gt;PROC TRANSPOSE DATA= test.ac_cert_check OUT=al_cert_check_tr;&lt;BR /&gt;BY A--AE;&lt;BR /&gt;VAR AF--JW;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For reference, I have attached the input dataset.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rajesh&lt;/P&gt;</description>
      <pubDate>Mon, 23 May 2016 12:31:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-ERROR-Read-Access-Violation-TRANSPOSE/m-p/272404#M310117</guid>
      <dc:creator>rajesh_k_jha_accenture_com</dc:creator>
      <dc:date>2016-05-23T12:31:38Z</dc:date>
    </item>
    <item>
      <title>Re: SAS ERROR:  Read Access Violation TRANSPOSE</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-ERROR-Read-Access-Violation-TRANSPOSE/m-p/272413#M310118</link>
      <description>&lt;P&gt;SAS should never fail with this kind of error. Contact SAS Technical Support. They're in the best position to be able to diagnose the problem and provide you with a fix or workaround.&lt;/P&gt;</description>
      <pubDate>Mon, 23 May 2016 13:13:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-ERROR-Read-Access-Violation-TRANSPOSE/m-p/272413#M310118</guid>
      <dc:creator>Tim_SAS</dc:creator>
      <dc:date>2016-05-23T13:13:31Z</dc:date>
    </item>
  </channel>
</rss>

