<?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>Oracle Federal Applications &#187; Tools</title>
	<atom:link href="http://oraclefedapps.com/tag/tools/feed/" rel="self" type="application/rss+xml" />
	<link>http://oraclefedapps.com</link>
	<description>Sharing info, perspectives and solutions in support of the Oracle Federal E-Business Suite/Financials Community.</description>
	<lastBuildDate>Thu, 02 Feb 2012 15:43:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='oraclefedapps.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Oracle Federal Applications &#187; Tools</title>
		<link>http://oraclefedapps.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://oraclefedapps.com/osd.xml" title="Oracle Federal Applications" />
	<atom:link rel='hub' href='http://oraclefedapps.com/?pushpress=hub'/>
		<item>
		<title>Improving SQL Developer Performance and Eliminating Screen Redraw Issues on Vista</title>
		<link>http://oraclefedapps.com/2009/03/28/improving-sql-developer-performance-and-eliminating-screen-redraw-issues-on-vista/</link>
		<comments>http://oraclefedapps.com/2009/03/28/improving-sql-developer-performance-and-eliminating-screen-redraw-issues-on-vista/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 22:27:25 +0000</pubDate>
		<dc:creator>Larry.Baugh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[SQLDeveloper]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://oraclefedapps.com/?p=238</guid>
		<description><![CDATA[This isn&#8217;t anything Federal-specific, but I just wanted to share it since it has definitely made my day.  I&#8217;ve been dealing with some SQL Developer performance issues for a while and due to heavy use lately in looking at a lot of conversion data and program code, the issues been getting more and more annoying.  [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oraclefedapps.com&amp;blog=4997250&amp;post=238&amp;subd=oraclefedapps&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This isn&#8217;t anything Federal-specific, but I just wanted to share it since it has definitely made my day.  I&#8217;ve been dealing with some SQL Developer performance issues for a while and due to heavy use lately in looking at a lot of conversion data and program code, the issues been getting more and more annoying.  If you&#8217;re not familiar with the tool, SQL Developer is Oracle&#8217;s free DB query tool similar to TOAD, SQL Navigator, PL/SQL Developer, etc.  <a href="http://www.oracle.com/technology/products/database/sql_developer/index.html" target="_blank">Click here to goto Oracle&#8217;s SQL Dev page for more info and to download</a>.  I&#8217;ve been using SQL Dev since it first came out and have been pretty happy with it, especially since its free.  However when I upgraded to Vista a while back, I started noticing that the SQL editor window would frequently garble the code when scrolling quickly such as:</p>
<p><img class="aligncenter size-full wp-image-239" title="sql_dev_redraw_issues" src="http://oraclefedapps.files.wordpress.com/2009/03/sql_dev_redraw_issues.png?w=544" alt="sql_dev_redraw_issues"   /></p>
<p><span id="more-238"></span></p>
<p>In addition, I&#8217;ve just been getting frustrated at some performance issues, especially around switching back to my SQL Dev windows when multi-tasking with other apps.  This week, I&#8217;ve been starting to scope out a new laptop, thinking that its just time to upgrade and that would solve the issues.  Well before I hit the buy button, I tried to do some searching a bit online and have found the solutions to my issues, without having to break out the credit card.</p>
<p>Thanks to these two blog posts, <a href="http://iadvise.blogspot.com/2008/08/sqldeveloper-vista-trick.html" target="_blank">SQLDeveloper + Vista Trick</a> and <a href="http://java2go.blogspot.com/2007/09/sqldeveloper-trick.html" target="_blank">SQLDeveloper setup trick</a>, I followed the solutions documented and things are working much better.  The fixes just involve making a few tweaks to the config files that SQL Dev uses.</p>
<p>1) Download the latest java jdk  (http://java.sun.com/javase/downloads/index.jsp)   (Honestly, I didn&#8217;t do this since I just wanted to see if the fixes would work quickly and since I have 1.6.0_05 installed, I figured that might be good enough)</p>
<p>2) Edit the C:\&#8230;..\sqldeveloper\ide\bin\ide.conf file (where C:\&#8230;.. is wherever you have SQL Dev installed) &amp; add the following lines:</p>
<p># setting maximum heap to 256 MB<br />
AddVMOption -Xmx256M</p>
<p>#setting keepWorkingSetOnMinimize<br />
AddVMOption -Dsun.awt.keepWorkingSetOnMinimize=true</p>
<p>Note: My ide.conf file already had the maximum heap set (AddVMOption  -Xmx512M), so I just left that is and just added the keepWorkingSetOnMinimize.  The keepWorkingSetOnMinimize apparently prevents Vista from using the memory that SQLDev has been consuming when its minimized.</p>
<p>Edit the C:\&#8230;..\sqldeveloper\ide\bin\jdk.conf file (where C:\&#8230;.. is wherever you have SQL Dev installed) &amp; add the following line to direct SQL Dev to use the latest JDK on your machine:</p>
<p>SetJavaHome C:\Program Files\Java\jdk1.6.0_05</p>
<p>Replace the directory with whatever directory you have the latest JDK installed in.</p>
<p>Then I also changed the Look and Feel from Oracle to Windows (Tools &gt; Preferences &gt; Environment).  Although it might not be as pretty, it seemed to speed things up further, which is definitely more important in my book.</p>
<p><img class="aligncenter size-full wp-image-243" title="sql_dev_lookandfeel" src="http://oraclefedapps.files.wordpress.com/2009/03/sql_dev_lookandfeel.png?w=544" alt="sql_dev_lookandfeel"   /></p>
<p>That&#8217;s it and things are working much better.  My post is pretty short, so be sure to check out the other links if you want to implement this fix as they have additional info.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/oraclefedapps.wordpress.com/238/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/oraclefedapps.wordpress.com/238/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/oraclefedapps.wordpress.com/238/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/oraclefedapps.wordpress.com/238/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/oraclefedapps.wordpress.com/238/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/oraclefedapps.wordpress.com/238/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/oraclefedapps.wordpress.com/238/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/oraclefedapps.wordpress.com/238/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/oraclefedapps.wordpress.com/238/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/oraclefedapps.wordpress.com/238/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/oraclefedapps.wordpress.com/238/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/oraclefedapps.wordpress.com/238/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/oraclefedapps.wordpress.com/238/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/oraclefedapps.wordpress.com/238/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oraclefedapps.com&amp;blog=4997250&amp;post=238&amp;subd=oraclefedapps&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://oraclefedapps.com/2009/03/28/improving-sql-developer-performance-and-eliminating-screen-redraw-issues-on-vista/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cb09b4264071b50cd58b804468530e4a?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">Larry.Baugh</media:title>
		</media:content>

		<media:content url="http://oraclefedapps.files.wordpress.com/2009/03/sql_dev_redraw_issues.png" medium="image">
			<media:title type="html">sql_dev_redraw_issues</media:title>
		</media:content>

		<media:content url="http://oraclefedapps.files.wordpress.com/2009/03/sql_dev_lookandfeel.png" medium="image">
			<media:title type="html">sql_dev_lookandfeel</media:title>
		</media:content>
	</item>
	</channel>
</rss>
