<?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: ERROR: Read Access Violation IMPORT in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/ERROR-Read-Access-Violation-IMPORT/m-p/444054#M69362</link>
    <description>&lt;P&gt;Perhaps your missing a vpn connection to the system or something like that.&amp;nbsp; From what you say - code runs on school machine, but not on your machine, then the only conclusion is that the school machine has access to that area, and your machine doesn't.&amp;nbsp; Contact the school, you may need to vpn into their system to be able to use it.&amp;nbsp; Much the same as if I want to use our old SAS system, I need to vpn into work, then use it there.&lt;/P&gt;</description>
    <pubDate>Fri, 09 Mar 2018 11:45:27 GMT</pubDate>
    <dc:creator>RW9</dc:creator>
    <dc:date>2018-03-09T11:45:27Z</dc:date>
    <item>
      <title>ERROR: Read Access Violation IMPORT</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/ERROR-Read-Access-Violation-IMPORT/m-p/444040#M69359</link>
      <description>&lt;P&gt;I am using SAS as a client through a school as a student and i am trying to import an xslx file but i get an error code to contact technical support&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SA import command:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc import out = stroke.s1&lt;BR /&gt;datafile= '\\tsclient\C\Users\Desktop\StrokeData\StrokeData.xlsx'&lt;BR /&gt;dbms= xlsx replace;&lt;BR /&gt;sheet="three";&lt;BR /&gt;getnames=YES;&lt;BR /&gt;run;.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;ERROR: An exception has been encountered.&lt;BR /&gt;Please contact technical support and provide them with the following traceback information:&lt;/P&gt;&lt;P&gt;The SAS task name is [IMPORT]&lt;BR /&gt;&lt;STRONG&gt;ERROR: Read Access Violation IMPORT&lt;/STRONG&gt;&lt;BR /&gt;Exception occurred at (068B3F86)&lt;BR /&gt;Task Traceback&lt;BR /&gt;Address Frame (DBGHELP API Version 4.0 rev 5)&lt;BR /&gt;00000000068B3F86 000000002779C240 sasimxlx:tkvercn1+0x12F46&lt;BR /&gt;00000000068AFF2F 00000000277AE530 sasimxlx:tkvercn1+0xEEEF&lt;BR /&gt;00000000068A681A 00000000277AE580 sasimxlx:tkvercn1+0x57DA&lt;BR /&gt;00000000068A17AD 00000000277AE5B0 sasimxlx:tkvercn1+0x76D&lt;BR /&gt;0000000006872F74 00000000277AE5B8 sasimctr:tkvercn1+0x1F34&lt;BR /&gt;0000000006871784 00000000277AF680 sasimctr:tkvercn1+0x744&lt;BR /&gt;000000000685126D 00000000277AF688 sasimpor:tkvercn1+0x22D&lt;BR /&gt;0000000002F483AB 00000000277AFBF8 sashost:Main+0x10F1B&lt;BR /&gt;0000000002F4DFDD 00000000277AFF50 sashost:Main+0x16B4D&lt;BR /&gt;00007FFC493E8364 00000000277AFF58 KERNEL32:BaseThreadInitThunk+0x14&lt;BR /&gt;00007FFC497B7091 00000000277AFF88 ntdll:RtlUserThreadStart+0x21&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;NOTE: PROCEDURE IMPORT used (Total process time):&lt;BR /&gt;real time 6.31 seconds&lt;BR /&gt;cpu time 0.04 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you. Any help is appreciated.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Mar 2018 10:18:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/ERROR-Read-Access-Violation-IMPORT/m-p/444040#M69359</guid>
      <dc:creator>TheBlackBishop</dc:creator>
      <dc:date>2018-03-09T10:18:02Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Read Access Violation IMPORT</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/ERROR-Read-Access-Violation-IMPORT/m-p/444048#M69360</link>
      <description>&lt;P&gt;Well, you don't state what particular branch of SAS software you are using, for example Enterprise Guide, or university Edition.&amp;nbsp; That being said this path:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;'\\tsclient\C\Users\Desktop\StrokeData\StrokeData.xlsx'&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Is wrong on any system.&amp;nbsp; You are mixing a local windows drive - e.g.&amp;nbsp;C\Users\Desktop\StrokeData - with either a network location or a location on a virtual image (if your using SAS University Edition then that is installed on a virtual image which is like a partition of your machine for a different computer altogether).&amp;nbsp; If you using UE, then you need to copy the file to the virtual machine and then specify the filename as something like:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;//MyFolders/StrokeData.xlsx&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If you using something else, then you need to check what the path to the file is in relation to the system, not your machine, e.g. I have SAS installed on a network drive, then I need to copy the file there and then reference the network drive:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;//NetworkDrive/Location/Directory/StrokeData.xlsx&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I would check with your school or documentation as this is a fundamental part of the learning exercise&amp;nbsp;so should be in the training quite early on.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Mar 2018 10:48:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/ERROR-Read-Access-Violation-IMPORT/m-p/444048#M69360</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-03-09T10:48:47Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Read Access Violation IMPORT</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/ERROR-Read-Access-Violation-IMPORT/m-p/444053#M69361</link>
      <description>&lt;P&gt;Thank you for your response.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Its SAS 9.4 and it is on my school network.&lt;/P&gt;&lt;P&gt;'tsclient 'is the network drive and the location follows. I have used that same path to create the libname. The last time i did this on my computer, i had similar issues and then i went on school computers to import the file before continuing on my computer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also i checked the xlsx file for any encoding and i unblocked security features.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 09 Mar 2018 11:15:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/ERROR-Read-Access-Violation-IMPORT/m-p/444053#M69361</guid>
      <dc:creator>TheBlackBishop</dc:creator>
      <dc:date>2018-03-09T11:15:17Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Read Access Violation IMPORT</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/ERROR-Read-Access-Violation-IMPORT/m-p/444054#M69362</link>
      <description>&lt;P&gt;Perhaps your missing a vpn connection to the system or something like that.&amp;nbsp; From what you say - code runs on school machine, but not on your machine, then the only conclusion is that the school machine has access to that area, and your machine doesn't.&amp;nbsp; Contact the school, you may need to vpn into their system to be able to use it.&amp;nbsp; Much the same as if I want to use our old SAS system, I need to vpn into work, then use it there.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Mar 2018 11:45:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/ERROR-Read-Access-Violation-IMPORT/m-p/444054#M69362</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-03-09T11:45:27Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Read Access Violation IMPORT</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/ERROR-Read-Access-Violation-IMPORT/m-p/444055#M69363</link>
      <description>&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Fri, 09 Mar 2018 11:48:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/ERROR-Read-Access-Violation-IMPORT/m-p/444055#M69363</guid>
      <dc:creator>TheBlackBishop</dc:creator>
      <dc:date>2018-03-09T11:48:30Z</dc:date>
    </item>
  </channel>
</rss>

