<?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: How do I import data from Excel into SQL Anywhere? in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/how-do-i-import-data-from-excel-into-sql-anywhere/qaa-p/13831364#M4862207</link>
    <description>&lt;P&gt;You can use CREATE SERVER and CREATE EXISTING TABLE inside SQL Anywhere to use the "proxy table" feature to "pull" data from Excel via SELECT, and insert into a real table via &lt;/P&gt;

&lt;PRE&gt;   INSERT real-table SELECT * FROM excel-proxy-table;
&lt;/PRE&gt;

&lt;P&gt;This feature has the official name "remote data access" in the Help: &lt;/P&gt;

&lt;P&gt;&lt;A href="http://dcx.sybase.com/index.html#1200en/dbusage/ug-accessrd.html" rel="nofollow"&gt;http://dcx.sybase.com/index.html#1200en/dbusage/ug-accessrd.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Some information about Excel...&lt;/P&gt;

&lt;P&gt;&lt;A href="http://dcx.sybase.com/index.html#1200en/dbusage/excel-odbc-omni-server.html" rel="nofollow"&gt;http://dcx.sybase.com/index.html#1200en/dbusage/excel-odbc-omni-server.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Some sample code...&lt;/P&gt;

&lt;P&gt;&lt;A href="http://sqlanywhere.blogspot.com/2008/12/select-from-excel-spreadsheets.html" rel="nofollow"&gt;http://sqlanywhere.blogspot.com/2008/12/select-from-excel-spreadsheets.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;The following discussion of a problem with Excel also contains an end-to-end example:&lt;/P&gt;

&lt;P&gt;&lt;A href="http://sqlanywhere-forum.sap.com/questions/515/how-do-i-fix-the-ability-to-edit-data-in-a-linked-excel-spreadsheet-has-been-dis/518#518" rel="nofollow"&gt;http://sqlanywhere-forum.sap.com/questions/515/how-do-i-fix-the-ability-to-edit-data-in-a-linked-excel-spreadsheet-has-been-dis/518#518&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 08 Nov 2010 12:33:14 GMT</pubDate>
    <dc:creator>Breck_Carter</dc:creator>
    <dc:date>2010-11-08T12:33:14Z</dc:date>
    <item>
      <title>How do I import data from Excel into SQL Anywhere?</title>
      <link>https://community.sap.com/t5/technology-q-a/how-do-i-import-data-from-excel-into-sql-anywhere/qaq-p/13831363</link>
      <description>&lt;P&gt;From: Count Tatte&lt;/P&gt;

&lt;P&gt;Newsgroups: sybase.public.sqlanywhere.general&lt;/P&gt;

&lt;P&gt;Subject: Copying Excel into database&lt;/P&gt;

&lt;P&gt;Date: 8 Nov 2010 02:17:27 -0800&lt;/P&gt;

&lt;P&gt;Hi&lt;/P&gt;

&lt;P&gt;I have some excel sheets i'm going to copy into a sybase
database.&lt;/P&gt;

&lt;P&gt;I thought of using visual basic code written inside the
excel  (Send the sheet data via ADODB connection).&lt;/P&gt;

&lt;P&gt;Which approach do you suggest i use, is there some
ready-made solution?&lt;/P&gt;

&lt;P&gt;I heard there is a sqlbulkcopy command that works with MS
SQL SERVER. But i guess this doesn't work with Sybase.&lt;/P&gt;

&lt;P&gt;Can you give me a hint what is the best solution for a work
like this?&lt;/P&gt;</description>
      <pubDate>Mon, 08 Nov 2010 12:31:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-do-i-import-data-from-excel-into-sql-anywhere/qaq-p/13831363</guid>
      <dc:creator>Breck_Carter</dc:creator>
      <dc:date>2010-11-08T12:31:37Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import data from Excel into SQL Anywhere?</title>
      <link>https://community.sap.com/t5/technology-q-a/how-do-i-import-data-from-excel-into-sql-anywhere/qaa-p/13831364#M4862207</link>
      <description>&lt;P&gt;You can use CREATE SERVER and CREATE EXISTING TABLE inside SQL Anywhere to use the "proxy table" feature to "pull" data from Excel via SELECT, and insert into a real table via &lt;/P&gt;

&lt;PRE&gt;   INSERT real-table SELECT * FROM excel-proxy-table;
&lt;/PRE&gt;

&lt;P&gt;This feature has the official name "remote data access" in the Help: &lt;/P&gt;

&lt;P&gt;&lt;A href="http://dcx.sybase.com/index.html#1200en/dbusage/ug-accessrd.html" rel="nofollow"&gt;http://dcx.sybase.com/index.html#1200en/dbusage/ug-accessrd.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Some information about Excel...&lt;/P&gt;

&lt;P&gt;&lt;A href="http://dcx.sybase.com/index.html#1200en/dbusage/excel-odbc-omni-server.html" rel="nofollow"&gt;http://dcx.sybase.com/index.html#1200en/dbusage/excel-odbc-omni-server.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Some sample code...&lt;/P&gt;

&lt;P&gt;&lt;A href="http://sqlanywhere.blogspot.com/2008/12/select-from-excel-spreadsheets.html" rel="nofollow"&gt;http://sqlanywhere.blogspot.com/2008/12/select-from-excel-spreadsheets.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;The following discussion of a problem with Excel also contains an end-to-end example:&lt;/P&gt;

&lt;P&gt;&lt;A href="http://sqlanywhere-forum.sap.com/questions/515/how-do-i-fix-the-ability-to-edit-data-in-a-linked-excel-spreadsheet-has-been-dis/518#518" rel="nofollow"&gt;http://sqlanywhere-forum.sap.com/questions/515/how-do-i-fix-the-ability-to-edit-data-in-a-linked-excel-spreadsheet-has-been-dis/518#518&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Nov 2010 12:33:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-do-i-import-data-from-excel-into-sql-anywhere/qaa-p/13831364#M4862207</guid>
      <dc:creator>Breck_Carter</dc:creator>
      <dc:date>2010-11-08T12:33:14Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import data from Excel into SQL Anywhere?</title>
      <link>https://community.sap.com/t5/technology-q-a/how-do-i-import-data-from-excel-into-sql-anywhere/qaa-p/13831365#M4862208</link>
      <description>&lt;P&gt;I wasn't sure about posting this Q&amp;amp;A because it was so "derivative", but I did so because it was an opportunity to enter a straightforward "How do I..." question on this subject (which keeps coming up). And judging from the votes it looks like it's a hit :)... so OTHER FOLKS are welcome to do the same: If you have searched and searched and answered your own "How do I..." question, PLEASE POST THE RESULTS HERE! Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 08 Nov 2010 20:03:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-do-i-import-data-from-excel-into-sql-anywhere/qaa-p/13831365#M4862208</guid>
      <dc:creator>Breck_Carter</dc:creator>
      <dc:date>2010-11-08T20:03:22Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import data from Excel into SQL Anywhere?</title>
      <link>https://community.sap.com/t5/technology-q-a/how-do-i-import-data-from-excel-into-sql-anywhere/qaa-p/13831366#M4862209</link>
      <description>&lt;P&gt;I fully second that invitation to publish one's self-learning efforts. (And that makes &lt;EM&gt;so much more fun in SQLA&lt;/EM&gt; than in the newsgroups, as you get valueable feedback through upvotes and comments and therefore get to know if others could share your insight...)&lt;/P&gt;</description>
      <pubDate>Tue, 09 Nov 2010 15:41:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-do-i-import-data-from-excel-into-sql-anywhere/qaa-p/13831366#M4862209</guid>
      <dc:creator>VolkerBarth</dc:creator>
      <dc:date>2010-11-09T15:41:15Z</dc:date>
    </item>
  </channel>
</rss>

