Shane on April 20th, 2006

Hilarious.

Continue reading about Beaver Overthinking Dam

Shane on April 13th, 2006

… you just got to have some. When I was at Delani — now SwiftK — there was, I thought, an unhealthy obsession with patents. The line was that the only way to get investors was to have patents. VC Fred Wilson weighs in on software patents today. He suggests that the best offense is [...]

Continue reading about Patents are Like Nuclear Bombs…

Shane on April 13th, 2006

I told myself I would never blog about blogging. It’s like watching a movie about the making of a movie. To the outsider, it just seems like self-gratification that you’d rather not watch. In this case, at least you’re not paying for it. I had a conversation with a colleague today about blogging. This person [...]

Continue reading about Blogging and Organizational Communication

Shane on April 12th, 2006

I always seem to get this wrong, so please excuse this note to myself. SELECT gpa, DENSE_RANK() OVER (PARTITION BY strm, class_nbr ORDER BY gpa DESC) class_rank

Continue reading about Analytic Functions

Shane on April 12th, 2006

Since the PeopleSoft table naming convention is to use as many underscores as possible, I’ve run into many snafus since the underscore is a special character in SQL. Clark (via Linda) showed us some ways around this. select count(*) from dba_tables where table_name like ‘%\_UM’ escape ‘\’ COUNT(*) ———- 113 1 row selected This query, [...]

Continue reading about Special SQL Characters

Shane on April 12th, 2006

Some food for thought when working with NULL values. select count(*) from ps_dwsa_prog_dtl COUNT(*) ———- 657662 1 row selected select count(*) from ps_dwsa_prog_dtl where acad_sub_plan =’13′ COUNT(*) ———- 13 1 row selected select count(*) from ps_dwsa_prog_dtl where acad_sub_plan ’13′ COUNT(*) ———- 148559 1 row selected select count(*) from ps_dwsa_prog_dtl where acad_sub_plan is null COUNT(*) ———- [...]

Continue reading about NULL values and NOT EQUALS operator

Shane on April 12th, 2006

I’m running the new nightly build of Thunderbird 3.0. If you are using Thunderbird and don’t have it installed. Consider it for two reasons: (1) Folder Views: Including Favorite Folders and Unread Folders I used Favorite Folders all the time in Outlook and have really missed it since the switch. I have so many IMAP [...]

Continue reading about Thunderbird 3.0