<?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: SQL Server Connectivity in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/SQL-Server-Connectivity/m-p/365935#M86972</link>
    <description>&lt;P&gt;yes, I tried that too. &amp;nbsp;It didn't work.&lt;/P&gt;</description>
    <pubDate>Sat, 10 Jun 2017 21:38:55 GMT</pubDate>
    <dc:creator>sas_td2016</dc:creator>
    <dc:date>2017-06-10T21:38:55Z</dc:date>
    <item>
      <title>SQL Server Connectivity</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SQL-Server-Connectivity/m-p/364035#M86281</link>
      <description>&lt;P&gt;Hello Friends&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have an issue with date format. &amp;nbsp;Can you please help me with this query?&lt;/P&gt;&lt;P&gt;proc sql;&lt;BR /&gt;insert into sql.mortage&lt;BR /&gt;(loan_number, due_date, investor_numer, bankruptcy_flag, ltv)&lt;BR /&gt;values&lt;BR /&gt;(1000001,'01jan2016'd,200001,'N',0.8)&lt;BR /&gt;;&lt;BR /&gt;quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Outpout on Sql Server:&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/9221iCCAC7AF795A4965F/image-size/original?v=1.0&amp;amp;px=-1" border="0" alt="Capture.JPG" title="Capture.JPG" /&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 03 Jun 2017 19:28:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SQL-Server-Connectivity/m-p/364035#M86281</guid>
      <dc:creator>sas_td2016</dc:creator>
      <dc:date>2017-06-03T19:28:46Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Server Connectivity</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SQL-Server-Connectivity/m-p/364037#M86283</link>
      <description>&lt;P&gt;You're trying to insert a date into a dateTIME field.&lt;/P&gt;
&lt;P&gt;I suggest using DHMS to convert to a datetime and insert this instead.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Does this work for you?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
insert into sql.mortage
(loan_number, due_date, investor_numer, bankruptcy_flag, ltv)
values
(1000001, dhms('01jan2016'd, 0, 0, 0) ,200001,'N',0.8)
;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 03 Jun 2017 20:13:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SQL-Server-Connectivity/m-p/364037#M86283</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-06-03T20:13:05Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Server Connectivity</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SQL-Server-Connectivity/m-p/364050#M86289</link>
      <description>&lt;P&gt;Thanks for a reply. &amp;nbsp;But I still I see the different date than what I entered. &amp;nbsp;Instead of 01Jan2016, it shows 1960-01-01.&lt;/P&gt;</description>
      <pubDate>Sat, 03 Jun 2017 22:50:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SQL-Server-Connectivity/m-p/364050#M86289</guid>
      <dc:creator>sas_td2016</dc:creator>
      <dc:date>2017-06-03T22:50:07Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Server Connectivity</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SQL-Server-Connectivity/m-p/364053#M86291</link>
      <description>&lt;P&gt;Weird.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What happens if you use a date time literal instead of date.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;"27JAN2016:12:35:00"dt&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please include your exact code, log and incorrect value as shown in your initial post.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 03 Jun 2017 23:41:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SQL-Server-Connectivity/m-p/364053#M86291</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-06-03T23:41:53Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Server Connectivity</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SQL-Server-Connectivity/m-p/364058#M86294</link>
      <description>&lt;P&gt;Here is the actual code&lt;/P&gt;&lt;P&gt;proc sql;&lt;BR /&gt;insert into sql.mortage&lt;BR /&gt;(loan_number, due_date, investor_numer, bankruptcy_flag, ltv)&lt;BR /&gt;values&lt;BR /&gt;(1000001, '01jan2016'd, 200001,'N',0.8)&lt;BR /&gt;;&lt;BR /&gt;quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;is there any formatting required for date variable?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;output in sql server:&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/9224i8D9A5B863EC94307/image-size/original?v=1.0&amp;amp;px=-1" border="0" alt="Capture.JPG" title="Capture.JPG" /&gt;&lt;/P&gt;&lt;P&gt;How do I get the same date as&amp;nbsp;&lt;SPAN&gt;01jan2016 in sql server?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 04 Jun 2017 00:01:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SQL-Server-Connectivity/m-p/364058#M86294</guid>
      <dc:creator>sas_td2016</dc:creator>
      <dc:date>2017-06-04T00:01:38Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Server Connectivity</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SQL-Server-Connectivity/m-p/364061#M86295</link>
      <description>&lt;P&gt;did you try '2016-01-01'&lt;/P&gt;</description>
      <pubDate>Sun, 04 Jun 2017 01:05:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SQL-Server-Connectivity/m-p/364061#M86295</guid>
      <dc:creator>kiranv_</dc:creator>
      <dc:date>2017-06-04T01:05:04Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Server Connectivity</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SQL-Server-Connectivity/m-p/364084#M86307</link>
      <description>&lt;P&gt;yes, I tried. &amp;nbsp;But SAS doesn't take this format. &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 04 Jun 2017 03:55:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SQL-Server-Connectivity/m-p/364084#M86307</guid>
      <dc:creator>sas_td2016</dc:creator>
      <dc:date>2017-06-04T03:55:59Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Server Connectivity</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SQL-Server-Connectivity/m-p/364087#M86309</link>
      <description>&lt;P&gt;ok. I have worked extensively with Teradata and SAS for many years. But I have started working recently sql server. Whenever I have to do Insert I use explicit pass through a connect statement. That is always easy way to go&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;just tried insert into sql server '2016-01-01' and also '2016-01-01 00:00:00.000', both of them worked. Please try to connect statment if possible as shown below.&lt;/P&gt;
&lt;P&gt;proc sql;&lt;/P&gt;
&lt;P&gt;connect to odbc(datasrc=xxx authdomain =yyyy)&lt;/P&gt;
&lt;P&gt;execute(insert into sqlseverschema.table values(something , '2016-01-01' )by odbc&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 04 Jun 2017 04:49:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SQL-Server-Connectivity/m-p/364087#M86309</guid>
      <dc:creator>kiranv_</dc:creator>
      <dc:date>2017-06-04T04:49:14Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Server Connectivity</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SQL-Server-Connectivity/m-p/364091#M86311</link>
      <description>&lt;P&gt;Well, that isn't the code I asked you to try. If you try the same code I'm not really surprised you're going to get the same output. If you search on here, 99% of the time, this is the correct solution. It's possible you have something else going on, but without the code/log/output I may as well tell you to walk to the server and ask what's wrong.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 04 Jun 2017 05:04:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SQL-Server-Connectivity/m-p/364091#M86311</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-06-04T05:04:30Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Server Connectivity</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SQL-Server-Connectivity/m-p/365921#M86966</link>
      <description>&lt;P&gt;Hello Friends&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I still don't understand what Reeza mentioning here. &amp;nbsp;Can you please guide me on this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My output should be same on the sql server as my sql query on the SAS.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your help is highly appreciated.&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2017 17:17:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SQL-Server-Connectivity/m-p/365921#M86966</guid>
      <dc:creator>sas_td2016</dc:creator>
      <dc:date>2017-06-10T17:17:35Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Server Connectivity</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SQL-Server-Connectivity/m-p/365925#M86969</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/99739"&gt;@sas_td2016&lt;/a&gt;&amp;nbsp;This is an assumption, which may not&amp;nbsp;be true sometimes. A similar query run on SQL Server and SAS may have different results. One reson I can think of is case sensitive. SQL server is case insensitive, whereas SAS is case sensitive.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;select * from database.dbo.mytablename&lt;/P&gt;
&lt;P&gt;where name = 'hello'&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;LIBNAME SQLS ODBC DSN=’sql server’ user=sasjlb pw=pwd;&lt;/P&gt;
&lt;P&gt;select * from&amp;nbsp;&lt;SPAN&gt;SQLS.mytablename&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;where name ='hello'&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;U&gt;Show us&lt;/U&gt; what is the &lt;U&gt;code you run&lt;/U&gt;. what are the &lt;U&gt;values you got&lt;/U&gt; or &lt;U&gt;what is the error,&lt;/U&gt; someone can definetly help you.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2017 18:13:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SQL-Server-Connectivity/m-p/365925#M86969</guid>
      <dc:creator>kiranv_</dc:creator>
      <dc:date>2017-06-10T18:13:44Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Server Connectivity</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SQL-Server-Connectivity/m-p/365927#M86970</link>
      <description>&lt;P&gt;Thanks Kiran for your reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the actual code&lt;/P&gt;&lt;P&gt;proc sql;&lt;BR /&gt;insert into sql.mortage&lt;BR /&gt;(loan_number, due_date, investor_numer, bankruptcy_flag, ltv)&lt;BR /&gt;values&lt;BR /&gt;(1000001, '01jan2016'd, 200001,'N',0.8)&lt;BR /&gt;;&lt;BR /&gt;quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;is there any formatting required for date variable?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;output in sql server:&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/9224i8D9A5B863EC94307/image-size/original?v=1.0&amp;amp;px=-1" border="0" alt="Capture.JPG" title="Capture.JPG" /&gt;&lt;/P&gt;&lt;P&gt;How do I get the same date as&amp;nbsp;&lt;SPAN&gt;01jan2016 in sql server?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;In SQL Server the date shows as '1960-01-01 05:40:54:000&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks again.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2017 18:29:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SQL-Server-Connectivity/m-p/365927#M86970</guid>
      <dc:creator>sas_td2016</dc:creator>
      <dc:date>2017-06-10T18:29:31Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Server Connectivity</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SQL-Server-Connectivity/m-p/365928#M86971</link>
      <description>&lt;P&gt;As&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;said earlier this is a datetime column, not a date column. Did you try using datetime value which&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;has provided. please let me know if that has nor worked.&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2017 18:46:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SQL-Server-Connectivity/m-p/365928#M86971</guid>
      <dc:creator>kiranv_</dc:creator>
      <dc:date>2017-06-10T18:46:11Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Server Connectivity</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SQL-Server-Connectivity/m-p/365935#M86972</link>
      <description>&lt;P&gt;yes, I tried that too. &amp;nbsp;It didn't work.&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2017 21:38:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SQL-Server-Connectivity/m-p/365935#M86972</guid>
      <dc:creator>sas_td2016</dc:creator>
      <dc:date>2017-06-10T21:38:55Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Server Connectivity</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SQL-Server-Connectivity/m-p/365936#M86973</link>
      <description>&lt;P&gt;Show it. All you've shown so far is a DATE var which we all know doesn't work.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2017 21:46:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SQL-Server-Connectivity/m-p/365936#M86973</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-06-10T21:46:54Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Server Connectivity</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SQL-Server-Connectivity/m-p/365946#M86981</link>
      <description>&lt;P&gt;check the below link someone with problem&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. &lt;A href="https://communities.sas.com/t5/Base-SAS-Programming/Loading-sas-date-into-sql-server/td-p/235058" target="_blank"&gt;https://communities.sas.com/t5/Base-SAS-Programming/Loading-sas-date-into-sql-server/td-p/235058&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;please do the following if the above link does not work&lt;/P&gt;
&lt;P&gt;1. As I mentioned and shown earlier, inserting into table using connect statement is easier bet.&lt;/P&gt;
&lt;P&gt;2. Try using SASDATEFMT shown in the link, we used to use this a lot with date and datetime and&amp;nbsp;I am sure if you following one of this example it will work.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/acreldb/69580/HTML/default/viewer.htm#p13xka550rm442n1gdvi1swxgr1h.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/acreldb/69580/HTML/default/viewer.htm#p13xka550rm442n1gdvi1swxgr1h.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;3. Create a SAS table with format date9. with data yoou have and then insert.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2017 00:23:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SQL-Server-Connectivity/m-p/365946#M86981</guid>
      <dc:creator>kiranv_</dc:creator>
      <dc:date>2017-06-11T00:23:25Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Server Connectivity</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SQL-Server-Connectivity/m-p/365969#M86994</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/99739"&gt;@sas_td2016&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;As other mentioned earlier you SQL Server column appears to be of data type &lt;EM&gt;DATETIME&lt;/EM&gt; and not &lt;EM&gt;DATE&lt;/EM&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would have expected SAS to convert your SAS Date value to a SQL DateTime value when loading into the SQL table but it appears that's not happening.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Without you providing us with more information we can't say much more about it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As other's already suggested try &amp;nbsp;and pass in a SAS DateTime value instead of a Date value as done in code below:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
  insert into sql.mortage
    (loan_number, due_date, investor_numer, bankruptcy_flag, ltv)
  values
    (1000001, '01jan2016 00:00:00'dt, 200001,'N',0.8)
  ;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If things still don't work then please add the following options statements before your SQL and then post the log:&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;options&lt;/EM&gt;&lt;SPAN&gt; sastrace=',,,d' sastraceloc=saslog &lt;/SPAN&gt;&lt;EM&gt;nostsuffix&lt;/EM&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Also:&amp;nbsp;If you run a Proc Contents for table SQL.MORTGAGE what's the format on column DUE_DATE?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;SAS uses this format to determine how to covert SAS Date and DateTime values to the target database representation when loading. I've made the experience that this doesn't work for all formats but that you can rely on formats&amp;nbsp;DATE9. and DATETIME20.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If data conversion doesn't work as expected then another option is to explicitely "tell" SAS using option &lt;EM&gt;DBSASTYPE&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/acreldb/63647/HTML/default/viewer.htm#a001371572.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/acreldb/63647/HTML/default/viewer.htm#a001371572.htm&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2017 04:34:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SQL-Server-Connectivity/m-p/365969#M86994</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2017-06-11T04:34:04Z</dc:date>
    </item>
  </channel>
</rss>

