<?xml version="1.0" encoding="UTF-8"?>
<!--Generated by Squarespace Site Server v5.11.81 (http://www.squarespace.com/) on Fri, 24 Feb 2012 07:02:12 GMT--><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><title>Jared's SAS Blog</title><link>http://jaredprins.com/sas/</link><description></description><lastBuildDate>Tue, 15 Nov 2011 03:23:20 +0000</lastBuildDate><copyright></copyright><language>en-CA</language><generator>Squarespace Site Server v5.11.81 (http://www.squarespace.com/)</generator><item><title>Convert SAS dataset to text file</title><category>Code</category><category>Macro</category><category>SAS</category><dc:creator>Jared</dc:creator><pubDate>Tue, 15 Nov 2011 03:19:03 +0000</pubDate><link>http://jaredprins.com/sas/2011/11/14/convert-sas-dataset-to-text-file.html</link><guid isPermaLink="false">216544:2132401:13725966</guid><description><![CDATA[<p>This SAS macro will convert a dataset to a text file.</p>
<blockquote>
<div id="_mcePaste">libname BC "C:\file\path";</div>
<div></div>
<div id="_mcePaste"></div>
<div id="_mcePaste">%macro filecreate;</div>
<div id="_mcePaste">&nbsp; &nbsp; %do x=1 %to 700;</div>
<div id="_mcePaste">&nbsp; &nbsp; filename lb18 "C:\folder\lb&amp;x..txt" LRECL=8006;</div>
<div id="_mcePaste"></div>
<div>&nbsp; &nbsp; data _null_;</div>
<div id="_mcePaste">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; set BC.some_data (firstobs=&amp;x obs=&amp;x);</div>
<div id="_mcePaste">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; file lb18 dsd dlm='09'x;</div>
<div id="_mcePaste">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; put var1;</div>
<div id="_mcePaste">&nbsp; &nbsp; run;</div>
<div id="_mcePaste"></div>
<div>&nbsp; &nbsp; %end;</div>
<div id="_mcePaste">%mend;</div>
<div id="_mcePaste"></div>
<div id="_mcePaste"></div>
<div>%filecreate;</div>
</blockquote>
<p><a class="offsite-link-inline" href="http://snipplr.com/view/60841/convert-sas-dataset-to-text-file/" target="_blank">View this code on snipplr</a>.</p>
<p>&nbsp;</p>]]></description><wfw:commentRss>http://jaredprins.com/sas/rss-comments-entry-13725966.xml</wfw:commentRss></item><item><title>Brush up on your SAS Operators</title><category>Programming</category><category>SAS</category><dc:creator>Jared</dc:creator><pubDate>Wed, 09 Nov 2011 21:00:03 +0000</pubDate><link>http://jaredprins.com/sas/2011/11/9/brush-up-on-your-sas-operators.html</link><guid isPermaLink="false">216544:2132401:13629716</guid><description><![CDATA[<p>It's always good to brush up on your SAS operators: <a href="http://blogs.sas.com/content/sastraining/2011/09/08/a-quick-tour-of-sas-operators/">http://blogs.sas.com/content/sastraining/2011/09/08/a-quick-tour-of-sas-operators/</a></p>
<p>The only challenge I had was where the heck on the keyboard do you get " &not;&nbsp;"?</p>
<p>I never knew this, but it's call a NOT SIGN. &nbsp;It has the Unicode Character is U+00AC. &nbsp; It's <a href="http://alt-codes.org/list/">ALT code</a> is 0172. You can<a href="http://alt-codes.org/how/"> type characters using keyboard</a>&nbsp;by holding down the ALT key while typing in the number code on the number pad of your keyboard, then letting go of ALT. &nbsp;Neat!&nbsp;</p>
<p>&nbsp;</p>]]></description><wfw:commentRss>http://jaredprins.com/sas/rss-comments-entry-13629716.xml</wfw:commentRss></item><item><title>SAS Enterprise Miner needs friendlier error messages</title><category>Enterprise Miner</category><category>Error</category><category>SAS</category><category>Text Mining</category><dc:creator>Jared</dc:creator><pubDate>Tue, 08 Nov 2011 17:00:28 +0000</pubDate><link>http://jaredprins.com/sas/2011/11/8/sas-enterprise-miner-needs-friendlier-error-messages.html</link><guid isPermaLink="false">216544:2132401:13631599</guid><description><![CDATA[<div id="_mcePaste">I booted my SAS Text Miner computer and proceeded to launch SAS Enterprise Miner. After setting up my project, I was greeted with this funky error message:</div>
<div></div>
<div id="_mcePaste"></div>
<blockquote>
<div id="_mcePaste">org.omg.CORBA.UNKNOWN: &nbsp;Indeterminate POSAPPLY() failure on server from&nbsp;</div>
<div id="_mcePaste">server method newObject. &nbsp;vmcis: &nbsp;0x0 mine codes: 0 completed: No</div>
<div id="_mcePaste"></div>
<div id="_mcePaste"></div>
<div id="_mcePaste"></div>
<div id="_mcePaste"></div>
<div><span class="thumbnail-image-block ssNonEditable"><span><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2Fpost-images%2FEMerror.JPG%3F__SQUARESPACE_CACHEVERSION%3D1320706523067',112,787);"><img src="http://jaredprins.com/storage/thumbnails/2132400-15018266-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1320706523068" alt="" /></a></span></span></div>
</blockquote>
<div></div>
<div>Thank goodness for the SAS Knowledge Base. It reports this <a href="http://support.sas.com/kb/38/426.html">error as having an expired license</a>. Now why couldn't the error just say that? Even better, why let me go through the trouble of starting to make a new project in the first place? Shouldn't the error come up right away?</div>
<div></div>
<div id="_mcePaste"></div>
<div id="_mcePaste"></div>
<div></div>
<div></div>
<div>Anyway, friendly error messages are always welcome.</div>]]></description><wfw:commentRss>http://jaredprins.com/sas/rss-comments-entry-13631599.xml</wfw:commentRss></item><item><title>SAS Poetry Inspriration</title><category>Funny</category><category>Poetry</category><category>SAS</category><dc:creator>Jared</dc:creator><pubDate>Mon, 07 Nov 2011 20:04:55 +0000</pubDate><link>http://jaredprins.com/sas/2011/11/7/sas-poetry-inspriration.html</link><guid isPermaLink="false">216544:2132401:13629590</guid><description><![CDATA[<p>Chris Hemedinger shared with us some <a href="http://blogs.sas.com/content/sasdummy/2011/10/21/poetry-on-our-own-terms/">SAS Poetry</a>. &nbsp;He's made a call out for anyone inspired to write their own and share. &nbsp;</p>
<p>Thanks to Len's witty "data good looking model", I was inspired with this little ditty below. &nbsp;It uses all the ten most occuring words in the SAS documentation corpus.</p>
<p>&nbsp;</p>
<blockquote>
<div id="_mcePaste">MODELs should VALUE their OPTIONs&nbsp;</div>
<div id="_mcePaste">to DATA SAS programmer often</div>
<div id="_mcePaste">because we're VARI-ABLE&nbsp;</div>
<div id="_mcePaste">to SET nicely a TABLE&nbsp;</div>
<div id="_mcePaste">while PROCessing their STATEMENTs, not block them.</div>
</blockquote>
<p>&nbsp;</p>]]></description><wfw:commentRss>http://jaredprins.com/sas/rss-comments-entry-13629590.xml</wfw:commentRss></item><item><title>Jaredprins.com SAS Blog Changes</title><category>Blogging</category><category>General</category><category>SAS</category><dc:creator>Jared</dc:creator><pubDate>Sun, 06 Nov 2011 04:01:57 +0000</pubDate><link>http://jaredprins.com/sas/2011/11/5/jaredprinscom-sas-blog-changes.html</link><guid isPermaLink="false">216544:2132401:13612359</guid><description><![CDATA[<p>I am making some big changes on my site. &nbsp;Before, all of my blog posts were on the same blog. &nbsp;I've changed this so my content will appear in 3 separate blogs, 2 of which are on the same site.</p>
<p>The first big change is that the site now works by typing in jaredprins.com and not just jaredprins.squarespace.com, although both will work.</p>
<p>The next changes are because my content differ so much. &nbsp;I tend to write about:&nbsp;</p>
<ul>
<li><a href="http://jaredprins.com/sas">SAS</a>&nbsp;- <a href="http://jaredprins.com/sas">http://jaredprins.com/sas</a></li>
<li><a href="http://ubducted.com">Ubducted, a&nbsp;Linux and Open Source</a>&nbsp;- <a href="http://ubducted.com">http://ubducted.com</a></li>
<li><a href="http://jaredprins.com/geek">Geeky stuff about the web, blogging and things of interest</a>&nbsp;- <a href="http://jaredprins.com/geek">http://jaredprins.com/geek</a>&nbsp;(which is the main page)</li>
</ul>
<p>This decision was so my content is better organized to each of those content areas.</p>
<p>There are advantages and disadvantages to this. &nbsp;But I think the separation will only serve readers better. Particularly you SAS folks who just want to read my SAS posts rather than my Geek antics and musings. Having those posts in a separate area will hopefully be more helpful for you.</p>
<p>And yes, I realize my posts tagged with 'SAS' can be listed and searched easily. &nbsp;However, my list of tags and categories was getting out of hand, which was another reason for the site update.</p>
<p>I hope to change the look and feel of the blog too, but that will take some time.&nbsp;</p>
<p>Please update any links to my site accordingly!</p>]]></description><wfw:commentRss>http://jaredprins.com/sas/rss-comments-entry-13612359.xml</wfw:commentRss></item><item><title>I'm on the latest SAS insights newsletter</title><category>News</category><category>SAS</category><dc:creator>Jared</dc:creator><pubDate>Mon, 14 Mar 2011 16:20:09 +0000</pubDate><link>http://jaredprins.com/sas/2011/3/14/im-on-the-latest-sas-insights-newsletter.html</link><guid isPermaLink="false">216544:2132401:10784292</guid><description><![CDATA[<p>Neat! Thanks, SAS!&nbsp;<a href="http://bit.ly/f4aOMI">http://bit.ly/f4aOMI</a></p>]]></description><wfw:commentRss>http://jaredprins.com/sas/rss-comments-entry-10784292.xml</wfw:commentRss></item><item><title>Flashback: My relationship with SAS was inevitable</title><category>General</category><category>SAS</category><dc:creator>Jared</dc:creator><pubDate>Fri, 17 Dec 2010 16:59:26 +0000</pubDate><link>http://jaredprins.com/sas/2010/12/17/flashback-my-relationship-with-sas-was-inevitable.html</link><guid isPermaLink="false">216544:2132401:9761182</guid><description><![CDATA[<p>Some of you folks that work for SAS may find this amusing.&nbsp; I've been in my current job since I finished University in 2001.&nbsp; In about 2005 I began using SAS and was well on my way to becoming the SAS fanatic I am today.<br /><br />Rewind to the year 2000 - my last year of University.&nbsp; My Mom, a systems analyst, was researching online for good companies where I could work.&nbsp; I clearly recall her shouting across the room to me, "You should work for #SAS.&nbsp; They look like a fun company."<br /><br />I often wondered what would have happened if I pursued her suggestion.&nbsp; In any case, I guess it was inevitable that SAS become a part of my life.&nbsp; <br /><br />Merry Christmas.&nbsp; ﻿</p>]]></description><wfw:commentRss>http://jaredprins.com/sas/rss-comments-entry-9761182.xml</wfw:commentRss></item><item><title>SAS EG 4.1 RIP</title><category>Enterprise Guide</category><category>SAS</category><dc:creator>Jared</dc:creator><pubDate>Wed, 01 Dec 2010 07:01:49 +0000</pubDate><link>http://jaredprins.com/sas/2010/12/1/sas-eg-41-rip.html</link><guid isPermaLink="false">216544:2132401:9288916</guid><description><![CDATA[<p>SAS Enterprise Guide software has a built-in expiration date, which is generally five to six years after it has been released. ﻿ <a href="http://support.sas.com/kb/33/359.html">SAS EG 4.1 expired today</a>.&nbsp; RIP, my friend.</p>
<p>But wait?!? &nbsp;What's this? &nbsp;Can it be? &nbsp;You're alive! &nbsp;<a href="http://blogs.sas.com/sasdummy/index.php?/archives/214-SAS-Enterprise-Guide-4.1-its-not-dead-yet.html">At least for a few more years...</a></p>]]></description><wfw:commentRss>http://jaredprins.com/sas/rss-comments-entry-9288916.xml</wfw:commentRss></item><item><title>New SAS Blog: www.SAS-X.com</title><category>Blogging</category><category>R</category><category>SAS</category><dc:creator>Jared</dc:creator><pubDate>Tue, 30 Nov 2010 19:01:37 +0000</pubDate><link>http://jaredprins.com/sas/2010/11/30/new-sas-blog-wwwsas-xcom.html</link><guid isPermaLink="false">216544:2132401:9604074</guid><description><![CDATA[<p>This is a followup to my previous post <a href="http://jaredprins.squarespace.com/blog/2010/10/24/attention-all-sas-bloggers-r-blogger-has-a-question-for-you.html">Attention all SAS Bloggers</a>. &nbsp;<a href="http://r-statistics.com/">Tal Galili</a>&nbsp;from <a href="http://www.r-bloggers.com/">http://www.r-bloggers.com</a>&nbsp;has launched a similar site for SAS bloggers: <a href="http://www.sas-x.com">http://www.sas-x.com</a>. &nbsp;</p>
<p>As I spent more time on the R-bloggers site, it grew on me. &nbsp;I let Tal know and a few days later he emails me and asks that I check out SAS-X.com. &nbsp;While I'd like to think my comment tipped the scale in favour of his decision to pursue the new blog, I have a feeling he was setting it up anyway *grin*.</p>
<p>If you blog about <a href="http://www.sas.com">SAS</a>, please <a href="http://sas-x.com/add-your-blog/">add your site</a>. &nbsp;Don't forget to visit often as there is already a lot of participation on the site. &nbsp;You don't want to miss out! &nbsp;</p>
<p>What I am curious about is, thanks to Tal's connection to the <a href="http://www.r-project.org/">R</a> blogosphere, if some R and SAS collaboration will happen. &nbsp;Wouldn't that be wild?</p>]]></description><wfw:commentRss>http://jaredprins.com/sas/rss-comments-entry-9604074.xml</wfw:commentRss></item><item><title>Edmonton SAS User Group (eSUG) Suggestions</title><category>Facebook</category><category>LinkedIn</category><category>SAS</category><category>Web</category><category>eSUG</category><dc:creator>Jared</dc:creator><pubDate>Mon, 22 Nov 2010 15:01:46 +0000</pubDate><link>http://jaredprins.com/sas/2010/11/22/edmonton-sas-user-group-esug-suggestions.html</link><guid isPermaLink="false">216544:2132401:9336687</guid><description><![CDATA[<p>At <a href="http://www.sas.com/esug">Edmonton SAS User Group (eSUG)</a> meeting last October 27th, 2010, <a href="http://sasoutlier.blogspot.com/">Matt Malczewski</a>&nbsp;delivered his <a href="http://slidesha.re/dnffUP">SAS and Social Media: What's in it for me??? presentation</a>. &nbsp;One question he posed to the group was how Facebook and LinkedIn could or should be used to connect with SAS users.</p>
<p>First, a healthy reminder - Facebook and LinkedIn are both gated communities. That is, one must first join the group to access the content and features. &nbsp;Some people avoid these sites like the plague. &nbsp;Therefore it will always be important to continue with the eSUG SAS page and other open content delivery mechanisms.&nbsp;</p>
<p>My opinion of Facebook is pretty low given all the security issues it has had in the past (and will no doubt continue to have in the future).&nbsp; Facebook was developed from the ground up with the intent to share information.&nbsp; It is difficult to reprogram software to counter that objective after the fact.&nbsp;</p>
<p>That aside, to me Facebook is about <strong>personal</strong>&nbsp;life whereas Linked in is about&nbsp;<strong>professional</strong>&nbsp;life. &nbsp;Having an eSUG Facebook page is like mixing business with pleasure.&nbsp; I don't want my business life to seep into my personal life.&nbsp; On Facebook, personal pictures or stories should never be exposed to my business contacts.&nbsp; LinkedIn's objective is to connect professionals in a professional capacity. &nbsp;That sounds like a winner to me.</p>
<p>But that doesn't mean you drop Facebook altogether. &nbsp;No, it would be wise to have a <strong>presence</strong> on all the different social platforms (a blog, sasCommunity wiki, eSUG SAS page, Twitter, LinkedIn, Facebook, Ning...). The question becomes, which of these do you want to be regularly active? &nbsp;You don't want to try to be active on all of them. &nbsp;The last thing any person needs is yet another platform to manage and contribute to. &nbsp;Also, trying to maintain a presence on too many platforms makes each platform less valuable because it drops your participation rate in each. &nbsp;</p>
<p>It's best to pick a few platforms to be active on and the others to have a presence on. &nbsp;For an eSUG Facebook site,&nbsp;my recommendation is that it be nothing more than a portal to eSUG's main social spaces where the real participation happens. &nbsp;</p>
<p>My distaste for Facebook could be biasing my argument. &nbsp;How do you think Facebook and LinkedIn should be used to connect with SAS users?</p>]]></description><wfw:commentRss>http://jaredprins.com/sas/rss-comments-entry-9336687.xml</wfw:commentRss></item></channel></rss>
