<?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: No of inserts in a db in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/No-of-inserts-in-a-db/m-p/595276#M171216</link>
    <description>Hi, thanks for the reply&lt;BR /&gt;We are inserting data into a table in Google cloud using explicit method. We would like to know in one insert how many rows are inserted into the table.&lt;BR /&gt;Is there any option to see it in log</description>
    <pubDate>Thu, 10 Oct 2019 07:08:46 GMT</pubDate>
    <dc:creator>justusjillella</dc:creator>
    <dc:date>2019-10-10T07:08:46Z</dc:date>
    <item>
      <title>No of inserts in a db</title>
      <link>https://communities.sas.com/t5/SAS-Programming/No-of-inserts-in-a-db/m-p/595268#M171213</link>
      <description>How to fund no of rows inserted into a database In a single insert when updating the db</description>
      <pubDate>Thu, 10 Oct 2019 06:30:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/No-of-inserts-in-a-db/m-p/595268#M171213</guid>
      <dc:creator>justusjillella</dc:creator>
      <dc:date>2019-10-10T06:30:07Z</dc:date>
    </item>
    <item>
      <title>Re: No of inserts in a db</title>
      <link>https://communities.sas.com/t5/SAS-Programming/No-of-inserts-in-a-db/m-p/595270#M171214</link>
      <description>&lt;P&gt;Show us your code?&lt;/P&gt;</description>
      <pubDate>Thu, 10 Oct 2019 06:37:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/No-of-inserts-in-a-db/m-p/595270#M171214</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-10-10T06:37:24Z</dc:date>
    </item>
    <item>
      <title>Re: No of inserts in a db</title>
      <link>https://communities.sas.com/t5/SAS-Programming/No-of-inserts-in-a-db/m-p/595272#M171215</link>
      <description>&lt;P&gt;Use &amp;amp;sqlobs:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
x1 = 'A';
x2 = 1;
stop;
run;

proc sql;
insert into have
values ('X',2)
values ('C',3)
;
quit;

%put &amp;amp;sqlobs;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Log excerpt:&lt;/P&gt;
&lt;PRE&gt;50         %put &amp;amp;sqlobs;
2
&lt;/PRE&gt;</description>
      <pubDate>Thu, 10 Oct 2019 06:38:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/No-of-inserts-in-a-db/m-p/595272#M171215</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-10-10T06:38:01Z</dc:date>
    </item>
    <item>
      <title>Re: No of inserts in a db</title>
      <link>https://communities.sas.com/t5/SAS-Programming/No-of-inserts-in-a-db/m-p/595276#M171216</link>
      <description>Hi, thanks for the reply&lt;BR /&gt;We are inserting data into a table in Google cloud using explicit method. We would like to know in one insert how many rows are inserted into the table.&lt;BR /&gt;Is there any option to see it in log</description>
      <pubDate>Thu, 10 Oct 2019 07:08:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/No-of-inserts-in-a-db/m-p/595276#M171216</guid>
      <dc:creator>justusjillella</dc:creator>
      <dc:date>2019-10-10T07:08:46Z</dc:date>
    </item>
    <item>
      <title>Re: No of inserts in a db</title>
      <link>https://communities.sas.com/t5/SAS-Programming/No-of-inserts-in-a-db/m-p/595288#M171225</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/182585"&gt;@justusjillella&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Hi, thanks for the reply&lt;BR /&gt;We are inserting data into a table in Google cloud using explicit method. We would like to know in one insert how many rows are inserted into the table.&lt;BR /&gt;Is there any option to see it in log&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Have you tried the code posted by &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt; ?&lt;/P&gt;</description>
      <pubDate>Thu, 10 Oct 2019 08:37:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/No-of-inserts-in-a-db/m-p/595288#M171225</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2019-10-10T08:37:33Z</dc:date>
    </item>
    <item>
      <title>Re: No of inserts in a db</title>
      <link>https://communities.sas.com/t5/SAS-Programming/No-of-inserts-in-a-db/m-p/595293#M171227</link>
      <description>&lt;P&gt;My code will most probably not work, as with explicit passthrough the whole work is done in the DBMS, and SAS SQL only sees EXECUTE() with some text inside. Personally, I have no experience with explicit PT.&lt;/P&gt;
&lt;P&gt;It might be possible to structure the PT code in a way that it renders the number as output, and then use that as "from" in the SAS SQL code.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Oct 2019 08:57:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/No-of-inserts-in-a-db/m-p/595293#M171227</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-10-10T08:57:50Z</dc:date>
    </item>
  </channel>
</rss>

