<?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: How do I do conditional deletions in an Access 2013 table from SAS? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-conditional-deletions-in-an-Access-2013-table-from/m-p/369072#M275543</link>
    <description>&lt;P&gt;&amp;lt;irony&amp;gt;&lt;/P&gt;
&lt;P&gt;Keep in mind that your backend here is a Microsoft product, which means that it is some kind of sophisticated random generator for outcomes.&lt;/P&gt;
&lt;P&gt;And it only works perfectly in odd leapyears.&lt;/P&gt;
&lt;P&gt;&amp;lt;/irony&amp;gt;&lt;/P&gt;</description>
    <pubDate>Wed, 21 Jun 2017 09:21:27 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2017-06-21T09:21:27Z</dc:date>
    <item>
      <title>How do I do conditional deletions in an Access 2013 table from SAS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-conditional-deletions-in-an-Access-2013-table-from/m-p/369035#M275533</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've had a simple and strange problem for a while. I cannot do conditional deletions from tables stored in Access 2013 Databases. Even though several rows fulfills the condition only exact two(!) rows become deleted when running following code (both in EG and Base).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;libname access 'H:MyDataBase.accdb';

proc sql;
	delete from access.Earnings
	where AnalysisQuarter = '2016Q4';
quit;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can I change the code in some way to actually delete all rows fullfilling the WHERE condition?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Right now I solve this in an unsatisfactory way by deleting the whole table using DROP statement which works fine, and then add back the rows that I did not wanted to delete in the first place.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Grateful for help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gustav&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2017 07:38:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-conditional-deletions-in-an-Access-2013-table-from/m-p/369035#M275533</guid>
      <dc:creator>GustavT</dc:creator>
      <dc:date>2017-06-21T07:38:21Z</dc:date>
    </item>
    <item>
      <title>Re: How do I do conditional deletions in an Access 2013 table from SAS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-conditional-deletions-in-an-Access-2013-table-from/m-p/369038#M275534</link>
      <description>&lt;P&gt;Well, your libname statement is incorrect to start with, missing a \ after h:. &amp;nbsp;As for access I really wouldn't use it for anything serious. &amp;nbsp;Your SQL seems syntactically correct, so I would have to, without any further information assume that the data does not match your where clause. &amp;nbsp;Is&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;AnalysisQuarter &lt;/PRE&gt;
&lt;P&gt;A numeric or text field? &amp;nbsp;Text fields coud have extra spaces in or hidden characters, numerics may not be exactly the same, for instance:&lt;/P&gt;
&lt;PRE&gt;date="01JAN2017"d;
format date yymm6.;

!=

date="10JAN2017"d;
format date yymm6.;&lt;/PRE&gt;
&lt;P&gt;Looking at the formatted date, both would show the same, but the underlying data is actually different.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2017 07:57:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-conditional-deletions-in-an-Access-2013-table-from/m-p/369038#M275534</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-06-21T07:57:21Z</dc:date>
    </item>
    <item>
      <title>Re: How do I do conditional deletions in an Access 2013 table from SAS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-conditional-deletions-in-an-Access-2013-table-from/m-p/369044#M275535</link>
      <description>&lt;P&gt;Maxim 3 (Know your data).&lt;/P&gt;
&lt;P&gt;Do a proc contents on access.earnings, and run a proc freq on AnalysisQuarter in access.earnings.&lt;/P&gt;
&lt;P&gt;If in doubt, post the output from those procedures here.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2017 08:09:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-conditional-deletions-in-an-Access-2013-table-from/m-p/369044#M275535</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-06-21T08:09:53Z</dc:date>
    </item>
    <item>
      <title>Re: How do I do conditional deletions in an Access 2013 table from SAS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-conditional-deletions-in-an-Access-2013-table-from/m-p/369051#M275536</link>
      <description>&lt;P&gt;Thanks for response,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry, you're right. Before I posted the code I removed the (long) path and happened to delete one character too much.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It is a text field, and what I know no spaces or hidden characters. Regardless of table and attribute it is allways exact two rows that become deleted.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2017 08:26:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-conditional-deletions-in-an-Access-2013-table-from/m-p/369051#M275536</guid>
      <dc:creator>GustavT</dc:creator>
      <dc:date>2017-06-21T08:26:24Z</dc:date>
    </item>
    <item>
      <title>Re: How do I do conditional deletions in an Access 2013 table from SAS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-conditional-deletions-in-an-Access-2013-table-from/m-p/369052#M275537</link>
      <description>&lt;P&gt;Thanks for response,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately I do still have doubts, please see output. Do you have any idea of what is wrong?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;proc contents data=access.Earnings position; run;
proc freq data=access.Earnings; tables AnalysisQuarter; run;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;TABLE cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Data Set Name&lt;/TD&gt;&lt;TD&gt;ACCESS.Earnings&lt;/TD&gt;&lt;TD&gt;Observations&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Member Type&lt;/TD&gt;&lt;TD&gt;DATA&lt;/TD&gt;&lt;TD&gt;Variables&lt;/TD&gt;&lt;TD&gt;7&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Engine&lt;/TD&gt;&lt;TD&gt;ACCESS&lt;/TD&gt;&lt;TD&gt;Indexes&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Created&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;TD&gt;Observation Length&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Last Modified&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;TD&gt;Deleted Observations&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Protection&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;Compressed&lt;/TD&gt;&lt;TD&gt;NO&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Data Set Type&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;Sorted&lt;/TD&gt;&lt;TD&gt;NO&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Label&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Data Representation&lt;/TD&gt;&lt;TD&gt;Default&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Encoding&lt;/TD&gt;&lt;TD&gt;Default&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;Alphabetic List of Variables and Attributes # Variable Type Len Format Informat Label &lt;TABLE cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;AnalysisQuarter&lt;/TD&gt;&lt;TD&gt;Char&lt;/TD&gt;&lt;TD&gt;255&lt;/TD&gt;&lt;TD&gt;$255.&lt;/TD&gt;&lt;TD&gt;$255.&lt;/TD&gt;&lt;TD&gt;AnalysisQuarter&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;Country&lt;/TD&gt;&lt;TD&gt;Char&lt;/TD&gt;&lt;TD&gt;255&lt;/TD&gt;&lt;TD&gt;$255.&lt;/TD&gt;&lt;TD&gt;$255.&lt;/TD&gt;&lt;TD&gt;Country&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;Earning_Year&lt;/TD&gt;&lt;TD&gt;Num&lt;/TD&gt;&lt;TD&gt;8&lt;/TD&gt;&lt;TD&gt;11.&lt;/TD&gt;&lt;TD&gt;11.&lt;/TD&gt;&lt;TD&gt;Earning_Year&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;HRG&lt;/TD&gt;&lt;TD&gt;Char&lt;/TD&gt;&lt;TD&gt;255&lt;/TD&gt;&lt;TD&gt;$255.&lt;/TD&gt;&lt;TD&gt;$255.&lt;/TD&gt;&lt;TD&gt;HRG&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;ResQTree&lt;/TD&gt;&lt;TD&gt;Char&lt;/TD&gt;&lt;TD&gt;255&lt;/TD&gt;&lt;TD&gt;$255.&lt;/TD&gt;&lt;TD&gt;$255.&lt;/TD&gt;&lt;TD&gt;ResQTree&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;7&lt;/TD&gt;&lt;TD&gt;Time&lt;/TD&gt;&lt;TD&gt;Num&lt;/TD&gt;&lt;TD&gt;8&lt;/TD&gt;&lt;TD&gt;DATETIME19.&lt;/TD&gt;&lt;TD&gt;DATETIME19.&lt;/TD&gt;&lt;TD&gt;Time&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;Value&lt;/TD&gt;&lt;TD&gt;Num&lt;/TD&gt;&lt;TD&gt;8&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;Value&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;AnalysisQuarter AnalysisQuarter Frequency Percent Cumulative&lt;BR /&gt;Frequency Cumulative&lt;BR /&gt;Percent &lt;TABLE cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;2015Q4&lt;/TD&gt;&lt;TD&gt;20&lt;/TD&gt;&lt;TD&gt;66.67&lt;/TD&gt;&lt;TD&gt;20&lt;/TD&gt;&lt;TD&gt;66.67&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2016Q4&lt;/TD&gt;&lt;TD&gt;10&lt;/TD&gt;&lt;TD&gt;33.33&lt;/TD&gt;&lt;TD&gt;30&lt;/TD&gt;&lt;TD&gt;100.00&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gustav&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2017 08:34:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-conditional-deletions-in-an-Access-2013-table-from/m-p/369052#M275537</guid>
      <dc:creator>GustavT</dc:creator>
      <dc:date>2017-06-21T08:34:53Z</dc:date>
    </item>
    <item>
      <title>Re: How do I do conditional deletions in an Access 2013 table from SAS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-conditional-deletions-in-an-Access-2013-table-from/m-p/369056#M275538</link>
      <description>&lt;P&gt;Hi again,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The strange thing is that if I run the code again, two more rows become deleted... So, the data do match the WHERE clause I beleive.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gustav&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2017 08:47:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-conditional-deletions-in-an-Access-2013-table-from/m-p/369056#M275538</guid>
      <dc:creator>GustavT</dc:creator>
      <dc:date>2017-06-21T08:47:05Z</dc:date>
    </item>
    <item>
      <title>Re: How do I do conditional deletions in an Access 2013 table from SAS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-conditional-deletions-in-an-Access-2013-table-from/m-p/369057#M275539</link>
      <description>&lt;P&gt;Interesting.&lt;/P&gt;
&lt;P&gt;What do you get when you do a simple&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
select * from access.Earnings where AnalysisQuarter = '2016Q4';
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I somehow suspect that SAS hands part of the SQL off to access (implicit pass-through) and the delete's are botched on the way.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So my immediate workaround would be to pull the table into SAS, manipulate it there and copy it back into the Access DB.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2017 08:47:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-conditional-deletions-in-an-Access-2013-table-from/m-p/369057#M275539</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-06-21T08:47:30Z</dc:date>
    </item>
    <item>
      <title>Re: How do I do conditional deletions in an Access 2013 table from SAS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-conditional-deletions-in-an-Access-2013-table-from/m-p/369058#M275540</link>
      <description>&lt;P&gt;Mmm, well, lets sort out the syntax first:&lt;/P&gt;
&lt;PRE&gt;libname temp access 'H:\MyDataBase.accdb' dbcommit=1000;

proc sql;&lt;BR /&gt;  delete from temp.Earnings
  where strip(AnalysisQuarter)='2016Q4';
quit;&lt;/PRE&gt;
&lt;P&gt;All I can think of is the dbcommit option I show above, but why that would be set to 2 I don't know, docs:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/documentation/cdl/en/acpcref/69731/HTML/default/viewer.htm#p1gbem6un8cr3jn10ppxkt0imtdu.htm" target="_blank"&gt;https://support.sas.com/documentation/cdl/en/acpcref/69731/HTML/default/viewer.htm#p1gbem6un8cr3jn10ppxkt0imtdu.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Maybe try some of the other options if not.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2017 08:48:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-conditional-deletions-in-an-Access-2013-table-from/m-p/369058#M275540</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-06-21T08:48:31Z</dc:date>
    </item>
    <item>
      <title>Re: How do I do conditional deletions in an Access 2013 table from SAS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-conditional-deletions-in-an-Access-2013-table-from/m-p/369064#M275541</link>
      <description>&lt;P&gt;Hi again,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I run the code you posted I get all ten rows that fulfill AnalysisQuarter = '2016Q4'. So no hidden spaces or other characters I beleive.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes, that is another solution. As a mentioned I already have a walkaround. The problem with both your and mine workaround is that Access will treat it as a "new table" and possible grouping of tables within Access get lost, which is a bit annoying.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As a I mentioned when I answered&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/45151"&gt;@RW9&lt;/a&gt;&amp;nbsp;two more rows become deleted when I run the code one more time. Strange...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gustav&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2017 08:57:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-conditional-deletions-in-an-Access-2013-table-from/m-p/369064#M275541</guid>
      <dc:creator>GustavT</dc:creator>
      <dc:date>2017-06-21T08:57:32Z</dc:date>
    </item>
    <item>
      <title>Re: How do I do conditional deletions in an Access 2013 table from SAS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-conditional-deletions-in-an-Access-2013-table-from/m-p/369069#M275542</link>
      <description>&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When using dbcommit I cannot do any deletions, but I tried with&lt;/P&gt;&lt;PRE&gt;proc sql;
	delete from access.Earnings
	where strip(AnalysisQuarter) = '2016Q4';
quit;&lt;/PRE&gt;&lt;P&gt;without dbcommit and it worked!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, problem solved but I am still confused. The fact that the code above works means that all '2016Q4' rows are not equal to '2016Q4'. But as I said, I succeed to delete all rows with the initial code when running it five times (5*2=10)...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any ideas why?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Gustav&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2017 09:14:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-conditional-deletions-in-an-Access-2013-table-from/m-p/369069#M275542</guid>
      <dc:creator>GustavT</dc:creator>
      <dc:date>2017-06-21T09:14:04Z</dc:date>
    </item>
    <item>
      <title>Re: How do I do conditional deletions in an Access 2013 table from SAS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-conditional-deletions-in-an-Access-2013-table-from/m-p/369072#M275543</link>
      <description>&lt;P&gt;&amp;lt;irony&amp;gt;&lt;/P&gt;
&lt;P&gt;Keep in mind that your backend here is a Microsoft product, which means that it is some kind of sophisticated random generator for outcomes.&lt;/P&gt;
&lt;P&gt;And it only works perfectly in odd leapyears.&lt;/P&gt;
&lt;P&gt;&amp;lt;/irony&amp;gt;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2017 09:21:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-conditional-deletions-in-an-Access-2013-table-from/m-p/369072#M275543</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-06-21T09:21:27Z</dc:date>
    </item>
    <item>
      <title>Re: How do I do conditional deletions in an Access 2013 table from SAS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-conditional-deletions-in-an-Access-2013-table-from/m-p/369074#M275544</link>
      <description>&lt;P&gt;Sorry, without some in depth analysis of the file and the SQL generated behind the scenes I couldn't say. &amp;nbsp;I do however agree with&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&amp;nbsp;in that MS products are really bad from a programmer/data perspective. &amp;nbsp;Sure they are easy learning curve in, and great for entering data, but for any real task use a real application. &amp;nbsp;SQLite for embedded, MySQL or one of the free ones, or in a commercial venture get a paid DB like Oracle.&lt;/P&gt;
&lt;P&gt;You could pop a ticket into support if you really want to find out, just add the file, show the code and issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One other thing, does the code run directly in Access ok? &amp;nbsp;If so we know its the passthrough conversion.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2017 09:30:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-conditional-deletions-in-an-Access-2013-table-from/m-p/369074#M275544</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-06-21T09:30:23Z</dc:date>
    </item>
    <item>
      <title>Re: How do I do conditional deletions in an Access 2013 table from SAS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-conditional-deletions-in-an-Access-2013-table-from/m-p/369090#M275545</link>
      <description>&lt;P&gt;Thank you both,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/45151"&gt;@RW9&lt;/a&gt;&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;. And thanks for sharing your software&amp;nbsp;thoughts.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Gustav&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2017 10:46:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-conditional-deletions-in-an-Access-2013-table-from/m-p/369090#M275545</guid>
      <dc:creator>GustavT</dc:creator>
      <dc:date>2017-06-21T10:46:36Z</dc:date>
    </item>
  </channel>
</rss>

