<?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 Unable to read SAS report file in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Unable-to-read-SAS-report-file/m-p/50324#M13729</link>
    <description>I was trying to create a temperory table from a SAS dataset using proc sql.&lt;BR /&gt;
The code was like &lt;BR /&gt;
&lt;BR /&gt;
proc sql ;&lt;BR /&gt;
  create table t1  as &lt;BR /&gt;
       select columnA   from tableA;&lt;BR /&gt;
quit;&lt;BR /&gt;
&lt;BR /&gt;
I got the error ERROR: CLI cursor fetch error: [SAS/ACCESS to SQL Server][ODBC SQL Server Driver]Unicode conversion failed.&lt;BR /&gt;
&lt;BR /&gt;
Also an error message box saying Unable to read SAS report file.&lt;BR /&gt;
&lt;BR /&gt;
Please help on this...</description>
    <pubDate>Wed, 15 Dec 2010 12:43:54 GMT</pubDate>
    <dc:creator>Rose</dc:creator>
    <dc:date>2010-12-15T12:43:54Z</dc:date>
    <item>
      <title>Unable to read SAS report file</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Unable-to-read-SAS-report-file/m-p/50324#M13729</link>
      <description>I was trying to create a temperory table from a SAS dataset using proc sql.&lt;BR /&gt;
The code was like &lt;BR /&gt;
&lt;BR /&gt;
proc sql ;&lt;BR /&gt;
  create table t1  as &lt;BR /&gt;
       select columnA   from tableA;&lt;BR /&gt;
quit;&lt;BR /&gt;
&lt;BR /&gt;
I got the error ERROR: CLI cursor fetch error: [SAS/ACCESS to SQL Server][ODBC SQL Server Driver]Unicode conversion failed.&lt;BR /&gt;
&lt;BR /&gt;
Also an error message box saying Unable to read SAS report file.&lt;BR /&gt;
&lt;BR /&gt;
Please help on this...</description>
      <pubDate>Wed, 15 Dec 2010 12:43:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Unable-to-read-SAS-report-file/m-p/50324#M13729</guid>
      <dc:creator>Rose</dc:creator>
      <dc:date>2010-12-15T12:43:54Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to read SAS report file</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Unable-to-read-SAS-report-file/m-p/50325#M13730</link>
      <description>Hi:&lt;BR /&gt;
  You may have 2 different issues. The SAS Report message is outlined in this Tech Support note (are you using EG???):&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/39/198.html" target="_blank"&gt;http://support.sas.com/kb/39/198.html&lt;/A&gt;&lt;BR /&gt;
 &lt;BR /&gt;
  If you search on support.sas.com using the search string:&lt;BR /&gt;
&lt;B&gt;CLI cursor fetch error&lt;/B&gt;&lt;BR /&gt;
 &lt;BR /&gt;
you will come up with over 30 hits. These are a few notes from the first hits:&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/13/396.html" target="_blank"&gt;http://support.sas.com/kb/13/396.html&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/8/642.html" target="_blank"&gt;http://support.sas.com/kb/8/642.html&lt;/A&gt;&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Wed, 15 Dec 2010 19:01:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Unable-to-read-SAS-report-file/m-p/50325#M13730</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-12-15T19:01:34Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to read SAS report file</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Unable-to-read-SAS-report-file/m-p/50326#M13731</link>
      <description>From your log ,there is some illegal character for your SAS.&lt;BR /&gt;
And I also meet this problem before.&lt;BR /&gt;
&lt;BR /&gt;
Can you extract some first  several observations from this dataset successfully? Such as&lt;BR /&gt;
&lt;BR /&gt;
[pre]&lt;BR /&gt;
data temp;&lt;BR /&gt;
 set tableA(obs=2);&lt;BR /&gt;
run;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
If It can. Then use &lt;BR /&gt;
[pre] &lt;BR /&gt;
proc report data=tableA nowd out=New_TableA(drop=_break_);&lt;BR /&gt;
 column coulmnA;&lt;BR /&gt;
 define coulmnA/display;&lt;BR /&gt;
run;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
to transfer to new SAS.&lt;BR /&gt;
&lt;BR /&gt;
This is just a.recommendation&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Ksharp</description>
      <pubDate>Thu, 16 Dec 2010 01:43:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Unable-to-read-SAS-report-file/m-p/50326#M13731</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2010-12-16T01:43:55Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to read SAS report file</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Unable-to-read-SAS-report-file/m-p/50327#M13732</link>
      <description>Thanks for the input.. I created a temperory dataset with required columns only. Then used that dataset in my query. It worked fine without the error..</description>
      <pubDate>Thu, 16 Dec 2010 06:00:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Unable-to-read-SAS-report-file/m-p/50327#M13732</guid>
      <dc:creator>Rose</dc:creator>
      <dc:date>2010-12-16T06:00:02Z</dc:date>
    </item>
  </channel>
</rss>

