<?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: Executing SQL Server procs from SAS in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Executing-SQL-Server-procs-from-SAS/m-p/517537#M139956</link>
    <description>&lt;P&gt;The Execute statement can be used to run the SQL Server Stored process from SAS.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/proc/61895/HTML/default/viewer.htm#a002473677.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/proc/61895/HTML/default/viewer.htm#a002473677.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 30 Nov 2018 16:09:53 GMT</pubDate>
    <dc:creator>r_behata</dc:creator>
    <dc:date>2018-11-30T16:09:53Z</dc:date>
    <item>
      <title>Executing SQL Server procs from SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Executing-SQL-Server-procs-from-SAS/m-p/517530#M139951</link>
      <description>&lt;P&gt;Good morning,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I assume the answer is 'no', but has anyone found a way to run a SQL Server proc from SAS?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;--Ben&lt;/P&gt;</description>
      <pubDate>Fri, 30 Nov 2018 16:00:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Executing-SQL-Server-procs-from-SAS/m-p/517530#M139951</guid>
      <dc:creator>BenConner</dc:creator>
      <dc:date>2018-11-30T16:00:43Z</dc:date>
    </item>
    <item>
      <title>Re: Executing SQL Server procs from SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Executing-SQL-Server-procs-from-SAS/m-p/517537#M139956</link>
      <description>&lt;P&gt;The Execute statement can be used to run the SQL Server Stored process from SAS.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/proc/61895/HTML/default/viewer.htm#a002473677.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/proc/61895/HTML/default/viewer.htm#a002473677.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Nov 2018 16:09:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Executing-SQL-Server-procs-from-SAS/m-p/517537#M139956</guid>
      <dc:creator>r_behata</dc:creator>
      <dc:date>2018-11-30T16:09:53Z</dc:date>
    </item>
    <item>
      <title>Re: Executing SQL Server procs from SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Executing-SQL-Server-procs-from-SAS/m-p/517541#M139958</link>
      <description>&lt;P&gt;here is the syntax :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC SQL;
	Connect to odbc (datasrc=datasrcnm user = user_id password = pwd);
		Execute(db.stored_proc) by odbc;
	Disconnect from odbc;
QUIT;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 30 Nov 2018 16:13:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Executing-SQL-Server-procs-from-SAS/m-p/517541#M139958</guid>
      <dc:creator>r_behata</dc:creator>
      <dc:date>2018-11-30T16:13:48Z</dc:date>
    </item>
    <item>
      <title>Re: Executing SQL Server procs from SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Executing-SQL-Server-procs-from-SAS/m-p/517544#M139960</link>
      <description>SQL Pass through - any code you pass over to the server will work, as long as you have the correct permissions.</description>
      <pubDate>Fri, 30 Nov 2018 16:15:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Executing-SQL-Server-procs-from-SAS/m-p/517544#M139960</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-11-30T16:15:16Z</dc:date>
    </item>
    <item>
      <title>Re: Executing SQL Server procs from SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Executing-SQL-Server-procs-from-SAS/m-p/517595#M139983</link>
      <description>&lt;P&gt;Well isn't that slick.&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp; And it even works with ODBC.&lt;/P&gt;
&lt;P&gt;Thanks very much!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;--Ben&lt;/P&gt;</description>
      <pubDate>Fri, 30 Nov 2018 17:57:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Executing-SQL-Server-procs-from-SAS/m-p/517595#M139983</guid>
      <dc:creator>BenConner</dc:creator>
      <dc:date>2018-11-30T17:57:09Z</dc:date>
    </item>
    <item>
      <title>Re: Executing SQL Server procs from SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Executing-SQL-Server-procs-from-SAS/m-p/517596#M139984</link>
      <description>&lt;P&gt;Someday I hope to convince them to get Access for SQL Server.&amp;nbsp; Until then... sigh.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;--Ben&lt;/P&gt;</description>
      <pubDate>Fri, 30 Nov 2018 17:58:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Executing-SQL-Server-procs-from-SAS/m-p/517596#M139984</guid>
      <dc:creator>BenConner</dc:creator>
      <dc:date>2018-11-30T17:58:12Z</dc:date>
    </item>
  </channel>
</rss>

