<?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: Errror:cli execute microsoft odbc excel driver spreadsheet is full in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Errror-cli-execute-microsoft-odbc-excel-driver-spreadsheet-is/m-p/537363#M147789</link>
    <description>&lt;P&gt;"&lt;SPAN&gt;Sorry I can't paste the log because it is in client server." - then how do you know what is going on?&amp;nbsp; Log is a fundamental things to see what is going on with the process.&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;"But now I&amp;nbsp;have &amp;nbsp;removed the duplicate records so I got&amp;nbsp;less than 1 million records" - why on earth are you pushing out millions of records to a spreadsheet?&amp;nbsp; That is truly madness.&amp;nbsp; No-one will ever look at a million records in Excel, nor will that format be useful for anyone.&amp;nbsp; If you are transferring data then use CSV, Json, XML, trusted platform independent&amp;nbsp;streamable&amp;nbsp;data sources.&amp;nbsp; Excel is really not the tool for this (whatever your process is).&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 21 Feb 2019 11:55:40 GMT</pubDate>
    <dc:creator>RW9</dc:creator>
    <dc:date>2019-02-21T11:55:40Z</dc:date>
    <item>
      <title>Errror:cli execute microsoft odbc excel driver spreadsheet is full</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Errror-cli-execute-microsoft-odbc-excel-driver-spreadsheet-is/m-p/537333#M147772</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have fetch the 1384026 records from the table and trying to export into .xlsx file.&lt;/P&gt;&lt;P&gt;Getting error:&lt;/P&gt;&lt;P&gt;Error: cli execute Microsoft odbc excel driver spreadsheet is full.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Code:&lt;/P&gt;&lt;P&gt;proc datasets lib=_ibxlsx;&lt;/P&gt;&lt;P&gt;delete data;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc append data=_ibxlsx.data base= abc;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PROC EXPORT DATA=&amp;nbsp;_ibxlsx.data&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; OUTFILE= 'C:\excel files\data.xls'&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DBMS=EXCEL REPLACE;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SHEET="data";&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I know the threshold of xlsx is 1048576.is it possible to increase the threshold value from sas to export.&lt;/P&gt;&lt;P&gt;can you please guide me??&lt;/P&gt;</description>
      <pubDate>Thu, 21 Feb 2019 07:56:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Errror-cli-execute-microsoft-odbc-excel-driver-spreadsheet-is/m-p/537333#M147772</guid>
      <dc:creator>rinsabraham</dc:creator>
      <dc:date>2019-02-21T07:56:42Z</dc:date>
    </item>
    <item>
      <title>Re: Errror:cli execute microsoft odbc excel driver spreadsheet is full</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Errror-cli-execute-microsoft-odbc-excel-driver-spreadsheet-is/m-p/537335#M147774</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/150856"&gt;@rinsabraham&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi Team,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have fetch the 1384026 records from the table and trying to export into .xlsx file.&lt;/P&gt;
&lt;P&gt;Getting error:&lt;/P&gt;
&lt;P&gt;Error: cli execute Microsoft odbc excel driver spreadsheet is full.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Code:&lt;/P&gt;
&lt;P&gt;proc datasets lib=_ibxlsx;&lt;/P&gt;
&lt;P&gt;delete data;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc append data=_ibxlsx.data base= abc;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PROC EXPORT DATA=&amp;nbsp;_ibxlsx.data&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; OUTFILE= 'C:\excel files\data.xls'&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DBMS=EXCEL REPLACE;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SHEET="data";&lt;BR /&gt;RUN;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I know the threshold of xlsx is 1048576.is it possible to increase the threshold value from sas to export.&lt;/P&gt;
&lt;P&gt;can you please guide me??&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Right now you are creating an xls-file, limited to 65k rows, change dbms and file-extensions to xlsx.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Feb 2019 07:59:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Errror-cli-execute-microsoft-odbc-excel-driver-spreadsheet-is/m-p/537335#M147774</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2019-02-21T07:59:40Z</dc:date>
    </item>
    <item>
      <title>Re: Errror:cli execute microsoft odbc excel driver spreadsheet is full</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Errror-cli-execute-microsoft-odbc-excel-driver-spreadsheet-is/m-p/537338#M147776</link>
      <description>&lt;P&gt;Thanks for the quick reply&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;let me try and get back to you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but one more doubt my colleguage&amp;nbsp;tried to copy that file to some other location getting the same error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;code:&lt;/P&gt;&lt;P&gt;proc datasets lib=_ibxlsx;&lt;/P&gt;&lt;P&gt;delete data;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc append data=_ibxlsx.data base= abc;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;data _null_;&lt;/P&gt;&lt;P&gt;src== 'C:\excel files\data.xls';&lt;/P&gt;&lt;P&gt;dest== 'C:\excel files\out\data.xls';&lt;/P&gt;&lt;P&gt;if (fileexist (src)) then do&lt;/P&gt;&lt;P&gt;call system ('copy' ||quote(src) ||' ' ||quote(des));&lt;/P&gt;&lt;P&gt;end;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;getting the same error&lt;/P&gt;</description>
      <pubDate>Thu, 21 Feb 2019 08:28:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Errror-cli-execute-microsoft-odbc-excel-driver-spreadsheet-is/m-p/537338#M147776</guid>
      <dc:creator>rinsabraham</dc:creator>
      <dc:date>2019-02-21T08:28:13Z</dc:date>
    </item>
    <item>
      <title>Re: Errror:cli execute microsoft odbc excel driver spreadsheet is full</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Errror-cli-execute-microsoft-odbc-excel-driver-spreadsheet-is/m-p/537348#M147782</link>
      <description>&lt;P&gt;I have changed the dbms&amp;nbsp; to xlsx and changed the file extension still getting the same error.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Feb 2019 09:22:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Errror-cli-execute-microsoft-odbc-excel-driver-spreadsheet-is/m-p/537348#M147782</guid>
      <dc:creator>rinsabraham</dc:creator>
      <dc:date>2019-02-21T09:22:26Z</dc:date>
    </item>
    <item>
      <title>Re: Errror:cli execute microsoft odbc excel driver spreadsheet is full</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Errror-cli-execute-microsoft-odbc-excel-driver-spreadsheet-is/m-p/537356#M147786</link>
      <description>&lt;P&gt;Please post your code and log, all we can see above is that you are exporting to XLS which is an ancient binary file format.&amp;nbsp; What operating system are you running on, how are you exporting the data etc.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Feb 2019 09:50:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Errror-cli-execute-microsoft-odbc-excel-driver-spreadsheet-is/m-p/537356#M147786</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2019-02-21T09:50:37Z</dc:date>
    </item>
    <item>
      <title>Re: Errror:cli execute microsoft odbc excel driver spreadsheet is full</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Errror-cli-execute-microsoft-odbc-excel-driver-spreadsheet-is/m-p/537361#M147788</link>
      <description>&lt;P&gt;Sorry I can't paste the log because it is in client server.&lt;/P&gt;&lt;P&gt;operating system: windows 7&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But now I&amp;nbsp;have &amp;nbsp;removed the duplicate records so I got&amp;nbsp;less than 1 million records so&amp;nbsp;I can &amp;nbsp;exported the data now. previously I didn't remove the duplicate records due to which data has came up more than 1 million.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks you for reply..&lt;/P&gt;</description>
      <pubDate>Thu, 21 Feb 2019 11:17:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Errror-cli-execute-microsoft-odbc-excel-driver-spreadsheet-is/m-p/537361#M147788</guid>
      <dc:creator>rinsabraham</dc:creator>
      <dc:date>2019-02-21T11:17:55Z</dc:date>
    </item>
    <item>
      <title>Re: Errror:cli execute microsoft odbc excel driver spreadsheet is full</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Errror-cli-execute-microsoft-odbc-excel-driver-spreadsheet-is/m-p/537363#M147789</link>
      <description>&lt;P&gt;"&lt;SPAN&gt;Sorry I can't paste the log because it is in client server." - then how do you know what is going on?&amp;nbsp; Log is a fundamental things to see what is going on with the process.&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;"But now I&amp;nbsp;have &amp;nbsp;removed the duplicate records so I got&amp;nbsp;less than 1 million records" - why on earth are you pushing out millions of records to a spreadsheet?&amp;nbsp; That is truly madness.&amp;nbsp; No-one will ever look at a million records in Excel, nor will that format be useful for anyone.&amp;nbsp; If you are transferring data then use CSV, Json, XML, trusted platform independent&amp;nbsp;streamable&amp;nbsp;data sources.&amp;nbsp; Excel is really not the tool for this (whatever your process is).&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Feb 2019 11:55:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Errror-cli-execute-microsoft-odbc-excel-driver-spreadsheet-is/m-p/537363#M147789</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2019-02-21T11:55:40Z</dc:date>
    </item>
    <item>
      <title>Re: Errror:cli execute microsoft odbc excel driver spreadsheet is full</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Errror-cli-execute-microsoft-odbc-excel-driver-spreadsheet-is/m-p/537384#M147796</link>
      <description>&lt;P&gt;ok&lt;/P&gt;</description>
      <pubDate>Thu, 21 Feb 2019 13:26:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Errror-cli-execute-microsoft-odbc-excel-driver-spreadsheet-is/m-p/537384#M147796</guid>
      <dc:creator>rinsabraham</dc:creator>
      <dc:date>2019-02-21T13:26:14Z</dc:date>
    </item>
  </channel>
</rss>

