<?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: Delete all datasets in a Library that are in lowercase and propcase or which are not in upcase in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Delete-all-datasets-in-a-Library-that-are-in-lowercase-and/m-p/520850#M141263</link>
    <description>&lt;P&gt;First question: Why?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Secondly, I am not sure if this is possible. As far as I know, SAS stores data set names in lowercase internally. However, someone may be smarter than me &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 12 Dec 2018 15:32:07 GMT</pubDate>
    <dc:creator>PeterClemmensen</dc:creator>
    <dc:date>2018-12-12T15:32:07Z</dc:date>
    <item>
      <title>Delete all datasets in a Library that are in lowercase and propcase or which are not in upcase</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Delete-all-datasets-in-a-Library-that-are-in-lowercase-and/m-p/520845#M141262</link>
      <description>&lt;P&gt;I want to delete all the datasets in a library that are in lowercase and&amp;nbsp;propcase&amp;nbsp;or that are not in upcase&lt;/P&gt;</description>
      <pubDate>Wed, 12 Dec 2018 15:12:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Delete-all-datasets-in-a-Library-that-are-in-lowercase-and/m-p/520845#M141262</guid>
      <dc:creator>vijaysas777zx</dc:creator>
      <dc:date>2018-12-12T15:12:27Z</dc:date>
    </item>
    <item>
      <title>Re: Delete all datasets in a Library that are in lowercase and propcase or which are not in upcase</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Delete-all-datasets-in-a-Library-that-are-in-lowercase-and/m-p/520850#M141263</link>
      <description>&lt;P&gt;First question: Why?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Secondly, I am not sure if this is possible. As far as I know, SAS stores data set names in lowercase internally. However, someone may be smarter than me &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Dec 2018 15:32:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Delete-all-datasets-in-a-Library-that-are-in-lowercase-and/m-p/520850#M141263</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2018-12-12T15:32:07Z</dc:date>
    </item>
    <item>
      <title>Re: Delete all datasets in a Library that are in lowercase and propcase or which are not in upcase</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Delete-all-datasets-in-a-Library-that-are-in-lowercase-and/m-p/520851#M141264</link>
      <description>&lt;P&gt;Datasets in SAS are always stored as lowercase in the operating system and displayed as uppercase within the SAS applications.&lt;/P&gt;
&lt;P&gt;Even when using this&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data sascomm.'Some XXXX'n;
set sashelp.class;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;the file in the operating system is&lt;/P&gt;
&lt;PRE&gt;some xxxx.sas7bdat&lt;/PRE&gt;
&lt;P&gt;and shows up as&lt;/P&gt;
&lt;PRE&gt;SOME XXXX&lt;/PRE&gt;
&lt;P&gt;in the library in the server list on EG.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PS This test was done on a &lt;U&gt;UNIX&lt;/U&gt; system, which has a real case-sensitive file system (as opposed to the Windows toyboxes).&lt;/P&gt;</description>
      <pubDate>Wed, 12 Dec 2018 15:36:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Delete-all-datasets-in-a-Library-that-are-in-lowercase-and/m-p/520851#M141264</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-12-12T15:36:03Z</dc:date>
    </item>
    <item>
      <title>Re: Delete all datasets in a Library that are in lowercase and propcase or which are not in upcase</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Delete-all-datasets-in-a-Library-that-are-in-lowercase-and/m-p/520853#M141265</link>
      <description>&lt;P&gt;You would need to get a listing from the operating system for doing such a thing, the metadata defaults to all uppercase for names.&lt;/P&gt;
&lt;P&gt;I would also ask with&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/31304"&gt;@PeterClemmensen&lt;/a&gt;, why?&amp;nbsp; Doesn't make sense.&amp;nbsp; I understand that linux/unix treats upper/lower case differently, and Windows doesn't, but if you need all uppercase (and personally I would go the other way and say all lowercase), then they should be created that way by some sort of company policy?&lt;/P&gt;
&lt;P&gt;Maybe a batch script for your OS would be a simple method to go about it.&amp;nbsp; Maybe:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://superuser.com/questions/65302/is-there-a-way-to-batch-rename-files-to-lowercase" target="_blank"&gt;https://superuser.com/questions/65302/is-there-a-way-to-batch-rename-files-to-lowercase&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Dec 2018 15:33:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Delete-all-datasets-in-a-Library-that-are-in-lowercase-and/m-p/520853#M141265</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-12-12T15:33:13Z</dc:date>
    </item>
  </channel>
</rss>

