<?xml version="1.0" encoding="utf-8"?>

			<rss version="2.0" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://web.resource.org/cc/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">

			<channel>
			<title>Against All Odds</title>
			<link>http://www.ppshein.net/index.cfm</link>
			<description>A blog for ColdFusion, Android, jQuery, jQueryMobile, Oracle, HL7 and other Web-based programming languages, Web Server like IIS7 and RDMS like Oracle, Microsoft SQL and MySQL.</description>
			<language>en-us</language>
			<pubDate>Sat, 19 May 2012 10:44:35 -0700</pubDate>
			<lastBuildDate>Thu, 10 May 2012 10:11:00 -0700</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>pyaephyoeshein@gmail.com</managingEditor>
			<webMaster>pyaephyoeshein@gmail.com</webMaster>
			<itunes:subtitle></itunes:subtitle>
			<itunes:summary></itunes:summary>
			<itunes:category text="Technology" />
			<itunes:category text="Technology">
				<itunes:category text="Podcasting" />
			</itunes:category>
			<itunes:category text="Technology">
				<itunes:category text="Tech News" />
			</itunes:category>
			<itunes:keywords></itunes:keywords>
			<itunes:author></itunes:author>
			<itunes:owner>
				<itunes:email>pyaephyoeshein@gmail.com</itunes:email>
				<itunes:name></itunes:name>
			</itunes:owner>
			
			<itunes:explicit>no</itunes:explicit>
			
			
			
			
			
			<item>
				<title>Dhamma Cycle is on Google play</title>
				<link>http://www.ppshein.net/index.cfm/2012/5/10/Dhamma-Cycle-is-on-Google-play</link>
				<description>
				
				Last Tuesday, I&apos;ve launched Dhamma Cycle on Google Play. It&apos;s for those buddhism who want to keep in touch with Buddha&apos;s dhamma and want to listen while reciting. It&apos;s my so-called 4th android application.

Please help me to use my application.

&lt;img src=&quot;http://www.ppshein.net/images/Screenshot_2012-05-10-21-47-57[1].png&quot; /&gt;

Download

&lt;a href=&quot;https://play.google.com/store/apps/details?id=com.dhammacycle&amp;feature=search_result#?t=W251bGwsMSwxLDEsImNvbS5kaGFtbWFjeWNsZSJd&quot; target=&quot;_blank&quot;&gt;&lt;h1&gt;LINK&lt;/h1&gt;&lt;/a&gt;
				
				</description>
				
				
				<category>Android</category>
				
				<pubDate>Thu, 10 May 2012 10:11:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/5/10/Dhamma-Cycle-is-on-Google-play</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Parsing List Value in Oracle</title>
				<link>http://www.ppshein.net/index.cfm/2012/4/24/Parsing-List-Value-in-Oracle</link>
				<description>
				
				Being Coldfusion programmer, parsing list value in coldfusion is very simple. If list value is &quot;list1|list2|list3|list4&quot;, we can parse with ListToArray in Coldfusion as follow.

&lt;code&gt;
&lt;cfset MyListValue = &quot;list1|list2|list3|list4&quot;&gt;
&lt;cfset getListDump = ListToArray(MyListValue, &quot;|&quot;, true)&gt;
&lt;cfdump var=&quot;#getListDump#&quot;&gt;
&lt;/code&gt;

Above coding, we must need to assign true for &lt;b&gt;includeEmptyFields&lt;/b&gt; if list value will contain empty. In Oracle, it&apos;s touch to parse and we need to write Oracle function.
				 [More]
				</description>
				
				
				<category>Oracle</category>
				
				<category>Coldfusion</category>
				
				<pubDate>Tue, 24 Apr 2012 12:32:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/4/24/Parsing-List-Value-in-Oracle</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Concatenate numeric and string data field in mssql</title>
				<link>http://www.ppshein.net/index.cfm/2012/4/13/Concatenate-numeric-and-string-data-field-in-mssql</link>
				<description>
				
				Today I&apos;ve found how to concatenate numeric and string format in mssql. As we all know, concatenate two strings in mssql is very simple and well-known formula as follow

&lt;code&gt;
SELECT First_Name + &apos;, &apos; + Last_Name FROM myTable
&lt;/code&gt;
				 [More]
				</description>
				
				
				<category>MsSql</category>
				
				<pubDate>Fri, 13 Apr 2012 11:25:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/4/13/Concatenate-numeric-and-string-data-field-in-mssql</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Simple way to check wifi network</title>
				<link>http://www.ppshein.net/index.cfm/2012/4/10/Simple-way-to-check-wifi-network</link>
				<description>
				
				Today I know how to check wifi network is ON and OFF for andriod. Normally, there is so many checking for wifi network but what I&apos;m gonna show is very simple way to check. First of all, we need to define that we want to use WIFI network in andriod manifest as follow: 

&lt;code&gt;
&lt;uses-permission android:name=&quot;android.permission.ACCESS_WIFI_STATE&quot; /&gt;
&lt;uses-permission android:name=&quot;android.permission.CHANGE_WIFI_STATE&quot; /&gt;
&lt;/code&gt;

Then, we need to add following function whether WIFI network is open or not in device.
				 [More]
				</description>
				
				
				<category>Android</category>
				
				<pubDate>Tue, 10 Apr 2012 01:05:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/4/10/Simple-way-to-check-wifi-network</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Wrap Oracle script</title>
				<link>http://www.ppshein.net/index.cfm/2012/3/25/Wrap-Oracle-script</link>
				<description>
				
				Today, I know how to wrap Oracle objects called stored procedure, functions, views and so on. It&apos;s because I want to make secure for our project source.

How-to-do is very simple.

1) Open common prompt
2) and go to Bin folder under Oracle just like &quot;C:\Oracle\Bin&quot;
3) Then type following script

&lt;code&gt;
C:\Oracle\Bin\wrap iname=/SP/mysp.sql oname=/SP/wrap_mysp.sql
&lt;/code&gt;
				 [More]
				</description>
				
				
				<category>Oracle</category>
				
				<pubDate>Sun, 25 Mar 2012 21:44:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/3/25/Wrap-Oracle-script</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Replace function in SQL</title>
				<link>http://www.ppshein.net/index.cfm/2012/3/6/Replace-function-in-SQL</link>
				<description>
				
				Today I&apos;ve found how Replace function is useful in SQL. Because I need to update all columns of every table in our database. Using Replace is very simple.

&lt;code&gt;
UPDATE &lt;TABLE&gt; SET
columnText = REPLACE (columnText, &apos;StringToFind&apos;, &apos;StringToReplace&apos;)
&lt;/code&gt;

Above query is correct for nvarchar field but when I&apos;m trying to replace for ntext and text field, it&apos;s getting error that &quot;replace isn&apos;t ok for text field&quot;. That&apos;s why I&apos;m goggling and found nice example as follow.

&lt;code&gt;
UPDATE &lt;Table&gt; SET columnText =
REPLACE(SUBSTRING(columnText, 1, DATALENGTH(columnText)), &apos;StringToFind&apos;,&apos;StringToReplace&apos;) 
&lt;/code&gt;
				
				</description>
				
				
				<category>MsSql</category>
				
				<pubDate>Tue, 06 Mar 2012 00:43:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/3/6/Replace-function-in-SQL</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Share tables of schema in same SID</title>
				<link>http://www.ppshein.net/index.cfm/2012/2/27/Share-tables-of-schema-in-same-SID</link>
				<description>
				
				Today, I need to sync data of different schema in same SID (same database). Honestly, I&apos;m not very good at Oracle but I gotta develop this kind of project. That&apos;s why I&apos;ve asked in StackOverFlow and @Luck Woodwords and he replied good solution.

&lt;a href=&quot;http://stackoverflow.com/questions/9452488/how-to-create-oracle-dblink-in-same-sid#comment11957843_9452488&quot; target=&quot;_blank&quot;&gt;http://stackoverflow.com/questions/9452488/how-to-create-oracle-dblink-in-same-sid#comment11957843_9452488&lt;/a&gt;
				 [More]
				</description>
				
				
				<category>Oracle</category>
				
				<pubDate>Mon, 27 Feb 2012 04:05:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/2/27/Share-tables-of-schema-in-same-SID</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Get Javascript value from Coldfusion in same page</title>
				<link>http://www.ppshein.net/index.cfm/2012/2/10/Get-Javascript-value-from-Coldfusion-in-same-page</link>
				<description>
				
				Today, I&apos;ve found funny resolution to get javascript value from Coldfusion in same page without reloading. I&apos;m not sure whether it might be useful or not, but for me it&apos;s kinda useful.

&lt;b&gt;Usage&lt;/b&gt;

&lt;code&gt;
&lt;cfsavecontent variable=&quot;JSvalue&quot;&gt;
	&lt;script&gt;
		var whatisyourname = &quot;ppshein&quot;;
		document.write(whatisyourname);
	&lt;/script&gt;
&lt;/cfsavecontent&gt;

&lt;cfoutput&gt;#JSvalue#&lt;/cfoutput&gt;
&lt;/code&gt;
				
				</description>
				
				
				<category>Javascript</category>
				
				<category>Coldfusion</category>
				
				<pubDate>Fri, 10 Feb 2012 10:05:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/2/10/Get-Javascript-value-from-Coldfusion-in-same-page</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>get Table height with javascript</title>
				<link>http://www.ppshein.net/index.cfm/2012/1/19/get-Table-height-with-javascript</link>
				<description>
				
				Normally, it&apos;s hard to get table height with javascript because javascript cannot read or retrieve table as follow

&lt;code&gt;
&lt;table id=&quot;tableID&quot;&gt;
	&lt;tr&gt;
		&lt;td&gt;Height&lt;/td&gt;
	&lt;/tr&gt;
&lt;/table&gt;

&lt;script&gt;
&lt;!-- 
	getTableHeight = document.getElementById(&quot;tableID&quot;).offsetHeight;
	alert(getTableHeight)
 --&gt;
&lt;/script&gt;
&lt;/code&gt;
				 [More]
				</description>
				
				
				<category>Javascript</category>
				
				<pubDate>Thu, 19 Jan 2012 21:29:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/1/19/get-Table-height-with-javascript</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Backup Oracle database with bat file</title>
				<link>http://www.ppshein.net/index.cfm/2012/1/12/Backup-Oracle-database-with-bat-file</link>
				<description>
				
				Today, I&apos;ve found how to backup/export Oracle database with bat file. I&apos;ve just created it for only one schema first. Why I&apos;m using to import Oracle with bat file because of there is no auto backup feature in Oracle (as far as I know). That&apos;s why  it&apos;s needed to create bat file and integrate with window task scheduler (&lt;b&gt;run daily&lt;/b&gt;).

First of all, open Notepad and save as OracleBackup.bat first. Then, paste following  code into this file.

&lt;code&gt;
@echo off
echo Importing Oracle Start
echo =======================
exp system/password file=C:/ppshein.dmp grants=y owner=&apos;ppshein&apos;;
echo ==========================
echo Importing Oracle End
&lt;/code&gt;
				 [More]
				</description>
				
				
				<category>Oracle</category>
				
				<pubDate>Thu, 12 Jan 2012 08:57:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/1/12/Backup-Oracle-database-with-bat-file</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Coldfusion documentation application is in Android market</title>
				<link>http://www.ppshein.net/index.cfm/2012/1/6/Coldfusion-documentation-application-is-in-Android-market</link>
				<description>
				
				Today, I&apos;m glad to inform to all that my Coldfusion documentation application is in Android market now. I&apos;m planning to add more cool features in it just like tablet version and so on.

&lt;a href=&quot;https://market.android.com/details?id=com.cfdocumentation&quot; target=&quot;_blank&quot;&gt;&lt;h3&gt;Coldfusion Documentation&lt;/h3&gt;&lt;/a&gt;
				
				</description>
				
				
				<category>Android</category>
				
				<category>Coldfusion</category>
				
				<pubDate>Fri, 06 Jan 2012 09:34:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/1/6/Coldfusion-documentation-application-is-in-Android-market</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Android Coldfusion documentation application</title>
				<link>http://www.ppshein.net/index.cfm/2012/1/1/Android-Coldfusion-documentation-application</link>
				<description>
				
				Today, I&apos;ve finalised Android Coldfusion documentation application for Coldfusion developer. This one is my third android application for my Android developer life and enhance more features which not included in my later applications.

In this Coldfusion documentation application, you can search functions and tags of Coldfusion and view all lists of functions and tags either. Likewise, functions and tags which you search are not in this documentation, you can search similar functions and tags of CF.
				 [More]
				</description>
				
				
				<category>Android</category>
				
				<category>Coldfusion</category>
				
				<pubDate>Sun, 01 Jan 2012 09:37:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/1/1/Android-Coldfusion-documentation-application</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>CFIDE with multiple instance</title>
				<link>http://www.ppshein.net/index.cfm/2011/12/24/CFIDE-with-multiple-instance</link>
				<description>
				
				Today I got the problem that I cannot use following sentence in one of my instance.

&lt;code&gt;
&lt;cftextarea skin=&quot;silver&quot; toolbar=&quot;Basic&quot; richtext=&quot;true&quot; name=&quot;body&quot; required=&quot;true&quot;&gt; 
&lt;/code&gt;

And hit JS error and don&apos;t know why. That&apos;s why I just go viewsource and found that CFIDE is missing for one of my CF instances. I cannot convince why Adobe cannot include CFIDE for multiple instances installation. That&apos;s why I know there is two ways to solve this bug of Coldfusion multiple instance installation.
				 [More]
				</description>
				
				
				<category>CF Function</category>
				
				<category>CF Tag</category>
				
				<category>Coldfusion</category>
				
				<pubDate>Sat, 24 Dec 2011 02:13:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2011/12/24/CFIDE-with-multiple-instance</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Review for the uCertify(Zend-PHP5 simulator)</title>
				<link>http://www.ppshein.net/index.cfm/2011/12/15/Review-for-the-uCertifyZendPHP5-simulator</link>
				<description>
				
				&lt;p&gt;&lt;img src=&quot;http://www.ppshein.net/images/php_1.jpg&quot; /&gt;&lt;/p&gt;
&lt;div&gt;
	Well, the first ever simulator I&amp;rsquo;ve got present.Overall it has main functions &amp;nbsp;or menu&lt;/div&gt;
&lt;div&gt;
	&amp;nbsp;&lt;/div&gt;
&lt;ul&gt;
	&lt;li&gt;
		Tests&lt;/li&gt;
	&lt;li&gt;
		Quiz&lt;/li&gt;
	&lt;li&gt;
		Notes&lt;/li&gt;
	&lt;li&gt;
		Reports&lt;/li&gt;
&lt;/ul&gt;
				 [More]
				</description>
				
				
				<category>Exam</category>
				
				<category>PHP</category>
				
				<category>Review</category>
				
				<pubDate>Thu, 15 Dec 2011 08:15:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2011/12/15/Review-for-the-uCertifyZendPHP5-simulator</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Get free exam simulator from uCertify</title>
				<link>http://www.ppshein.net/index.cfm/2011/11/29/Get-free-exam-simulator-from-uCertify</link>
				<description>
				
				&lt;p&gt;
	&amp;nbsp;&lt;/p&gt;
&lt;div&gt;
	&lt;a href=&quot;http://www.ucertify.com/&quot; target=&quot;_blank&quot;&gt;uCertify&lt;/a&gt;, leading IT certification provider company is willing to spring for a license, that&amp;#39;s a full license, for any of their test prep kits for one of my blog readers. The only requirement to get the full license is that you write a review of the software, within 30 days, that will be a guest post here on this blog.&lt;/div&gt;
&lt;div&gt;
	&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
	So, I am offering this to all of my blog readers. Today is Nov 30, 2011. To get a chance to win the prep kit license, &lt;a href=&quot;http://www.ucertify.com/download/&quot; target=&quot;_blank&quot;&gt;go to the ucertify&lt;/a&gt; site and take a look at the available tests. Decide which you would like to take.&lt;/div&gt;
&lt;div&gt;
	&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
	Once you&amp;#39;ve made your choice, come back here and post a comment about which you would like and why you want to take it. Doesn&amp;#39;t have to be anything big; just a couple of sentences is fine.&lt;/div&gt;
&lt;div&gt;
	&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
	Make sure you either leave a real email address or you are signed in when you leave the comment. You don&amp;#39;t need to leave your email address in the text of your comment if you are signed in. I can send you a message via the it toolbox messaging system in that case.&lt;/div&gt;
&lt;div&gt;
	&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
	I will randomly choose the winner from the comments on Dec 10, 2011. So, you have about 10 days to post a comment.&lt;/div&gt;
&lt;div&gt;
	&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
	Once I have notified the winner and they agree to review the software in a guest post here on this blog, I will give the info to Ucertify and they&amp;#39;ll hand out the license.&lt;/div&gt;
&lt;div&gt;
	&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
	The guest post doesn&amp;#39;t need to be huge. At least a few hundred words which is just a page or two of double spaced text. As an example, this &amp;nbsp;blog post is over 400 words. I&amp;#39;ll be glad to proofread and edit it if you would like me to mail me (pyaephyoeshein[at]gmail[dot]com).&lt;/div&gt;
				
				</description>
				
				
				<category>uCertify</category>
				
				<category>Oracle</category>
				
				<category>PHP</category>
				
				<category>Coldfusion</category>
				
				<category>MsSql</category>
				
				<pubDate>Tue, 29 Nov 2011 23:15:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2011/11/29/Get-free-exam-simulator-from-uCertify</guid>
				
				
			</item>
			
		 	
			</channel></rss>
