<?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: Breaking Single Column text into multiple rows in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Breaking-Single-Column-text-into-multiple-rows/m-p/103637#M258324</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Gosh, I thought the text was a part of your case description, not the data itself:smileylaugh:&lt;/P&gt;&lt;P&gt;Take a look at the FINDW-function, which result you can use as input to the SUBSTR-function, combined with explicit OUTPUT statements. That would probably do the work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Apr 2013 13:36:23 GMT</pubDate>
    <dc:creator>LinusH</dc:creator>
    <dc:date>2013-04-10T13:36:23Z</dc:date>
    <item>
      <title>Breaking Single Column text into multiple rows</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Breaking-Single-Column-text-into-multiple-rows/m-p/103634#M258321</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;i have a text in column with $END$&amp;nbsp; which i need to break into multiple rows&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As part of the bank s DR strategy, it has a well laid out DR plan in place, which inter-alia covers details of alternative&lt;/P&gt;&lt;P&gt;site in a different city/seismic zone and also provides for resource mappings for all the critical activities identified by&lt;/P&gt;&lt;P&gt;the Bank.$END$ In order to fulfill the DR requirements, ICICI Bank has deployed various replication features as offered by the RDBMS&lt;/P&gt;&lt;P&gt;and also the hardware based replication in order to fulfill the DR requirements.$END$The Recovery Time Objective (RTO) for all the critical applications identified by the Bank is between 2-8 hours.$END$ TheBank has undertaken periodic DR drills of these critical systems as per the regulatory guidelines to ensure that the&lt;/P&gt;&lt;P&gt;alternate systems at the DR site are always available in case of system unavailability due to any catastrophic event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where ever i get $END$ it needs to insert into new row&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Apr 2013 07:08:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Breaking-Single-Column-text-into-multiple-rows/m-p/103634#M258321</guid>
      <dc:creator>santhosh</dc:creator>
      <dc:date>2013-04-10T07:08:59Z</dc:date>
    </item>
    <item>
      <title>Re: Breaking Single Column text into multiple rows</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Breaking-Single-Column-text-into-multiple-rows/m-p/103635#M258322</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nice with some business requirements to support your question &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;P&gt;But, you may need to define in more detail how you want break (what?) into multiple rows, perhaps a data sample before and after the "break"?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Apr 2013 08:04:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Breaking-Single-Column-text-into-multiple-rows/m-p/103635#M258322</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2013-04-10T08:04:21Z</dc:date>
    </item>
    <item>
      <title>Re: Breaking Single Column text into multiple rows</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Breaking-Single-Column-text-into-multiple-rows/m-p/103636#M258323</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sample data set and output&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;DATA TEST;&lt;BR /&gt;INPUT rem $ 1-830;&lt;BR /&gt;CARDS;&lt;BR /&gt;As part of the&amp;nbsp; DR strategy, it has a well laid out DR plan in place, which inter-alia covers details of alternative site in a different city/seismic zone and also provides for resource mappings for all the critical activities identified by the Bank.$END$ In order to fulfill the DR requirements,&amp;nbsp; Bank has deployed various replication features as offered by the and also the hardware based replication in order to fulfill the DR requirements.$END$The Recovery Time Objective (RTO) for all the critical applications identified by the Bank is between 2-8 hours.$END$ The Bank has undertaken periodic DR drills of these critical systems as per the regulatory guidelines to ensure that the alternate systems at the DR site are always available in case of system unavailability due to any catastrophic event.&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;i want output as output to be in new line(row) where ever $END$ is present&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;test&lt;BR /&gt;As part of the bank s DR strategy, it has a well laid out DR plan in place, which inter-alia covers details of alternative site in a different city/seismic zone and also provides for resource mappings for all the critical activities identified by the Bank.&lt;BR /&gt;In order to fulfill the DR requirements,&amp;nbsp; Bank has deployed various replication features as offered by the and also the hardware based replication in order to fulfill the DR requirements.&lt;BR /&gt;The Recovery Time Objective (RTO) for all the critical applications identified by the Bank is between 2-8 hours.&lt;BR /&gt;The Bank has undertaken periodic DR drills of these critical systems as per the regulatory guidelines to ensure that the alternate systems at the DR site are always available in case of system unavailability due to any catastrophic event.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Apr 2013 13:22:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Breaking-Single-Column-text-into-multiple-rows/m-p/103636#M258323</guid>
      <dc:creator>santhosh</dc:creator>
      <dc:date>2013-04-10T13:22:05Z</dc:date>
    </item>
    <item>
      <title>Re: Breaking Single Column text into multiple rows</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Breaking-Single-Column-text-into-multiple-rows/m-p/103637#M258324</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Gosh, I thought the text was a part of your case description, not the data itself:smileylaugh:&lt;/P&gt;&lt;P&gt;Take a look at the FINDW-function, which result you can use as input to the SUBSTR-function, combined with explicit OUTPUT statements. That would probably do the work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Apr 2013 13:36:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Breaking-Single-Column-text-into-multiple-rows/m-p/103637#M258324</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2013-04-10T13:36:23Z</dc:date>
    </item>
  </channel>
</rss>

