<?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 Reg:Droping variables in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Reg-Droping-variables/m-p/31088#M5970</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It looks like you can't do it without recreating a new table ,even SQL.&lt;/P&gt;&lt;P&gt;But If you like view you can create a view for that which is most fast and most saving disk space method.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 14 Mar 2012 07:45:15 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2012-03-14T07:45:15Z</dc:date>
    <item>
      <title>Reg:Droping variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Reg-Droping-variables/m-p/31087#M5969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am having a huge dataset with 200gb and having 100 variable ,now i want to drop 1 variable unused_trans,&lt;/P&gt;&lt;P&gt;i can do by this way&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data tran_data(drop=unused_trans);&lt;/P&gt;&lt;P&gt;set tran_data;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there any other way to drop the variable by using proc datasets or proc sql with out recreating the dataset&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Mar 2012 07:28:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Reg-Droping-variables/m-p/31087#M5969</guid>
      <dc:creator>sas_</dc:creator>
      <dc:date>2012-03-14T07:28:22Z</dc:date>
    </item>
    <item>
      <title>Reg:Droping variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Reg-Droping-variables/m-p/31088#M5970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It looks like you can't do it without recreating a new table ,even SQL.&lt;/P&gt;&lt;P&gt;But If you like view you can create a view for that which is most fast and most saving disk space method.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Mar 2012 07:45:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Reg-Droping-variables/m-p/31088#M5970</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2012-03-14T07:45:15Z</dc:date>
    </item>
    <item>
      <title>Reg:Droping variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Reg-Droping-variables/m-p/31089#M5971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; I don;t think there is any other way accept creating a view.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Mar 2012 10:37:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Reg-Droping-variables/m-p/31089#M5971</guid>
      <dc:creator>manojinpec</dc:creator>
      <dc:date>2012-03-14T10:37:23Z</dc:date>
    </item>
    <item>
      <title>Reg:Droping variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Reg-Droping-variables/m-p/31090#M5972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It would be slightly faster to do it this way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data tran_data;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set tran_data (drop=unused_trans);&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Mar 2012 12:11:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Reg-Droping-variables/m-p/31090#M5972</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2012-03-14T12:11:53Z</dc:date>
    </item>
    <item>
      <title>Reg:Droping variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Reg-Droping-variables/m-p/31091#M5973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As already said, SAS offers no support of modifying table structure in place.&lt;/P&gt;&lt;P&gt;If this is a rare operation, I can't see any problem by recreating the table.&lt;/P&gt;&lt;P&gt;if you often need to add/drop columns, and performance is an issue, you might want to look for other storage options.&lt;/P&gt;&lt;P&gt;If you are eager to save disk space, you may want to look at compression (SAS or host based).&lt;/P&gt;&lt;P&gt;If you just want to hide some obsolete columns for your users, using views, information maps or metadata rights could be an alternative.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Mar 2012 12:26:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Reg-Droping-variables/m-p/31091#M5973</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2012-03-14T12:26:39Z</dc:date>
    </item>
    <item>
      <title>Reg:Droping variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Reg-Droping-variables/m-p/31092#M5974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; How does it get in the data in the first place? Just about any approach should allow a (drop=variable) from the output when creating the SAS dataset. it from the datastep would be a better approach as you're going to need rought 400gb of disk to process.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Mar 2012 21:33:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Reg-Droping-variables/m-p/31092#M5974</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2012-03-14T21:33:39Z</dc:date>
    </item>
    <item>
      <title>Reg:Droping variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Reg-Droping-variables/m-p/31093#M5975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Where is your data stored?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Mar 2012 22:14:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Reg-Droping-variables/m-p/31093#M5975</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2012-03-14T22:14:47Z</dc:date>
    </item>
  </channel>
</rss>

