<?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>Question Re: Exporting data to Excel in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/exporting-data-to-excel/qaa-p/13825575#M4856418</link>
    <description>&lt;P&gt;-- Is that a new feature? &lt;/P&gt;
&lt;P&gt;Yes it is. In fact there are a &lt;A href="http://dcx.sap.com/index.html#sqla170/en/html/81587f616ce210148f6896f5f23b9148.html"&gt;few enhancments&lt;/A&gt; around it.&lt;/P&gt;
&lt;P&gt;-- If v17 has something new there, I would like to give that a try...&lt;/P&gt;
&lt;P&gt;Go ahead and see what you think.  &lt;/P&gt;
&lt;P&gt;While at it's most basic functionality it is a syntactical enhancement to DBISQL's FORMAT options for &lt;A href="http://dcx.sap.com/index.html#sqla170/en/html/8189b7616ce2101481aed74bbeb877f9.html"&gt;INPUT&lt;/A&gt; and &lt;A href="http://dcx.sap.com/index.html#sqla170/en/html/81721a6c6ce210148c6dd000d8e420e3.html"&gt;OUTPUT&lt;/A&gt; statements (with reintroducing the EXCEL format option) but also with an understanding of worksheets.  And those are also reflected in the IMPORT/EXPORT wizard as well.&lt;/P&gt;</description>
    <pubDate>Thu, 03 Mar 2016 08:59:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2016-03-03T08:59:04Z</dc:date>
    <item>
      <title>Exporting data to Excel</title>
      <link>https://community.sap.com/t5/technology-q-a/exporting-data-to-excel/qaq-p/13825572</link>
      <description>&lt;P&gt;Do I need to install MS Office Excel on machine where is SQL Anywhere 12 server for below code to work?&lt;/P&gt;
&lt;P&gt;Or SA 12 or Windows have MS Excel Driver builtin?&lt;/P&gt;
&lt;LI-CODE lang="sql"&gt;SELECT * FROM SalesOrders;
OUTPUT USING 'Driver=Microsoft Excel Driver (*.xls);
DBQ=c:\\\\test\\\\sales.xls;
READONLY=0' INTO "newSalesData";&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 02 Mar 2016 14:21:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/exporting-data-to-excel/qaq-p/13825572</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-03-02T14:21:06Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting data to Excel</title>
      <link>https://community.sap.com/t5/technology-q-a/exporting-data-to-excel/qaa-p/13825573#M4856416</link>
      <description>&lt;P&gt;Yes you do.  You will need the ODBC driver for Excell to make that work.  SQL Anywhere does not install that driver for you.  &lt;/P&gt;
&lt;P&gt;You may have a Excel ODBC driver available without having Excel itself being installed but that would only happen if it was installed as part of some other software.  &lt;/P&gt;
&lt;P&gt;As an alternative approach, version 17 of dbisql supports direct output to the &lt;A href="http://dcx.sap.com/index.html#sqla170/en/html/81721a6c6ce210148c6dd000d8e420e3.html"&gt;format Excel&lt;/A&gt;; which also requires the driver.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Mar 2016 16:33:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/exporting-data-to-excel/qaa-p/13825573#M4856416</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-03-02T16:33:28Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting data to Excel</title>
      <link>https://community.sap.com/t5/technology-q-a/exporting-data-to-excel/qaa-p/13825574#M4856417</link>
      <description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;As an alternative approach, version 17 of dbisql supports direct output to the format Excel; which also requires the driver.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Is that a new feature? - I have not noticed that in the "What's new" section and thought it is the old "Excel 2.1(?)"-compatible format which was somewhat restricted - see &lt;A href="http://sqlanywhere-forum.sap.com/questions/709"&gt;that older discussion&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;If v17 has something new there, I would like to give that a try...&lt;/P&gt;</description>
      <pubDate>Thu, 03 Mar 2016 04:02:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/exporting-data-to-excel/qaa-p/13825574#M4856417</guid>
      <dc:creator>VolkerBarth</dc:creator>
      <dc:date>2016-03-03T04:02:31Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting data to Excel</title>
      <link>https://community.sap.com/t5/technology-q-a/exporting-data-to-excel/qaa-p/13825575#M4856418</link>
      <description>&lt;P&gt;-- Is that a new feature? &lt;/P&gt;
&lt;P&gt;Yes it is. In fact there are a &lt;A href="http://dcx.sap.com/index.html#sqla170/en/html/81587f616ce210148f6896f5f23b9148.html"&gt;few enhancments&lt;/A&gt; around it.&lt;/P&gt;
&lt;P&gt;-- If v17 has something new there, I would like to give that a try...&lt;/P&gt;
&lt;P&gt;Go ahead and see what you think.  &lt;/P&gt;
&lt;P&gt;While at it's most basic functionality it is a syntactical enhancement to DBISQL's FORMAT options for &lt;A href="http://dcx.sap.com/index.html#sqla170/en/html/8189b7616ce2101481aed74bbeb877f9.html"&gt;INPUT&lt;/A&gt; and &lt;A href="http://dcx.sap.com/index.html#sqla170/en/html/81721a6c6ce210148c6dd000d8e420e3.html"&gt;OUTPUT&lt;/A&gt; statements (with reintroducing the EXCEL format option) but also with an understanding of worksheets.  And those are also reflected in the IMPORT/EXPORT wizard as well.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Mar 2016 08:59:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/exporting-data-to-excel/qaa-p/13825575#M4856418</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-03-03T08:59:04Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting data to Excel</title>
      <link>https://community.sap.com/t5/technology-q-a/exporting-data-to-excel/qaa-p/13825576#M4856419</link>
      <description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;Yes it is. In fact there are a few enhancments around it.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Ah, thanks for the pointer... - I still find it more difficult to fully read through the v17 "What's New" sections than to those of older versions, so that's why I have learnt to state &lt;EM&gt;"I have not noticed that in ..."&lt;/EM&gt; instead of a stronger &lt;EM&gt;"It's not mentioned in..."&lt;/EM&gt; claim. Humility is a virtue, of course, and if v17 helps me to improve in that respect, it's welcome:)&lt;/P&gt;</description>
      <pubDate>Thu, 03 Mar 2016 09:09:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/exporting-data-to-excel/qaa-p/13825576#M4856419</guid>
      <dc:creator>VolkerBarth</dc:creator>
      <dc:date>2016-03-03T09:09:59Z</dc:date>
    </item>
  </channel>
</rss>

