Oracle PeopleSoft

Flattening PeopleSoft Summer Tree

If you need to denormalize or flatten PeopleSoft summer trees (trees with leaves) in your data warehouse, here is an ETL process for you to follow. Typical PeopleSoft summer tree structure SQL to flatten the PeopleSoft summer tree Substitute TREE_NAME with the name(s) of your summer tree(s) on line 54 below. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 SELECT SQ4....

February 20, 2012
Blackjack

Blackjack Strategy Card

Learning how to play blackjack using a basic strategy card is relatively easy given the willingness to do so. Basic strategy is the optimal set of rules to follow for playing blackjack. Using simple basic strategy you will cut the house advantage for blackjack to about 0.50%. A simple blackjack strategy card is often used for memorization and as a reference at the tables when allowed by the casino. You should use a blackjack strategy card to make decisions on playing each hand in the following order: Insurance Pair Splitting Double Down (look for soft hands first) Standing (look for soft hands first) 2 rules for insurance: NEVER take Insurance NEVER take Even Money when you have a blackjack, it is the same as insurance 6 rules for pair splitting: Always SPLIT A’s and 8’s NEVER split 4’s, 5’s, or T’s SPLIT 2’s and 3’s vs....

April 11, 2011

WordPress nginx proxy cache

If you are running WordPress on a VPS or dedicated server, you may want to install the nginx HTTP server to act as a proxy cache for WordPress. This is a guide for building nginx from source so that 2 modules can be added. The first module allows purging content from the proxy cache and the second module allows limiting the max concurrent requests to apache. This guide assumes you are running:...

October 5, 2010