<?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: Stacking data of 10 years in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Stacking-data-of-10-years/m-p/156729#M41088</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It means you have the data open somewhere or it's still being used by some process.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 14 Nov 2014 22:41:10 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2014-11-14T22:41:10Z</dc:date>
    <item>
      <title>Stacking data of 10 years</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Stacking-data-of-10-years/m-p/156714#M41073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am working on NIS (Nationwide Inpatient Sample) database and I am going to have to combine/stack data for 10 years.&lt;/P&gt;&lt;P&gt;There are numerous variables in this data but a few years do not have certain variables/columns in them so the information for those variables is missing from them.&lt;/P&gt;&lt;P&gt;My question is what would be the best SAS code/procedure to perform this operation of stacking these 10 yrs of data.&lt;/P&gt;&lt;P&gt;is the Data/Set procedure is fine or proc append is approrpiate?&lt;/P&gt;&lt;P&gt;I had used the data/set procedure in the past to stack 3 years of data and all the columns from all 3 years were stacked properly, and the columns were also created in the final stacked version of the data, if any of the years didnot include that particular column/variable which was present in some other year.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thougtht of asking this question before proceeding with this as I just want to make sure I am heading in a right way with this as it involves a huge amount of data.&lt;/P&gt;&lt;P&gt;Any suggestions, ideas, tips will behighly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Ashwini&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2014 19:39:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Stacking-data-of-10-years/m-p/156714#M41073</guid>
      <dc:creator>Ashwini_uci</dc:creator>
      <dc:date>2014-11-04T19:39:17Z</dc:date>
    </item>
    <item>
      <title>Re: Stacking data of 10 years</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Stacking-data-of-10-years/m-p/156715#M41074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;proc append with the force option.&amp;nbsp; Data steps read each observation, proc append doesn't. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;More important than what variables are present are the variable formats/lengths as you risk truncating data if the lengths of the variables have changed over time. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2014 19:45:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Stacking-data-of-10-years/m-p/156715#M41074</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-11-04T19:45:39Z</dc:date>
    </item>
    <item>
      <title>Re: Stacking data of 10 years</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Stacking-data-of-10-years/m-p/156716#M41075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Proc append will create a new dataset without over and over replacing the original base dataset.&lt;/P&gt;&lt;P&gt;The datastep set (concat) in one step will create a new dataset in one run.&amp;nbsp; It will be as effective as the proc append.&lt;/P&gt;&lt;P&gt;Both are creating one new big dataset you are going to work on. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Other possible options:&lt;/P&gt;&lt;P&gt;- use a dataetset set concat as view. It will not create a new dataset but at run time read all subsets.&lt;/P&gt;&lt;P&gt;- Use the SPD libname when having more dasd units available. Spreading load over them may increase speed.&lt;BR /&gt;All depends on your limitations and the involved sizes on your hardware system.&amp;nbsp; (none of them is specified)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2014 19:58:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Stacking-data-of-10-years/m-p/156716#M41075</guid>
      <dc:creator>jakarman</dc:creator>
      <dc:date>2014-11-04T19:58:46Z</dc:date>
    </item>
    <item>
      <title>Re: Stacking data of 10 years</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Stacking-data-of-10-years/m-p/156717#M41076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Before combining this data I would verify:&lt;/P&gt;&lt;P&gt;Variables with the same names are the same type, numeric or character in all data sets. If not, you'll need to address something...&lt;/P&gt;&lt;P&gt;Character variables of the same name have the same length or prepare to deal with that. Both Proc Append&amp;nbsp; and the Data step may yield truncated data if the later appended datasets have longer versions.&lt;/P&gt;&lt;P&gt;That variables of the same name actually represent the same data and coding scheme. Nothing like finding out after doing a bunch of analysis that variable X had a code inserted so that after year Z the value 4 corresponds to a previous value of 3... Or code 6 changed meanings...&lt;/P&gt;&lt;P&gt;That the same topic doesn't have a different variable name from year to year.&lt;/P&gt;&lt;P&gt;What to do about precision if the numbers of significant digits stored has changed between sets, this mostly applies to numbers of decimals.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The longer the time frame the more the data needs to be examined as there are more opportunities for change.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2014 20:31:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Stacking-data-of-10-years/m-p/156717#M41076</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2014-11-04T20:31:04Z</dc:date>
    </item>
    <item>
      <title>Re: Stacking data of 10 years</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Stacking-data-of-10-years/m-p/156718#M41077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I tried using Proc append with force option and the log yield errors for appending the first it year's data itself.&lt;/P&gt;&lt;P&gt;I am attaching the log to theoriginal post for your reference. It did not add the variables that were missing in the base databse.&lt;/P&gt;&lt;P&gt;How can I have it add the new variables to the base data and also in the cases if some are missing from the new dataset?&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Should I just use data and set step to avoid all these errors? &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Nov 2014 01:27:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Stacking-data-of-10-years/m-p/156718#M41077</guid>
      <dc:creator>Ashwini_uci</dc:creator>
      <dc:date>2014-11-11T01:27:46Z</dc:date>
    </item>
    <item>
      <title>Re: Stacking data of 10 years</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Stacking-data-of-10-years/m-p/156719#M41078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Fort the base file with force all intended variables must be there. Adding variables by proc append is not possible only rows.&lt;/P&gt;&lt;P&gt;This is a result of the physical optimization of append doing it that way.&lt;/P&gt;&lt;P&gt;Combining datasets and changing the no of variables will require a complete rewrite of all data (set combines all datasets)&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Nov 2014 06:08:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Stacking-data-of-10-years/m-p/156719#M41078</guid>
      <dc:creator>jakarman</dc:creator>
      <dc:date>2014-11-11T06:08:32Z</dc:date>
    </item>
    <item>
      <title>Re: Stacking data of 10 years</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Stacking-data-of-10-years/m-p/156720#M41079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you do have a dataset for each year (like data01, data02, .... , data14), then&lt;/P&gt;&lt;P&gt;data all;&lt;/P&gt;&lt;P&gt;set&lt;/P&gt;&lt;P&gt;&amp;nbsp; data00&lt;/P&gt;&lt;P&gt;&amp;nbsp; data01&lt;/P&gt;&lt;P&gt;&amp;nbsp; .&lt;/P&gt;&lt;P&gt;&amp;nbsp; .&lt;/P&gt;&lt;P&gt;&amp;nbsp; .&lt;/P&gt;&lt;P&gt;&amp;nbsp; data14&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;will also do it. Variables only present in some datasets will have missing values for the other datasets.&lt;/P&gt;&lt;P&gt;Problems may arise if variables have different types or lengths.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Nov 2014 08:28:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Stacking-data-of-10-years/m-p/156720#M41079</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2014-11-11T08:28:07Z</dc:date>
    </item>
    <item>
      <title>Re: Stacking data of 10 years</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Stacking-data-of-10-years/m-p/156721#M41080</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I do have data for each year with 90% variables that are same..some have a few additonal ones and some don't /.I will try what you have suggested.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Nov 2014 20:25:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Stacking-data-of-10-years/m-p/156721#M41080</guid>
      <dc:creator>Ashwini_uci</dc:creator>
      <dc:date>2014-11-11T20:25:22Z</dc:date>
    </item>
    <item>
      <title>Re: Stacking data of 10 years</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Stacking-data-of-10-years/m-p/156722#M41081</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Better to use set statment to concat data coz in case of append it would remove unmatched column&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Nov 2014 18:24:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Stacking-data-of-10-years/m-p/156722#M41081</guid>
      <dc:creator>LearnByMistk</dc:creator>
      <dc:date>2014-11-12T18:24:57Z</dc:date>
    </item>
    <item>
      <title>Re: Stacking data of 10 years</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Stacking-data-of-10-years/m-p/156723#M41082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can probably get the best of both worlds by combining Kurt's suggestion with PROC APPEND.&amp;nbsp; First, create an empty data set that is guaranteed to contain all the variables:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;options obs=0;&lt;/P&gt;&lt;P&gt;data empty;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; set data00 ... data14;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;options obs=max;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reading 0 observations, that will run instantaneously.&amp;nbsp; Then append to the empty data set.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Nov 2014 19:23:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Stacking-data-of-10-years/m-p/156723#M41082</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2014-11-12T19:23:12Z</dc:date>
    </item>
    <item>
      <title>Re: Stacking data of 10 years</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Stacking-data-of-10-years/m-p/156724#M41083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for suggesting this way. It has worked.&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;I have another question. As far as further analyses is concerned; analyses such as multivariate regression and running some macros on the data, does it matter how the data is stacked, using data/set step or using proc append? Should I be anticipating any warning or errors based on how the data is appended?&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;The reason I am asking this question because the &lt;SPAN style="text-decoration: underline;"&gt;data /set step&lt;/SPAN&gt; really long to append the data compared to the proc append procedure. The proc append took hardly a few minutes to append all 10 yrs of data and the data/set step took almost over an hour to append all the data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Nov 2014 00:35:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Stacking-data-of-10-years/m-p/156724#M41083</guid>
      <dc:creator>Ashwini_uci</dc:creator>
      <dc:date>2014-11-13T00:35:05Z</dc:date>
    </item>
    <item>
      <title>Re: Stacking data of 10 years</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Stacking-data-of-10-years/m-p/156725#M41084</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It looks you are having some IO performance problem in your system setup.&lt;/P&gt;&lt;P&gt;Proc append will read one dataset at the time and write one and there will be no PDV build. As it appends the data there is no rewriting or rereading of the areas that are finished.The result is a data set in de order data is specified.&lt;/P&gt;&lt;P&gt;The datastep will need to build a PDV (conversion step) first opening all datasets and then reading one by one while writing the destination.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are needing some analyses split by groups then grouping (ordering) at this stage of building the data is most effective.&lt;/P&gt;&lt;P&gt;Reordering a big dataset could be more effective by joining many smaller ordered ones in a match-merge process&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Nov 2014 06:27:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Stacking-data-of-10-years/m-p/156725#M41084</guid>
      <dc:creator>jakarman</dc:creator>
      <dc:date>2014-11-13T06:27:40Z</dc:date>
    </item>
    <item>
      <title>Re: Stacking data of 10 years</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Stacking-data-of-10-years/m-p/156726#M41085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Under the conditions you described, the analysis data would be identical whether produced by a DATA step or by PROC APPEND.&amp;nbsp; If there were additional statements that were part of the DATA step that would be a different story.&amp;nbsp; But the data will be the same, so the analysis results will be the same as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2014 19:28:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Stacking-data-of-10-years/m-p/156726#M41085</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2014-11-14T19:28:46Z</dc:date>
    </item>
    <item>
      <title>Re: Stacking data of 10 years</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Stacking-data-of-10-years/m-p/156727#M41086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to copy the file from one library to another and I am getting folowing error message:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ERROR: A lock is not available for LIBRARY.NISALL11.DATA.&lt;/P&gt;&lt;P&gt;ERROR: File LIBRARY.NISALL11.DATA has not been saved because copy could not be completed.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;This is the file that was created using proc append.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The file created using data/set statement was copied successfully.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not sure what the above errros means and how to fix it so that the file is copied successfully.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2014 21:41:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Stacking-data-of-10-years/m-p/156727#M41086</guid>
      <dc:creator>Ashwini_uci</dc:creator>
      <dc:date>2014-11-14T21:41:49Z</dc:date>
    </item>
    <item>
      <title>Re: Stacking data of 10 years</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Stacking-data-of-10-years/m-p/156728#M41087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, I guess it has nothing to do with how the data is created. I am getting the same error for copying the data created by data/set statement as well.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2014 22:30:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Stacking-data-of-10-years/m-p/156728#M41087</guid>
      <dc:creator>Ashwini_uci</dc:creator>
      <dc:date>2014-11-14T22:30:32Z</dc:date>
    </item>
    <item>
      <title>Re: Stacking data of 10 years</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Stacking-data-of-10-years/m-p/156729#M41088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It means you have the data open somewhere or it's still being used by some process.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2014 22:41:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Stacking-data-of-10-years/m-p/156729#M41088</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-11-14T22:41:10Z</dc:date>
    </item>
    <item>
      <title>Re: Stacking data of 10 years</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Stacking-data-of-10-years/m-p/156730#M41089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You did not mention your SAS version or OS type the SAs process is running on.&lt;/P&gt;&lt;P&gt;It could be the Eguide process having opened up the dataset and caused the locking. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Locking is something that can be handled by your OS. When all other possible cause are eliminated this is the nasty one.&lt;/P&gt;&lt;P&gt;By trying to optimize IO it can do the locks at a wrong moment and by that causing error message like your got. &lt;/P&gt;&lt;P&gt;This are very rare events, mostly you will find an other you having accessed that data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Nov 2014 09:42:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Stacking-data-of-10-years/m-p/156730#M41089</guid>
      <dc:creator>jakarman</dc:creator>
      <dc:date>2014-11-15T09:42:27Z</dc:date>
    </item>
    <item>
      <title>Re: Stacking data of 10 years</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Stacking-data-of-10-years/m-p/156731#M41090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One of the "shortcomings" of proc append is that it fails when the base dataset is opened and can't be locked. Therefore I avoid append in batch jobs, instead combining the datasets in work with a simple data step, then using the OS to delete the base file physically (you can delete a file in UNIX when when opened), and then copy the temp file in work to the base file location.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Nov 2014 06:18:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Stacking-data-of-10-years/m-p/156731#M41090</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2014-11-17T06:18:04Z</dc:date>
    </item>
    <item>
      <title>Re: Stacking data of 10 years</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Stacking-data-of-10-years/m-p/156732#M41091</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Would avoid relying on the often not activated locking process in Unix. In a real multi-user environment locking should be there.&lt;/P&gt;&lt;P&gt;When going for improvements in the OS you will find it is suddenly there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/hostunx/63053/HTML/default/viewer.htm#n1824lspl1ny8gn1f6or44dbaj9k.htm" title="http://support.sas.com/documentation/cdl/en/hostunx/63053/HTML/default/viewer.htm#n1824lspl1ny8gn1f6or44dbaj9k.htm"&gt;SAS(R) 9.3 Companion for UNIX Environments&lt;/A&gt;&amp;nbsp;&amp;nbsp; filelocks system option 9.3&lt;/P&gt;&lt;P&gt;This file locking is an internal SAS-one. The whole concept of locking is preventing accidents corruption of data.&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Nov 2014 06:50:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Stacking-data-of-10-years/m-p/156732#M41091</guid>
      <dc:creator>jakarman</dc:creator>
      <dc:date>2014-11-17T06:50:16Z</dc:date>
    </item>
  </channel>
</rss>

