<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>pradeepwiki</title>
	<atom:link href="https://pradeepwiki.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://pradeepwiki.wordpress.com</link>
	<description>Conqueror Wisdom!</description>
	<lastBuildDate>Thu, 23 Jun 2016 12:33:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='pradeepwiki.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>https://secure.gravatar.com/blavatar/ab94545cefca9a336d4046332456fb2d?s=96&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>pradeepwiki</title>
		<link>https://pradeepwiki.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="https://pradeepwiki.wordpress.com/osd.xml" title="pradeepwiki" />
	<atom:link rel='hub' href='https://pradeepwiki.wordpress.com/?pushpress=hub'/>
	<item>
		<title>Blue Green Deployment</title>
		<link>https://pradeepwiki.wordpress.com/2013/09/16/blue-green-deployment/</link>
		<comments>https://pradeepwiki.wordpress.com/2013/09/16/blue-green-deployment/#respond</comments>
		<pubDate>Mon, 16 Sep 2013 06:31:15 +0000</pubDate>
		<dc:creator><![CDATA[pradeepwiki]]></dc:creator>
				<category><![CDATA[Best Practices]]></category>

		<guid isPermaLink="false">http://pradeepwiki.wordpress.com/2013/09/16/blue-green-deployment/</guid>
		<description><![CDATA[This is something I learnt today. Links http://martinfowler.com/bliki/BlueGreenDeployment.html The above article, explains how to do a automated deployment. Its great article. It takes the software from final stages of testing to live production with great confidence. Read on to enjoy/appreciate this strategy<img alt="" border="0" src="https://pixel.wp.com/b.gif?host=pradeepwiki.wordpress.com&#038;blog=22335651&#038;post=348&#038;subd=pradeepwiki&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>This is something I learnt today.</p>
<p>Links <a href="http://martinfowler.com/bliki/BlueGreenDeployment.html"> http://martinfowler.com/bliki/BlueGreenDeployment.html</a></p>
<p>The above article, explains how to do a automated deployment. Its great article. It takes the software from final stages of testing to live production with great confidence. Read on to enjoy/appreciate this strategy</p><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pradeepwiki.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pradeepwiki.wordpress.com/348/" /></a> <img alt="" border="0" src="https://pixel.wp.com/b.gif?host=pradeepwiki.wordpress.com&#038;blog=22335651&#038;post=348&#038;subd=pradeepwiki&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://pradeepwiki.wordpress.com/2013/09/16/blue-green-deployment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/94ce1e0919c3de9f8e2b4442b5232dad?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pradeepwiki</media:title>
		</media:content>
	</item>
		<item>
		<title>Maven Fork Options and Parallel Test Execution</title>
		<link>https://pradeepwiki.wordpress.com/2013/07/30/maven-fork-options-and-parallel-test-execution-2/</link>
		<comments>https://pradeepwiki.wordpress.com/2013/07/30/maven-fork-options-and-parallel-test-execution-2/#respond</comments>
		<pubDate>Tue, 30 Jul 2013 03:39:01 +0000</pubDate>
		<dc:creator><![CDATA[pradeepwiki]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pradeepwiki.wordpress.com/2013/07/30/maven-fork-options-and-parallel-test-execution-2/</guid>
		<description><![CDATA[I read something new this morning, and came across; how to run Maven tests in parallel. mvn -T 1 clean install -DcheckCoverage=true -Djunit.maxMemory=2048m Parallel Test Execution Run maven tests in parallel execution. Requires to a parallel configuration in pom.xml for the artifact maven-surefire-plugin. &#60;plugins&#62; &#60;plugin&#62; &#60;groupId&#62;org.apache.maven.plugins&#60;/groupId&#62; &#60;artifactId&#62;maven-surefire-plugin&#60;/artifactId&#62; &#60;version&#62;2.15&#60;/version&#62; &#60;configuration&#62; &#60;parallel&#62;methods&#60;/parallel&#62; &#60;threadCount&#62;10&#60;/threadCount&#62; &#60;/configuration&#62; &#60;/plugin&#62; &#60;/plugins&#62; Parallel [&#8230;]<img alt="" border="0" src="https://pixel.wp.com/b.gif?host=pradeepwiki.wordpress.com&#038;blog=22335651&#038;post=347&#038;subd=pradeepwiki&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I read something new this morning, and came across; how to run Maven tests in parallel.</p>
<p>mvn -T 1 clean install -DcheckCoverage=true -Djunit.maxMemory=2048m</p>
<p><strong><em>Parallel Test Execution</em></strong></p>
<p>Run maven tests in parallel execution. Requires to a parallel configuration in pom.xml for the artifact maven-surefire-plugin.</p>
<p>&lt;plugins&gt;</p>
<p>&lt;plugin&gt;</p>
<p>&lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;</p>
<p>&lt;artifactId&gt;maven-surefire-plugin&lt;/artifactId&gt;</p>
<p>&lt;version&gt;2.15&lt;/version&gt;</p>
<p>&lt;configuration&gt;</p>
<p>&lt;parallel&gt;methods&lt;/parallel&gt;</p>
<p>&lt;threadCount&gt;10&lt;/threadCount&gt;</p>
<p>&lt;/configuration&gt;</p>
<p>&lt;/plugin&gt;</p>
<p>&lt;/plugins&gt;</p>
<p><strong><em>Parallel Surefire Execution in Multi-Module Maven Parallel Build</em></strong></p>
<p>mvn -T 1 clean install -DcheckCoverage=true -Djunit.maxMemory=2048m</p>
<p>There are many more useful features; need to read about them.</p>
<p>Forked Test Execution</p>
<p>Combining forkCount and parallel</p>
<p>Migrating the Deprecated forkMode Parameter to forkCount and reuseForks</p>
<p>Reference link: <a href="http://maven.apache.org/surefire/maven-surefire-plugin/examples/fork-options-and-parallel-execution.html"> http://maven.apache.org/surefire/maven-surefire-plugin/examples/fork-options-and-parallel-execution.html</a></p>
<p>This email is confidential and subject to important disclaimers and conditions including on offers for the purchase or sale of securities, accuracy and completeness of information, viruses, confidentiality, legal privilege, and legal entity disclaimers, available at <a href="http://www.jpmorgan.com/pages/disclosures/email.">http://www.jpmorgan.com/pages/disclosures/email.</a></p><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pradeepwiki.wordpress.com/347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pradeepwiki.wordpress.com/347/" /></a> <img alt="" border="0" src="https://pixel.wp.com/b.gif?host=pradeepwiki.wordpress.com&#038;blog=22335651&#038;post=347&#038;subd=pradeepwiki&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://pradeepwiki.wordpress.com/2013/07/30/maven-fork-options-and-parallel-test-execution-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/94ce1e0919c3de9f8e2b4442b5232dad?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pradeepwiki</media:title>
		</media:content>
	</item>
		<item>
		<title>Maven Fork Options and Parallel Test Execution</title>
		<link>https://pradeepwiki.wordpress.com/2013/07/30/maven-fork-options-and-parallel-test-execution/</link>
		<comments>https://pradeepwiki.wordpress.com/2013/07/30/maven-fork-options-and-parallel-test-execution/#respond</comments>
		<pubDate>Tue, 30 Jul 2013 03:35:56 +0000</pubDate>
		<dc:creator><![CDATA[pradeepwiki]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pradeepwiki.wordpress.com/2013/07/30/maven-fork-options-and-parallel-test-execution/</guid>
		<description><![CDATA[I read something new this morning, and came across; how to run Maven tests in parallel. mvn -T 1 clean install -DcheckCoverage=true -Djunit.maxMemory=2048m Parallel Test Execution<img alt="" border="0" src="https://pixel.wp.com/b.gif?host=pradeepwiki.wordpress.com&#038;blog=22335651&#038;post=346&#038;subd=pradeepwiki&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I read something new this morning, and came across; how to run Maven tests in parallel.</p>
<p>mvn -T 1 clean install -DcheckCoverage=true -Djunit.maxMemory=2048m</p>
<p><strong><em>Parallel Test Execution</em></strong></p><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pradeepwiki.wordpress.com/346/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pradeepwiki.wordpress.com/346/" /></a> <img alt="" border="0" src="https://pixel.wp.com/b.gif?host=pradeepwiki.wordpress.com&#038;blog=22335651&#038;post=346&#038;subd=pradeepwiki&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://pradeepwiki.wordpress.com/2013/07/30/maven-fork-options-and-parallel-test-execution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/94ce1e0919c3de9f8e2b4442b5232dad?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pradeepwiki</media:title>
		</media:content>
	</item>
		<item>
		<title>Maven Command Line Options</title>
		<link>https://pradeepwiki.wordpress.com/2013/02/04/maven-command-line-options/</link>
		<comments>https://pradeepwiki.wordpress.com/2013/02/04/maven-command-line-options/#respond</comments>
		<pubDate>Mon, 04 Feb 2013 03:13:39 +0000</pubDate>
		<dc:creator><![CDATA[pradeepwiki]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pradeepwiki.wordpress.com/2013/02/04/maven-command-line-options/</guid>
		<description><![CDATA[http://www.sonatype.com/books/mvnref-book/reference/running-sect-options.html<img alt="" border="0" src="https://pixel.wp.com/b.gif?host=pradeepwiki.wordpress.com&#038;blog=22335651&#038;post=345&#038;subd=pradeepwiki&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.sonatype.com/books/mvnref-book/reference/running-sect-options.html">http://www.sonatype.com/books/mvnref-book/reference/running-sect-options.html</a></p><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pradeepwiki.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pradeepwiki.wordpress.com/345/" /></a> <img alt="" border="0" src="https://pixel.wp.com/b.gif?host=pradeepwiki.wordpress.com&#038;blog=22335651&#038;post=345&#038;subd=pradeepwiki&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://pradeepwiki.wordpress.com/2013/02/04/maven-command-line-options/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/94ce1e0919c3de9f8e2b4442b5232dad?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pradeepwiki</media:title>
		</media:content>
	</item>
		<item>
		<title>What is Explain Plan? How to Interpret it?</title>
		<link>https://pradeepwiki.wordpress.com/2012/10/29/what-is-explain-plan-how-to-interpret-it/</link>
		<comments>https://pradeepwiki.wordpress.com/2012/10/29/what-is-explain-plan-how-to-interpret-it/#respond</comments>
		<pubDate>Mon, 29 Oct 2012 11:58:46 +0000</pubDate>
		<dc:creator><![CDATA[pradeepwiki]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pradeepwiki.wordpress.com/2012/10/29/what-is-explain-plan-how-to-interpret-it/</guid>
		<description><![CDATA[http://www.akadia.com/services/ora_interpreting_explain_plan.html<img alt="" border="0" src="https://pixel.wp.com/b.gif?host=pradeepwiki.wordpress.com&#038;blog=22335651&#038;post=344&#038;subd=pradeepwiki&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.akadia.com/services/ora_interpreting_explain_plan.html">http://www.akadia.com/services/ora_interpreting_explain_plan.html</a></p><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pradeepwiki.wordpress.com/344/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pradeepwiki.wordpress.com/344/" /></a> <img alt="" border="0" src="https://pixel.wp.com/b.gif?host=pradeepwiki.wordpress.com&#038;blog=22335651&#038;post=344&#038;subd=pradeepwiki&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://pradeepwiki.wordpress.com/2012/10/29/what-is-explain-plan-how-to-interpret-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/94ce1e0919c3de9f8e2b4442b5232dad?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pradeepwiki</media:title>
		</media:content>
	</item>
		<item>
		<title>ISO 8601 Date and Time Format</title>
		<link>https://pradeepwiki.wordpress.com/2012/10/12/iso-8601-date-and-time-format/</link>
		<comments>https://pradeepwiki.wordpress.com/2012/10/12/iso-8601-date-and-time-format/#respond</comments>
		<pubDate>Fri, 12 Oct 2012 07:13:45 +0000</pubDate>
		<dc:creator><![CDATA[pradeepwiki]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pradeepwiki.wordpress.com/2012/10/12/iso-8601-date-and-time-format/</guid>
		<description><![CDATA[ISO 8601 Date and Time Format &#8211; International standard for dates and times representation. e.g Year: YYYY (eg 1997) Year and month: YYYY-MM (eg 1997-07) Complete date: YYYY-MM-DD (eg 1997-07-16) Complete date plus hours and minutes: YYYY-MM-DDThh:mmTZD (eg 1997-07-16T19:20+01:00) Complete date plus hours, minutes and seconds: YYYY-MM-DDThh:mm:ssTZD (eg 1997-07-16T19:20:30+01:00) Complete date plus hours, minutes, seconds [&#8230;]<img alt="" border="0" src="https://pixel.wp.com/b.gif?host=pradeepwiki.wordpress.com&#038;blog=22335651&#038;post=343&#038;subd=pradeepwiki&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>ISO 8601 Date and Time Format &#8211; International standard for dates and times representation.</p>
<p>e.g</p>
<p>Year:</p>
<p>YYYY (eg 1997)</p>
<p>Year and month:</p>
<p>YYYY-MM (eg 1997-07)</p>
<p>Complete date:</p>
<p>YYYY-MM-DD (eg 1997-07-16)</p>
<p>Complete date plus hours and minutes:</p>
<p>YYYY-MM-DDThh:mmTZD (eg 1997-07-16T19:20+01:00)</p>
<p>Complete date plus hours, minutes and seconds:</p>
<p>YYYY-MM-DDThh:mm:ssTZD (eg 1997-07-16T19:20:30+01:00)</p>
<p>Complete date plus hours, minutes, seconds and a decimal fraction of a</p>
<p>second</p>
<p>YYYY-MM-DDThh:mm:ss.sTZD (eg 1997-07-16T19:20:30.45+01:00)</p>
<p>where:</p>
<p>YYYY = four-digit year</p>
<p>MM = two-digit month (01=January, etc.)</p>
<p>DD = two-digit day of month (01 through 31)</p>
<p>hh = two digits of hour (00 through 23) (am/pm NOT allowed)</p>
<p>mm = two digits of minute (00 through 59)</p>
<p>ss = two digits of second (00 through 59)</p>
<p>s = one or more digits representing a decimal fraction of a second</p>
<p>TZD = time zone designator (Z or +hh:mm or -hh:mm)</p>
<p>T = Denotes the start of time</p>
<p>1994-11-05T08:15:30-05:00 corresponds to November 5, 1994, 8:15:30 am, US Eastern Standard Time.</p>
<p>1994-11-05T13:15:30Z corresponds to the same instant.</p><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pradeepwiki.wordpress.com/343/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pradeepwiki.wordpress.com/343/" /></a> <img alt="" border="0" src="https://pixel.wp.com/b.gif?host=pradeepwiki.wordpress.com&#038;blog=22335651&#038;post=343&#038;subd=pradeepwiki&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://pradeepwiki.wordpress.com/2012/10/12/iso-8601-date-and-time-format/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/94ce1e0919c3de9f8e2b4442b5232dad?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pradeepwiki</media:title>
		</media:content>
	</item>
		<item>
		<title>Passing Java array to Oracle Stored Procedure using Sql array</title>
		<link>https://pradeepwiki.wordpress.com/2012/09/05/passing-java-array-to-oracle-stored-procedure-using-sql-array/</link>
		<comments>https://pradeepwiki.wordpress.com/2012/09/05/passing-java-array-to-oracle-stored-procedure-using-sql-array/#comments</comments>
		<pubDate>Wed, 05 Sep 2012 06:59:19 +0000</pubDate>
		<dc:creator><![CDATA[pradeepwiki]]></dc:creator>
				<category><![CDATA[DataBase]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Technicals]]></category>

		<guid isPermaLink="false">http://pradeepwiki.wordpress.com/2012/09/05/passing-java-array-to-oracle-stored-procedure-using-sql-array/</guid>
		<description><![CDATA[SQL to create Oracle Sql Array. Input and output array. CREATE TYPE array_input AS TABLE OF VARCHAR2 (100);CREATE TYPE array_output AS TABLE OF VARCHAR2 (100); Stored procedure which receives array from java and returns sql array to java. CREATE OR REPLACE PROCEDURE arraydescriptorproc (p_array_in IN array_input, p_arr_out OUT array_output)AS v_count NUMBER;BEGIN p_arr_out := NEW array_output [&#8230;]<img alt="" border="0" src="https://pixel.wp.com/b.gif?host=pradeepwiki.wordpress.com&#038;blog=22335651&#038;post=338&#038;subd=pradeepwiki&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><strong>SQL to create Oracle Sql Array. Input and output array.</strong></p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top"><strong>CREATE TYPE array_input AS TABLE OF VARCHAR2 (100);</strong><strong>CREATE TYPE array_output AS TABLE OF VARCHAR2 (100);</strong></td>
</tr>
</tbody>
</table>
<p><strong>Stored procedure which receives array from java and returns sql array to java.</strong></p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top"><strong>CREATE OR REPLACE PROCEDURE arraydescriptorproc (p_array_in IN array_input, p_arr_out OUT array_output)</strong><strong>AS</strong><strong> v_count NUMBER;</strong><strong>BEGIN</strong></p>
<p><strong> p_arr_out := NEW array_output ();</strong></p>
<p><strong> FOR i IN 1 .. p_array_in.COUNT</strong></p>
<p><strong> LOOP</strong></p>
<p><strong> p_arr_out.EXTEND;</strong></p>
<p><strong> DBMS_OUTPUT.put_line (p_array_in (i));</strong></p>
<p><strong> p_arr_out (i) := p_array_in (i);</strong></p>
<p><strong> END LOOP;</strong></p>
<p><strong>END;</strong></p>
<p><strong>/</strong></td>
</tr>
</tbody>
</table>
<p><strong>Java Program to pass java array to sql array which is used in oracle stored procedure. This program also fetches the value from oracle sql array to java array.</strong></p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top">package pradeep;</p>
<p>import java.sql.CallableStatement;import java.sql.Connection;</p>
<p>import java.sql.DriverManager;</p>
<p>import java.sql.SQLException;</p>
<p>import oracle.jdbc.OracleCallableStatement;</p>
<p>import oracle.jdbc.internal.OracleTypes;</p>
<p>import oracle.sql.ARRAY;</p>
<p>import oracle.sql.ArrayDescriptor;</p>
<p>public class TestArrayDescriptor {</p>
<p>public static void main(String args[]) {</p>
<p>try {</p>
<p>Connection connection = getConnection();</p>
<p>String inputArray[] = { &#8220;APPLE&#8221;, &#8220;MANGO&#8221;, &#8220;WINE&#8221;, &#8220;BEER&#8221; };</p>
<p>CallableStatement st = executeStoredProcedure(connection, inputArray);</p>
<p>printOutputArrayFromStoreProcedure(st);</p>
<p>} catch (Exception e) {</p>
<p>e.printStackTrace();</p>
<p>}</p>
<p>}</p>
<p>private static Connection getConnection() throws ClassNotFoundException, SQLException {</p>
<p>Class.forName(&#8220;oracle.jdbc.OracleDriver&#8221;);</p>
<p>Connection connection = DriverManager.getConnection(&#8220;jdbc:oracle:thin:url &#8220;, &#8220;SCPP&#8221;, &#8220;Password11g&#8221;);</p>
<p>return connection;</p>
<p>}</p>
<p>private static void printOutputArrayFromStoreProcedure(CallableStatement st) throws SQLException {</p>
<p>ARRAY arr = ((OracleCallableStatement) st).getARRAY(2);</p>
<p>String[] outputArray = (String[]) (arr.getArray());</p>
<p>for (String str : outputArray) {</p>
<p>System.out.println(&#8220;Output: &#8221; + str);</p>
<p>}</p>
<p>}</p>
<p>private static CallableStatement executeStoredProcedure(Connection connection, String[] inputArray) throws SQLException {</p>
<p>ArrayDescriptor des = ArrayDescriptor.createDescriptor(&#8220;ARRAY_INPUT&#8221;, connection);</p>
<p>ARRAY array_input = new ARRAY(des, connection, inputArray);</p>
<p>CallableStatement st = connection.prepareCall(&#8220;call arraydescriptorproc(?,?)&#8221;);</p>
<p>st.setArray(1, array_input);</p>
<p>st.registerOutParameter(2, OracleTypes.ARRAY, &#8220;ARRAY_OUTPUT&#8221;);</p>
<p>st.execute();</p>
<p>return st;</p>
<p>}</p>
<p>}</td>
</tr>
</tbody>
</table><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pradeepwiki.wordpress.com/338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pradeepwiki.wordpress.com/338/" /></a> <img alt="" border="0" src="https://pixel.wp.com/b.gif?host=pradeepwiki.wordpress.com&#038;blog=22335651&#038;post=338&#038;subd=pradeepwiki&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://pradeepwiki.wordpress.com/2012/09/05/passing-java-array-to-oracle-stored-procedure-using-sql-array/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/94ce1e0919c3de9f8e2b4442b5232dad?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pradeepwiki</media:title>
		</media:content>
	</item>
		<item>
		<title>ScheduledExecutorService &#8211; Java program example</title>
		<link>https://pradeepwiki.wordpress.com/2012/02/15/scheduledexecutorservice-java-program-example/</link>
		<comments>https://pradeepwiki.wordpress.com/2012/02/15/scheduledexecutorservice-java-program-example/#comments</comments>
		<pubDate>Wed, 15 Feb 2012 15:56:02 +0000</pubDate>
		<dc:creator><![CDATA[pradeepwiki]]></dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Technicals]]></category>

		<guid isPermaLink="false">http://pradeepwiki.wordpress.com/2012/02/15/scheduledexecutorservice-java-program-example/</guid>
		<description><![CDATA[An ExecutorService that can schedule commands to run after a given delay, or to execute periodically. Below is a Java program to schedule a service which periodically beeps every 10seconds for one hour. import static java.util.concurrent.TimeUnit.SECONDS; import java.util.concurrent.Executors; import java.util.concurrent.ScheduledExecutorService; import java.util.concurrent.ScheduledFuture; class BeeperControl { private final static ScheduledExecutorService scheduler = Executors.newScheduledThreadPool(1); public static void [&#8230;]<img alt="" border="0" src="https://pixel.wp.com/b.gif?host=pradeepwiki.wordpress.com&#038;blog=22335651&#038;post=336&#038;subd=pradeepwiki&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>An ExecutorService that can schedule commands to run after a given delay, or to execute periodically.</p>
<p>Below is a Java program to schedule a service which periodically beeps every 10seconds for one hour.</p>
<p>import static java.util.concurrent.TimeUnit.SECONDS;<br />
import java.util.concurrent.Executors;<br />
import java.util.concurrent.ScheduledExecutorService;<br />
import java.util.concurrent.ScheduledFuture;</p>
<p>class BeeperControl {<br />
	private final static ScheduledExecutorService scheduler = Executors.newScheduledThreadPool(1);</p>
<p>	public static void main(String[] args){<br />
		beepForAnHour();<br />
	}</p>
<p>	public static void beepForAnHour() {<br />
		final Runnable beeper = new Runnable() {<br />
			public void run() {<br />
				System.out.println(&#8220;beep&#8221;);<br />
			}<br />
		};<br />
		final ScheduledFuture beeperHandle = scheduler.scheduleAtFixedRate(beeper, 10, 10, SECONDS);</p>
<p>		scheduler.schedule(new Runnable() {<br />
			public void run() {<br />
				beeperHandle.cancel(true);<br />
			}<br />
		}, 60 * 60, SECONDS);<br />
	}<br />
}</p><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pradeepwiki.wordpress.com/336/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pradeepwiki.wordpress.com/336/" /></a> <img alt="" border="0" src="https://pixel.wp.com/b.gif?host=pradeepwiki.wordpress.com&#038;blog=22335651&#038;post=336&#038;subd=pradeepwiki&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://pradeepwiki.wordpress.com/2012/02/15/scheduledexecutorservice-java-program-example/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/94ce1e0919c3de9f8e2b4442b5232dad?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pradeepwiki</media:title>
		</media:content>
	</item>
		<item>
		<title>Java Decompiler</title>
		<link>https://pradeepwiki.wordpress.com/2012/02/13/java-decompiler/</link>
		<comments>https://pradeepwiki.wordpress.com/2012/02/13/java-decompiler/#respond</comments>
		<pubDate>Mon, 13 Feb 2012 15:53:21 +0000</pubDate>
		<dc:creator><![CDATA[pradeepwiki]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pradeepwiki.wordpress.com/2012/02/13/java-decompiler/</guid>
		<description><![CDATA[http://java.decompiler.free.fr/?q=jdeclipse Click the above link. It’s a easy to use eclipse Plugin Java Decompiler.<img alt="" border="0" src="https://pixel.wp.com/b.gif?host=pradeepwiki.wordpress.com&#038;blog=22335651&#038;post=335&#038;subd=pradeepwiki&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://java.decompiler.free.fr/?q=jdeclipse">http://java.decompiler.free.fr/?q=jdeclipse</a></p>
<p>Click the above link.</p>
<p>It’s a easy to use eclipse Plugin Java Decompiler.</p><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pradeepwiki.wordpress.com/335/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pradeepwiki.wordpress.com/335/" /></a> <img alt="" border="0" src="https://pixel.wp.com/b.gif?host=pradeepwiki.wordpress.com&#038;blog=22335651&#038;post=335&#038;subd=pradeepwiki&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://pradeepwiki.wordpress.com/2012/02/13/java-decompiler/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/94ce1e0919c3de9f8e2b4442b5232dad?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pradeepwiki</media:title>
		</media:content>
	</item>
		<item>
		<title>Life Cycle of a Trade/End-to-End</title>
		<link>https://pradeepwiki.wordpress.com/2012/01/11/life-cycle-of-a-tradeend-to-end/</link>
		<comments>https://pradeepwiki.wordpress.com/2012/01/11/life-cycle-of-a-tradeend-to-end/#respond</comments>
		<pubDate>Wed, 11 Jan 2012 18:27:54 +0000</pubDate>
		<dc:creator><![CDATA[pradeepwiki]]></dc:creator>
				<category><![CDATA[Financials]]></category>

		<guid isPermaLink="false">http://pradeepwiki.wordpress.com/2012/01/11/life-cycle-of-a-tradeend-to-end/</guid>
		<description><![CDATA[1. Client Onboarding: &#8211; Sign ISDA Master agreement and CSA Credit support annex. &#8211; Collect Clients data and store in reference data. &#8211; KYC, SPN is created. &#8211; Collateral agreements and margins are agreed. &#8211; Credit Rating checks are performed. 2. Trade Execution: Occurs when traders buy or sell a financial product. This may/may not [&#8230;]<img alt="" border="0" src="https://pixel.wp.com/b.gif?host=pradeepwiki.wordpress.com&#038;blog=22335651&#038;post=333&#038;subd=pradeepwiki&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>1. <strong>Client Onboarding:</strong><br />
&#8211; Sign ISDA Master agreement and CSA Credit support annex.<br />
&#8211; Collect Clients data and store in reference data.<br />
&#8211; KYC, SPN is created.<br />
&#8211; Collateral agreements and margins are agreed.<br />
&#8211; Credit Rating checks are performed.<br />
2<strong>. Trade Execution:</strong> Occurs when traders buy or sell a financial product. This may/may not involve a exchange.<br />
3. <strong>Trade Capture/Support:</strong> The trades are input into a relevant risk management system.<br />
4. <strong>Profile &amp; Loss/Risk Reporting:</strong> How much money we made or lost. Realized and Unrealized profit/loss are calculated.<br />
5. <strong>Confirmation:</strong> The details of trade are sent to clients for confirmation. It may electronic email/phone confirmations.<br />
6. <strong>Settlement:</strong> Involes pre/actual/post settlement activities.<br />
7. <strong>Accounting:</strong> GLRS general ledger reconcilation process is the process of reconciliating the month end ledger balances to the sub-ledger and source transaction system.</p><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pradeepwiki.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pradeepwiki.wordpress.com/333/" /></a> <img alt="" border="0" src="https://pixel.wp.com/b.gif?host=pradeepwiki.wordpress.com&#038;blog=22335651&#038;post=333&#038;subd=pradeepwiki&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://pradeepwiki.wordpress.com/2012/01/11/life-cycle-of-a-tradeend-to-end/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/94ce1e0919c3de9f8e2b4442b5232dad?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pradeepwiki</media:title>
		</media:content>
	</item>
	</channel>
</rss>
