<?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 Implicit Pass through using data step in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Implicit-Pass-through-using-data-step/m-p/521254#M141403</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've read a lot about implicit and explicit pass-through facility in SAS. &lt;STRONG&gt;I'm wondering if implicit pass through only applies for proc sql? Or does it also apply when writing data steps?&lt;/STRONG&gt; All the examples I saw so far regarding implicit pass-through are proc sqls. Can you clear this up for me?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Thu, 13 Dec 2018 19:13:43 GMT</pubDate>
    <dc:creator>jim_toby</dc:creator>
    <dc:date>2018-12-13T19:13:43Z</dc:date>
    <item>
      <title>Implicit Pass through using data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Implicit-Pass-through-using-data-step/m-p/521254#M141403</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've read a lot about implicit and explicit pass-through facility in SAS. &lt;STRONG&gt;I'm wondering if implicit pass through only applies for proc sql? Or does it also apply when writing data steps?&lt;/STRONG&gt; All the examples I saw so far regarding implicit pass-through are proc sqls. Can you clear this up for me?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 13 Dec 2018 19:13:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Implicit-Pass-through-using-data-step/m-p/521254#M141403</guid>
      <dc:creator>jim_toby</dc:creator>
      <dc:date>2018-12-13T19:13:43Z</dc:date>
    </item>
    <item>
      <title>Re: Implicit Pass through using data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Implicit-Pass-through-using-data-step/m-p/521269#M141408</link>
      <description>Pass through works best with SQL since that's the language of RDBMS.&lt;BR /&gt;That said, some stuff can be passed from a data step.&lt;BR /&gt;WHERE clauses with syntax that can be translated, and a BY will trigger an ORDER BY on the fly.&lt;BR /&gt;Bottom line is if you want as much logic to pushed down, use SQL whenever you can.</description>
      <pubDate>Thu, 13 Dec 2018 19:41:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Implicit-Pass-through-using-data-step/m-p/521269#M141408</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2018-12-13T19:41:15Z</dc:date>
    </item>
    <item>
      <title>Re: Implicit Pass through using data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Implicit-Pass-through-using-data-step/m-p/521277#M141411</link>
      <description>&lt;P&gt;I have noticed SAS doing implicit pass thru for Data&amp;nbsp;step as well. However,&amp;nbsp; I believe it depends on case by case as not all the functions and statements are supported across all the databases. The connectors for several databases are continuously evolving. As the focus is growing more and more towards push down processing so does the support for more functions and proc's to run in the database rather than moving the data across the network.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Dec 2018 20:35:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Implicit-Pass-through-using-data-step/m-p/521277#M141411</guid>
      <dc:creator>r_behata</dc:creator>
      <dc:date>2018-12-13T20:35:03Z</dc:date>
    </item>
    <item>
      <title>Re: Implicit Pass through using data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Implicit-Pass-through-using-data-step/m-p/521284#M141413</link>
      <description>&lt;P&gt;Yes, not all functions are passed to the server, so if your SQL or data step uses a function not passed to the server, then it has to operate locally within SAS. Unfortunately this means it does download the entire data set before doing anything, which can be quite time intensive. The documentation includes a list of what functions are passed for each RDMBS. For example PUT/INPUT() are not in the lists which can be problematic because type conversion is a common task.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?docsetId=acreldb&amp;amp;docsetTarget=n1hwhalvtejwi2n1taei3dzfxvhq.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_blank"&gt;https://documentation.sas.com/?docsetId=acreldb&amp;amp;docsetTarget=n1hwhalvtejwi2n1taei3dzfxvhq.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/223452"&gt;@r_behata&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I have noticed SAS doing implicit pass thru for Data&amp;nbsp;step as well. However,&amp;nbsp; I believe it depends on case by case as not all the functions and statements are supported across all the databases. The connectors for several databases are continuously evolving. As the focus is growing more and more towards push down processing so does the support for more functions and proc's to run in the database rather than moving the data across the network.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Dec 2018 21:22:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Implicit-Pass-through-using-data-step/m-p/521284#M141413</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-12-13T21:22:39Z</dc:date>
    </item>
    <item>
      <title>Re: Implicit Pass through using data step</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Implicit-Pass-through-using-data-step/m-p/521294#M141417</link>
      <description>&lt;P&gt;This depends on your backend database.&amp;nbsp; Procs other than SQL might have SQL generated and passed through, e.g., means, freq.&amp;nbsp; You have to check the sas access documentation for your backend.&amp;nbsp; As far as actual data steps running in the database, this is accomplished using proc DS2, which allows you to run threaded code in the DB - but this is available only for Teradata and Hadoop.&amp;nbsp; Special add-on products may be required (something like in-database code accelerator), and your installation may already have them.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;see:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=acreldb&amp;amp;docsetTarget=p13td0l6w0329rn15ul6giz9v82r.htm&amp;amp;locale=en" target="_blank"&gt;https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=acreldb&amp;amp;docsetTarget=p13td0l6w0329rn15ul6giz9v82r.htm&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Dec 2018 21:32:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Implicit-Pass-through-using-data-step/m-p/521294#M141417</guid>
      <dc:creator>johnsville</dc:creator>
      <dc:date>2018-12-13T21:32:20Z</dc:date>
    </item>
  </channel>
</rss>

