<?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 Create a table in access by using proc sql.. in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Create-a-table-in-access-by-using-proc-sql/m-p/158586#M299290</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; how can i create a table in access by using proc sql. I also write code to do the same activity but i couldn't make the necessary result.&lt;/P&gt;&lt;P&gt;&amp;nbsp; Here i put ma code on below.If anyone help me to do the task&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;connect to access(path='C:\Users\Krishna\Desktop\sass\three.mdb');&lt;/P&gt;&lt;P&gt;execute(create table kc (id number,name text,depid number)by access;&lt;/P&gt;&lt;P&gt;execute(insert into kc values(1,'abcd',101)) by access;&lt;/P&gt;&lt;P&gt;execute(insert into kc values(2,'jack',102)) by access;&lt;/P&gt;&lt;P&gt;execute(insert into kc values(2,'kilby',103)) by access;&lt;/P&gt;&lt;P&gt;disconnect from access;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanking you&lt;/P&gt;&lt;P&gt;Krishnachandran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Aug 2014 06:44:51 GMT</pubDate>
    <dc:creator>KrishnaChandra</dc:creator>
    <dc:date>2014-08-13T06:44:51Z</dc:date>
    <item>
      <title>Create a table in access by using proc sql..</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-a-table-in-access-by-using-proc-sql/m-p/158586#M299290</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; how can i create a table in access by using proc sql. I also write code to do the same activity but i couldn't make the necessary result.&lt;/P&gt;&lt;P&gt;&amp;nbsp; Here i put ma code on below.If anyone help me to do the task&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;connect to access(path='C:\Users\Krishna\Desktop\sass\three.mdb');&lt;/P&gt;&lt;P&gt;execute(create table kc (id number,name text,depid number)by access;&lt;/P&gt;&lt;P&gt;execute(insert into kc values(1,'abcd',101)) by access;&lt;/P&gt;&lt;P&gt;execute(insert into kc values(2,'jack',102)) by access;&lt;/P&gt;&lt;P&gt;execute(insert into kc values(2,'kilby',103)) by access;&lt;/P&gt;&lt;P&gt;disconnect from access;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanking you&lt;/P&gt;&lt;P&gt;Krishnachandran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2014 06:44:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-a-table-in-access-by-using-proc-sql/m-p/158586#M299290</guid>
      <dc:creator>KrishnaChandra</dc:creator>
      <dc:date>2014-08-13T06:44:51Z</dc:date>
    </item>
    <item>
      <title>Re: Create a table in access by using proc sql..</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-a-table-in-access-by-using-proc-sql/m-p/158587#M299291</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So what is the result? DO you get any errors, or does your table not look as you expect?&lt;/P&gt;&lt;P&gt;I assume that the three.mdb already exists.&lt;/P&gt;&lt;P&gt;Are you doing this for testing/educational purposes? Inserting data in Access via SAS using hard coded insert values isn't best practice...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2014 07:05:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-a-table-in-access-by-using-proc-sql/m-p/158587#M299291</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2014-08-13T07:05:31Z</dc:date>
    </item>
    <item>
      <title>Re: Create a table in access by using proc sql..</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-a-table-in-access-by-using-proc-sql/m-p/158588#M299292</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are missing a right parenthesis in your create table code line.&lt;/P&gt;&lt;P&gt;Once there it works for me. I use MS Access 2013 on SAS 9.4.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2014 07:19:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-a-table-in-access-by-using-proc-sql/m-p/158588#M299292</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2014-08-13T07:19:12Z</dc:date>
    </item>
    <item>
      <title>Re: Create a table in access by using proc sql..</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-a-table-in-access-by-using-proc-sql/m-p/158589#M299293</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai Linush am beginner in sas.&lt;/P&gt;&lt;P&gt;The question was about for my learning purpose .Here the three.mdb already exist and the file also contain a table Krish.My need is to add new table in three.mdb with the name kc.I saw the same code in log window while i run the code .I couldn't saw any error messages.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2014 07:21:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-a-table-in-access-by-using-proc-sql/m-p/158589#M299293</guid>
      <dc:creator>KrishnaChandra</dc:creator>
      <dc:date>2014-08-13T07:21:55Z</dc:date>
    </item>
    <item>
      <title>Re: Create a table in access by using proc sql..</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-a-table-in-access-by-using-proc-sql/m-p/158590#M299294</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you don't see any messages at all, you probably haven't fixed the parenthesis problem.&lt;/P&gt;&lt;P&gt;You should see a&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SQL used...&lt;/P&gt;&lt;P&gt;after you submitted your code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2014 08:26:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-a-table-in-access-by-using-proc-sql/m-p/158590#M299294</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2014-08-13T08:26:45Z</dc:date>
    </item>
  </channel>
</rss>

