<?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: Working on the same SAS datasets on 2 different operating systems... in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Working-on-the-same-SAS-datasets-on-2-different-operating/m-p/103375#M28965</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi there, thanks for your response. you are right the problem is about 32 bit vs 64 bit.&lt;/P&gt;&lt;P&gt;I am wondering if i can still trust the analyses result i am getting in the 64 bit PC, shown along with the warning.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do i have to do something like you have explained above? or for that matter use one of the solutions before I run the analyses in 64 bit PC?&lt;/P&gt;&lt;P&gt;There are too many datasets and each of them is very huge and has too many formats..so i donot really wish to do it all over again.&lt;/P&gt;&lt;P&gt;I just want to know if it will be absolutely fine to use those results even if they are generated with the error messages about formats.&lt;/P&gt;&lt;P&gt;If i could just use the analyses results without having to take care of the solutions to get rid of the warning, that will save me a lot of time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Appreciate your help.&lt;BR /&gt;Thanks&lt;/P&gt;&lt;P&gt;Ashwini&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 May 2012 21:29:48 GMT</pubDate>
    <dc:creator>Ashwini_uci</dc:creator>
    <dc:date>2012-05-03T21:29:48Z</dc:date>
    <item>
      <title>Working on the same SAS datasets on 2 different operating systems...</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Working-on-the-same-SAS-datasets-on-2-different-operating/m-p/103373#M28963</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi there,&lt;/P&gt;&lt;P&gt;I have some SAS datasets for which, I had created the formats and done majority of analyses Windows XP. And now I have a new computer with windows 7 and while running some analyses on this new computer. I keep getting following warning messages in the log windows; however it is still giving me the output.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;SPAN style="color: #ff0000; text-decoration: underline;"&gt;ERROR: File LIBRARY.FORMATS.CATALOG was created for a different operating system&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I am wondering, if this is anything serious and if it is going to affect the results in anyway.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is switching between 2 operating systems, going to give me any serious trouble ahead with SAS analyseS? Any suggestions/recommendations?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ashwini&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000; font-size: 12pt; font-family: Courier New;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2012 20:05:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Working-on-the-same-SAS-datasets-on-2-different-operating/m-p/103373#M28963</guid>
      <dc:creator>Ashwini_uci</dc:creator>
      <dc:date>2012-05-03T20:05:55Z</dc:date>
    </item>
    <item>
      <title>Re: Working on the same SAS datasets on 2 different operating systems...</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Working-on-the-same-SAS-datasets-on-2-different-operating/m-p/103374#M28964</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ... the problem may be a 32-bit PC running XP versus a 64-bit PC running 7, it's a problem with catalogs (e.g. format catalogs)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;one solution (there are most likely others) for formats&amp;nbsp; is to create CNTLOUT data set on a 32-bit PC and use it as a CNTLIN data set on the 64-bit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;* some 32-bit formats;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;proc format;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;value a 1='1' other='other';&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;value $a '1'='1'&amp;nbsp; other='other';&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;invalue check 1=10 other = _same_;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;invalue $check '1'='ten' other = _same_;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;* write formats to a data set;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;proc format lib=work cntlout=hold;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;* go to the 64-bit PC;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;libname library 'z:\';&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;proc format library=library cntlin=hold;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2012 20:57:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Working-on-the-same-SAS-datasets-on-2-different-operating/m-p/103374#M28964</guid>
      <dc:creator>MikeZdeb</dc:creator>
      <dc:date>2012-05-03T20:57:04Z</dc:date>
    </item>
    <item>
      <title>Re: Working on the same SAS datasets on 2 different operating systems...</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Working-on-the-same-SAS-datasets-on-2-different-operating/m-p/103375#M28965</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi there, thanks for your response. you are right the problem is about 32 bit vs 64 bit.&lt;/P&gt;&lt;P&gt;I am wondering if i can still trust the analyses result i am getting in the 64 bit PC, shown along with the warning.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do i have to do something like you have explained above? or for that matter use one of the solutions before I run the analyses in 64 bit PC?&lt;/P&gt;&lt;P&gt;There are too many datasets and each of them is very huge and has too many formats..so i donot really wish to do it all over again.&lt;/P&gt;&lt;P&gt;I just want to know if it will be absolutely fine to use those results even if they are generated with the error messages about formats.&lt;/P&gt;&lt;P&gt;If i could just use the analyses results without having to take care of the solutions to get rid of the warning, that will save me a lot of time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Appreciate your help.&lt;BR /&gt;Thanks&lt;/P&gt;&lt;P&gt;Ashwini&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2012 21:29:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Working-on-the-same-SAS-datasets-on-2-different-operating/m-p/103375#M28965</guid>
      <dc:creator>Ashwini_uci</dc:creator>
      <dc:date>2012-05-03T21:29:48Z</dc:date>
    </item>
    <item>
      <title>Re: Working on the same SAS datasets on 2 different operating systems...</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Working-on-the-same-SAS-datasets-on-2-different-operating/m-p/103376#M28966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ... quite sure it is just a format-related issue and has no effect on the use of the data sets&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you could always seek a higher authority (&lt;A href="http://support.sas.com/ctx/supportform/createForm" title="http://support.sas.com/ctx/supportform/createForm"&gt;http://support.sas.com/ctx/supportform/createForm&lt;/A&gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2012 21:53:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Working-on-the-same-SAS-datasets-on-2-different-operating/m-p/103376#M28966</guid>
      <dc:creator>MikeZdeb</dc:creator>
      <dc:date>2012-05-03T21:53:48Z</dc:date>
    </item>
    <item>
      <title>Re: Working on the same SAS datasets on 2 different operating systems...</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Working-on-the-same-SAS-datasets-on-2-different-operating/m-p/103377#M28967</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe you can consider to use proc cport and proc cimport to&amp;nbsp; transport these 32-bit sas files into 64-bit sas files.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ksharp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 May 2012 02:19:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Working-on-the-same-SAS-datasets-on-2-different-operating/m-p/103377#M28967</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2012-05-04T02:19:28Z</dc:date>
    </item>
  </channel>
</rss>

