<?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 how to push sas Data set into SQL server in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/how-to-push-sas-Data-set-into-SQL-server/m-p/339912#M77606</link>
    <description>&lt;P&gt;how to push sas Data set in to SQL server(RTest- SQl R)&lt;/P&gt;</description>
    <pubDate>Fri, 10 Mar 2017 08:14:59 GMT</pubDate>
    <dc:creator>sivastat08</dc:creator>
    <dc:date>2017-03-10T08:14:59Z</dc:date>
    <item>
      <title>how to push sas Data set into SQL server</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-push-sas-Data-set-into-SQL-server/m-p/339912#M77606</link>
      <description>&lt;P&gt;how to push sas Data set in to SQL server(RTest- SQl R)&lt;/P&gt;</description>
      <pubDate>Fri, 10 Mar 2017 08:14:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-push-sas-Data-set-into-SQL-server/m-p/339912#M77606</guid>
      <dc:creator>sivastat08</dc:creator>
      <dc:date>2017-03-10T08:14:59Z</dc:date>
    </item>
    <item>
      <title>Re: how to push sas Data set into SQL server</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-push-sas-Data-set-into-SQL-server/m-p/339917#M77608</link>
      <description>&lt;P&gt;There are literally&amp;nbsp;thousands of examples online, start with SAS/ACCESSS documentation.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Mar 2017 08:18:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-push-sas-Data-set-into-SQL-server/m-p/339917#M77608</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2017-03-10T08:18:58Z</dc:date>
    </item>
    <item>
      <title>Re: how to push sas Data set into SQL server</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-push-sas-Data-set-into-SQL-server/m-p/339918#M77609</link>
      <description>thanks LinusH.</description>
      <pubDate>Fri, 10 Mar 2017 08:20:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-push-sas-Data-set-into-SQL-server/m-p/339918#M77609</guid>
      <dc:creator>sivastat08</dc:creator>
      <dc:date>2017-03-10T08:20:44Z</dc:date>
    </item>
    <item>
      <title>Re: how to push sas Data set into SQL server</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-push-sas-Data-set-into-SQL-server/m-p/339919#M77610</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/90077"&gt;@sivastat08&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;while I cannot understand the remark of "&lt;SPAN&gt;RTest- SQl R". to move data from a SAS dataset to any other data origin, such as SQL server you will need:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;- the license for SAS/ACCESS interface to (your data source) (SQL Server, or ODBC. You can get also OLEDB, but I would rather advise against it, unless you have a very specific requirement).&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;- to install that SAS software component&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;- to install and configure the drivers for the SQL Server on the client and the server (if required)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;- you use the appropiate libname statement in your code&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;- use a data step or proc sql, as with any other table&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Mar 2017 08:22:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-push-sas-Data-set-into-SQL-server/m-p/339919#M77610</guid>
      <dc:creator>JuanS_OCS</dc:creator>
      <dc:date>2017-03-10T08:22:49Z</dc:date>
    </item>
    <item>
      <title>Re: how to push sas Data set into SQL server</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-push-sas-Data-set-into-SQL-server/m-p/339920#M77611</link>
      <description>&lt;P&gt;You&amp;nbsp;probably are&amp;nbsp;supposed only to insert data (and not to create tables). Could be something like:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Proc SQL;
  Insert Into &amp;lt;SQL.Table&amp;gt; Select * From &amp;lt;SAS.Table&amp;gt;;
Quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 10 Mar 2017 08:24:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-push-sas-Data-set-into-SQL-server/m-p/339920#M77611</guid>
      <dc:creator>user24feb</dc:creator>
      <dc:date>2017-03-10T08:24:57Z</dc:date>
    </item>
    <item>
      <title>Re: how to push sas Data set into SQL server</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-push-sas-Data-set-into-SQL-server/m-p/339924#M77613</link>
      <description>&lt;P&gt;actually im connecting R- software with SQL server(Library name is -&lt;SPAN&gt;RTest&lt;/SPAN&gt;&amp;nbsp;) and i wnat to push the sas data set to SQL server&lt;/P&gt;</description>
      <pubDate>Fri, 10 Mar 2017 08:28:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-push-sas-Data-set-into-SQL-server/m-p/339924#M77613</guid>
      <dc:creator>sivastat08</dc:creator>
      <dc:date>2017-03-10T08:28:31Z</dc:date>
    </item>
    <item>
      <title>Re: how to push sas Data set into SQL server</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-push-sas-Data-set-into-SQL-server/m-p/339933#M77614</link>
      <description>&lt;P&gt;-Rtest is not a valid SAS name.&lt;/P&gt;
&lt;P&gt;Please specify how you access the R data from SAS and which libname statement you use for SQL Server.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Mar 2017 08:49:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-push-sas-Data-set-into-SQL-server/m-p/339933#M77614</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-03-10T08:49:35Z</dc:date>
    </item>
  </channel>
</rss>

