<?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: Proc Access in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Access/m-p/32668#M7889</link>
    <description>SAS support website  &lt;A href="http://support.sas.com/" target="_blank"&gt;http://support.sas.com/&lt;/A&gt;  has SAS/ACCESS (9.2) DOC for CA-Datacom - here is the link I found doing a Google advanced search against the SAS.COM website.  From the DOC, I noticed a DATABASE statement, for example, with one of your questions.&lt;BR /&gt;
&lt;BR /&gt;
SAS/ACCESS(R) 9.2 Interface to CA-Datacom/DB: Reference&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/acdcdb/59524/HTML/default/a001131191.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/acdcdb/59524/HTML/default/a001131191.htm&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
    <pubDate>Fri, 15 May 2009 19:51:26 GMT</pubDate>
    <dc:creator>sbb</dc:creator>
    <dc:date>2009-05-15T19:51:26Z</dc:date>
    <item>
      <title>Proc Access</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Access/m-p/32667#M7888</link>
      <description>Trying to connect to DDB aka. Datacom tables.&lt;BR /&gt;
&lt;BR /&gt;
I've read and searched, and searched and read, but I can't find where it tells you how to provide it with the connection information. The documentation states that this type of data cannot be connected to using the normal Libname statement. Below is the sample from the docs on how to connect, but where does the path information go?&lt;BR /&gt;
&lt;BR /&gt;
Server?&lt;BR /&gt;
DSN?&lt;BR /&gt;
&lt;BR /&gt;
Thank you for your help.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
proc access dbms=Datacom;&lt;BR /&gt;
 create mylib.custs.access;&lt;BR /&gt;
  user=demo;  &lt;BR /&gt;
  table=customers; &lt;BR /&gt;
  assign = yes; &lt;BR /&gt;
  drop contact;&lt;BR /&gt;
  list all;&lt;BR /&gt;
  extend all;&lt;BR /&gt;
  rename customer = custnum telephone = phone &lt;BR /&gt;
         streetaddress = street;&lt;BR /&gt;
  format firstorderdate = date7.;&lt;BR /&gt;
  informat firstorderdate = date7.;&lt;BR /&gt;
  content firstorderdate = yymmdd6.; &lt;BR /&gt;
  list all; &lt;BR /&gt;
&lt;BR /&gt;
 create vlib.usacust.view;   &lt;BR /&gt;
  select customer state zipcode name &lt;BR /&gt;
         firstorderdate; &lt;BR /&gt;
  list view;&lt;BR /&gt;
  extend view;&lt;BR /&gt;
&lt;BR /&gt;
  subset where customer eq 1#;&lt;BR /&gt;
  subset sort firstorderdate; &lt;BR /&gt;
  list view;  &lt;BR /&gt;
&lt;BR /&gt;
 create vlib.custadd.view; &lt;BR /&gt;
  select state zipcode country name city; &lt;BR /&gt;
  list view; &lt;BR /&gt;
&lt;BR /&gt;
  list all; &lt;BR /&gt;
&lt;BR /&gt;
run;</description>
      <pubDate>Fri, 15 May 2009 19:35:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Access/m-p/32667#M7888</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-05-15T19:35:54Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Access</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Access/m-p/32668#M7889</link>
      <description>SAS support website  &lt;A href="http://support.sas.com/" target="_blank"&gt;http://support.sas.com/&lt;/A&gt;  has SAS/ACCESS (9.2) DOC for CA-Datacom - here is the link I found doing a Google advanced search against the SAS.COM website.  From the DOC, I noticed a DATABASE statement, for example, with one of your questions.&lt;BR /&gt;
&lt;BR /&gt;
SAS/ACCESS(R) 9.2 Interface to CA-Datacom/DB: Reference&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/acdcdb/59524/HTML/default/a001131191.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/acdcdb/59524/HTML/default/a001131191.htm&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Fri, 15 May 2009 19:51:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Access/m-p/32668#M7889</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2009-05-15T19:51:26Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Access</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Access/m-p/32669#M7890</link>
      <description>Thanks for the reply.&lt;BR /&gt;
&lt;BR /&gt;
That's some of the documentation I had been looking at. &lt;BR /&gt;
&lt;BR /&gt;
I was hoping for a coded sample in the docs that fit my need.&lt;BR /&gt;
&lt;BR /&gt;
I'm always terrible at translating the sample syntax.&lt;BR /&gt;
&lt;BR /&gt;
Looks like I'll have to experiment with it.&lt;BR /&gt;
&lt;BR /&gt;
Cheers.</description>
      <pubDate>Fri, 15 May 2009 19:59:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Access/m-p/32669#M7890</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-05-15T19:59:10Z</dc:date>
    </item>
  </channel>
</rss>

