<?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 convert a date ddmmyyn8 to ddmmyy10. in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/how-to-convert-a-date-ddmmyyn8-to-ddmmyy10/m-p/465929#M30199</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/76331"&gt;@alepage&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am not familiar with proc dataset.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, I have tried this peace of code and it seems to work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is It correct?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc datasets lib=work;&lt;BR /&gt;modify BaseAV2017;&lt;BR /&gt;format EffDate&amp;nbsp;yymmdd10.;&lt;BR /&gt;quit;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;This is correct. It only changes the header information of the dataset and is therefore very efficient.&lt;/P&gt;</description>
    <pubDate>Wed, 30 May 2018 07:44:08 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2018-05-30T07:44:08Z</dc:date>
    <item>
      <title>how to convert a date ddmmyyn8 to ddmmyy10.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/how-to-convert-a-date-ddmmyyn8-to-ddmmyy10/m-p/465694#M30157</link>
      <description>&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to know if there is a way to convert a date (ddmmyyn8) to another date format (ddmmyy10) using proc sql alter table modify?&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 May 2018 13:28:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/how-to-convert-a-date-ddmmyyn8-to-ddmmyy10/m-p/465694#M30157</guid>
      <dc:creator>alepage</dc:creator>
      <dc:date>2018-05-29T13:28:01Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert a date ddmmyyn8 to ddmmyy10.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/how-to-convert-a-date-ddmmyyn8-to-ddmmyy10/m-p/465700#M30158</link>
      <description>&lt;P&gt;For "attribute surgery" like that, proc datasets is the method of choice.&lt;/P&gt;</description>
      <pubDate>Tue, 29 May 2018 13:32:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/how-to-convert-a-date-ddmmyyn8-to-ddmmyy10/m-p/465700#M30158</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-05-29T13:32:10Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert a date ddmmyyn8 to ddmmyy10.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/how-to-convert-a-date-ddmmyyn8-to-ddmmyy10/m-p/465720#M30164</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am not familiar with proc dataset.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, I have tried this peace of code and it seems to work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is It correct?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc datasets lib=work;&lt;BR /&gt;modify BaseAV2017;&lt;BR /&gt;format EffDate&amp;nbsp;yymmdd10.;&lt;BR /&gt;quit;&lt;/P&gt;</description>
      <pubDate>Tue, 29 May 2018 14:06:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/how-to-convert-a-date-ddmmyyn8-to-ddmmyy10/m-p/465720#M30164</guid>
      <dc:creator>alepage</dc:creator>
      <dc:date>2018-05-29T14:06:23Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert a date ddmmyyn8 to ddmmyy10.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/how-to-convert-a-date-ddmmyyn8-to-ddmmyy10/m-p/465929#M30199</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/76331"&gt;@alepage&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am not familiar with proc dataset.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, I have tried this peace of code and it seems to work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is It correct?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc datasets lib=work;&lt;BR /&gt;modify BaseAV2017;&lt;BR /&gt;format EffDate&amp;nbsp;yymmdd10.;&lt;BR /&gt;quit;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;This is correct. It only changes the header information of the dataset and is therefore very efficient.&lt;/P&gt;</description>
      <pubDate>Wed, 30 May 2018 07:44:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/how-to-convert-a-date-ddmmyyn8-to-ddmmyy10/m-p/465929#M30199</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-05-30T07:44:08Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert a date ddmmyyn8 to ddmmyy10.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/how-to-convert-a-date-ddmmyyn8-to-ddmmyy10/m-p/466078#M30214</link>
      <description>&lt;P&gt;Thanks a lot for your Help Kurt&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Wed, 30 May 2018 15:10:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/how-to-convert-a-date-ddmmyyn8-to-ddmmyy10/m-p/466078#M30214</guid>
      <dc:creator>alepage</dc:creator>
      <dc:date>2018-05-30T15:10:14Z</dc:date>
    </item>
  </channel>
</rss>

