<?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: How to create sas views with more records? in SAS Data Science</title>
    <link>https://communities.sas.com/t5/SAS-Data-Science/How-to-create-sas-views-with-more-records/m-p/289565#M4319</link>
    <description>&lt;P&gt;Since you know that you have 10 records and want 100 the easiest would be to duplicate each 10 times.&lt;/P&gt;
&lt;P&gt;This datastep code will create 10 copies of each input record as a view.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want/view=want;
   set have;
   do i=1 to 10;
   output;
   end;
   drop i;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 04 Aug 2016 15:26:59 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2016-08-04T15:26:59Z</dc:date>
    <item>
      <title>How to create sas views with more records?</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/How-to-create-sas-views-with-more-records/m-p/289559#M4318</link>
      <description>&lt;P&gt;HI,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a simple query regarding view creation. I have a table with 10 records. I want to create a view using this table. but I want my contains 100 records. I don't care if the records are duplicate.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;means I want to fetch more records what is there in base data?&lt;/P&gt;</description>
      <pubDate>Thu, 04 Aug 2016 15:13:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/How-to-create-sas-views-with-more-records/m-p/289559#M4318</guid>
      <dc:creator>PravinMishra</dc:creator>
      <dc:date>2016-08-04T15:13:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to create sas views with more records?</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/How-to-create-sas-views-with-more-records/m-p/289565#M4319</link>
      <description>&lt;P&gt;Since you know that you have 10 records and want 100 the easiest would be to duplicate each 10 times.&lt;/P&gt;
&lt;P&gt;This datastep code will create 10 copies of each input record as a view.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want/view=want;
   set have;
   do i=1 to 10;
   output;
   end;
   drop i;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 04 Aug 2016 15:26:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/How-to-create-sas-views-with-more-records/m-p/289565#M4319</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-08-04T15:26:59Z</dc:date>
    </item>
  </channel>
</rss>

