<?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: Migrating SAS Views in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Migrating-SAS-Views/m-p/554226#M74651</link>
    <description>&lt;P&gt;With data step views , you can retrieve the code with this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data view=viewname;
describe;
run; &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;With SQL views, use this code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
describe view viewname;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/51337"&gt;@vijayanand&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Unfortunately, I do not have access to the source code to run.&lt;BR /&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Somebody needs to be hung, drawn and quartered. Let this be an object lesson for the importance of proper documentation and sane coding processes.&lt;/P&gt;</description>
    <pubDate>Fri, 26 Apr 2019 12:19:50 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2019-04-26T12:19:50Z</dc:date>
    <item>
      <title>Migrating SAS Views</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Migrating-SAS-Views/m-p/554198#M74648</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We are migrting SAS&amp;nbsp; Data from AIX to Linux machine.&amp;nbsp; For this we are using different SAS procewdures like PROC CPORT , CIMPORT , PROD DOWNLOAD etc...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;These procedures are able to migrated SAS datasets, index files&amp;nbsp; and catalogs but not views.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PROC DOWNLOAD can migrate the&amp;nbsp;views created using PROC SQL.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How to migrate the views created using data step.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Proc migrate can migrate the views but it has some limitations that it can not handle the views created on&amp;nbsp; AIX 64 bit OS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Vijayanand.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Apr 2019 09:15:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Migrating-SAS-Views/m-p/554198#M74648</guid>
      <dc:creator>vijayanand</dc:creator>
      <dc:date>2019-04-26T09:15:53Z</dc:date>
    </item>
    <item>
      <title>Re: Migrating SAS Views</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Migrating-SAS-Views/m-p/554200#M74649</link>
      <description>&lt;P&gt;It would be better to re-run the source code creating the views on the target system. This will also test whether all of the correct libraries, tables and columns are present to recreate the views successfully.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Apr 2019 09:20:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Migrating-SAS-Views/m-p/554200#M74649</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2019-04-26T09:20:55Z</dc:date>
    </item>
    <item>
      <title>Re: Migrating SAS Views</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Migrating-SAS-Views/m-p/554204#M74650</link>
      <description>Thanks for the quick response.&lt;BR /&gt;&lt;BR /&gt;Yes, running the source code is an option here. Unfortunately, I do not have access to the source code to run.&lt;BR /&gt;&lt;BR /&gt;What other alternative can I choose to accomplish this.</description>
      <pubDate>Fri, 26 Apr 2019 09:51:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Migrating-SAS-Views/m-p/554204#M74650</guid>
      <dc:creator>vijayanand</dc:creator>
      <dc:date>2019-04-26T09:51:47Z</dc:date>
    </item>
    <item>
      <title>Re: Migrating SAS Views</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Migrating-SAS-Views/m-p/554226#M74651</link>
      <description>&lt;P&gt;With data step views , you can retrieve the code with this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data view=viewname;
describe;
run; &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;With SQL views, use this code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
describe view viewname;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/51337"&gt;@vijayanand&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Unfortunately, I do not have access to the source code to run.&lt;BR /&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Somebody needs to be hung, drawn and quartered. Let this be an object lesson for the importance of proper documentation and sane coding processes.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Apr 2019 12:19:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Migrating-SAS-Views/m-p/554226#M74651</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-04-26T12:19:50Z</dc:date>
    </item>
  </channel>
</rss>

