<?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 Efficient way to Update/Insert MS Access 2007 Database using SAS in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Efficient-way-to-Update-Insert-MS-Access-2007-Database-using-SAS/m-p/360331#M84815</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to know the efficient way to update Access 2007 table using sas. Currently I am trying to delete entire records based on a Key field and re-insert the data.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a alternate way to update data if there exists a key, otherwise insert to the table. I found below thread for SQL server, want to see how this can be implemented in Access.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Procedures/Efficiently-updating-Sql-server-Table-using-SAS-Dataset/m-p/360255#M64416" target="_blank"&gt;https://communities.sas.com/t5/SAS-Procedures/Efficiently-updating-Sql-server-Table-using-SAS-Dataset/m-p/360255#M64416&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;</description>
    <pubDate>Sun, 21 May 2017 21:51:23 GMT</pubDate>
    <dc:creator>sasuser77</dc:creator>
    <dc:date>2017-05-21T21:51:23Z</dc:date>
    <item>
      <title>Efficient way to Update/Insert MS Access 2007 Database using SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Efficient-way-to-Update-Insert-MS-Access-2007-Database-using-SAS/m-p/360331#M84815</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to know the efficient way to update Access 2007 table using sas. Currently I am trying to delete entire records based on a Key field and re-insert the data.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a alternate way to update data if there exists a key, otherwise insert to the table. I found below thread for SQL server, want to see how this can be implemented in Access.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Procedures/Efficiently-updating-Sql-server-Table-using-SAS-Dataset/m-p/360255#M64416" target="_blank"&gt;https://communities.sas.com/t5/SAS-Procedures/Efficiently-updating-Sql-server-Table-using-SAS-Dataset/m-p/360255#M64416&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;</description>
      <pubDate>Sun, 21 May 2017 21:51:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Efficient-way-to-Update-Insert-MS-Access-2007-Database-using-SAS/m-p/360331#M84815</guid>
      <dc:creator>sasuser77</dc:creator>
      <dc:date>2017-05-21T21:51:23Z</dc:date>
    </item>
    <item>
      <title>Re: Efficient way to Update/Insert MS Access 2007 Database using SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Efficient-way-to-Update-Insert-MS-Access-2007-Database-using-SAS/m-p/360335#M84818</link>
      <description>&lt;P&gt;The difference here is that the is SQL Pass Through - the query is passed to the DB so it ends up using the DB SQL, not SAS SQL. Also, the work happens on the server directly which is faster.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You don't have the flexibility with Access since it's also local so you won't see the same type of improvements.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you're connecting to the Access table, have you tried using an UPDATE or MODIFY statement instead?&lt;/P&gt;</description>
      <pubDate>Sun, 21 May 2017 22:00:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Efficient-way-to-Update-Insert-MS-Access-2007-Database-using-SAS/m-p/360335#M84818</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-05-21T22:00:20Z</dc:date>
    </item>
    <item>
      <title>Re: Efficient way to Update/Insert MS Access 2007 Database using SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Efficient-way-to-Update-Insert-MS-Access-2007-Database-using-SAS/m-p/360361#M84831</link>
      <description>Do you have any performance issues?&lt;BR /&gt;Step 1 is to understand how to tune the Access update, and that part is probably best answered elsewhere. Then investigate how that soon to know method is accomplished by using SAS.</description>
      <pubDate>Mon, 22 May 2017 04:38:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Efficient-way-to-Update-Insert-MS-Access-2007-Database-using-SAS/m-p/360361#M84831</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2017-05-22T04:38:00Z</dc:date>
    </item>
    <item>
      <title>Re: Efficient way to Update/Insert MS Access 2007 Database using SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Efficient-way-to-Update-Insert-MS-Access-2007-Database-using-SAS/m-p/360404#M84852</link>
      <description>&lt;P&gt;Since Access is just a DB-lookalike for office purposes, I'd load the Access table into SAS, do the update there, and recreate the Access file.&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2017 11:20:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Efficient-way-to-Update-Insert-MS-Access-2007-Database-using-SAS/m-p/360404#M84852</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-05-22T11:20:56Z</dc:date>
    </item>
  </channel>
</rss>

