User - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T16:22:21Zhttp://stackoverflow.com/feeds/user/7616http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1494416/issue-parsing-xml-document-using-saxparser-2047-character-limit/1494444#14944440Answer by shyamsundar for Issue Parsing XML Document using SaxParser - 2047 character limit?shyamsundar2009-09-29T19:23:54Z2009-09-29T19:23:54Z<p>How is the xml encoded? Can you check the file in a hex editor to see if you do not have any non-printable characters present?</p>
http://stackoverflow.com/questions/1494212/cant-get-xml-node-info-to-trace-out/1494431#14944311Answer by shyamsundar for Can't get XML node info to trace out :(shyamsundar2009-09-29T19:19:26Z2009-09-29T19:19:26Z<p>Did you try this?</p>
<pre><code>trace("Where is my text? = "+xmlData.col.(@id1 == 'Photography').vid.*);
</code></pre>
http://stackoverflow.com/questions/1307437/why-are-javascript-comments-downloaded-to-the-browser/1307457#13074572Answer by shyamsundar for Why are javascript comments downloaded to the browser? shyamsundar2009-08-20T16:43:19Z2009-08-20T16:43:19Z<p>Why not remove the comments? There are pretty good javascript minifiers available for free</p>
http://stackoverflow.com/questions/1284895/java-mysql-connection-time/1284917#12849172Answer by shyamsundar for Java mysql connection timeshyamsundar2009-08-16T18:02:26Z2009-08-16T18:02:26Z<p>Why don't you simply use a connection pool. If that is too tedious since the connection will be frequently used you can reuse the same one imho.</p>
http://stackoverflow.com/questions/902353/unable-to-stop-the-creation-of-backups-to-root-by-vim-emacs/904073#9040734Answer by shyamsundar for Unable to stop the creation of backups to root by Vim/Emacsshyamsundar2009-05-24T16:11:24Z2009-06-02T18:32:38Z<p>The files ending with ~ are swap files used by vim while editing files. You can try setting the <code>backupdir</code> and <code>directory</code> variables</p>
<pre><code>set backupdir=~/tmp/vim//,~/tmp//,.//,/var/tmp//,/tmp//
set directory=~/tmp/vim//,~/tmp//,.//,/var/tmp//,/tmp//
</code></pre>
http://stackoverflow.com/questions/306433/updating-primary-key-of-master-and-child-tables-for-large-tables0updating primary key of master and child tables for large tablesshyamsundar2008-11-20T18:52:59Z2008-11-22T01:04:06Z
<p>Hi,
I have a fairly huge database with a master table with a single column GUID (custom GUID like algorithm) as primary key, and 8 child tables that have foreign key relationships with this GUID column. All the tables have approximately 3-8 million records. None of these tables have any BLOB/CLOB/TEXT or any other fancy data types just normal numbers, varchars, dates and timestamps (about 15-45 columns in each table). No partitions or other indexes other than the primary and foreign keys.</p>
<p>Now, the custom GUID algorithm has changed and though there are no collisions I would like to migrate all the old data to use GUIDs generated using the new algorithm. No other columns need to be changed. Number one priority is data integrity and performance is secondary.</p>
<p>Some of the possible solutions that I could think of were (as you will probably notice they all revolve around one idea only)</p>
<ol>
<li>add new column ngu_id and populate with new gu_id; disable constraints; update child tables with ngu_id as gu_id; renaname ngu_id->gu_id; re-enable constraints</li>
<li>read one master record and its dependent child records from child tables; insert into the same table with new gu_id; remove all records with old gu_ids</li>
<li>drop constraints; add a trigger to the master table such that all the child tables are updated; start updating old gu_id's with new new gu_ids; re-enable constraints</li>
<li>add a trigger to the master table such that all the child tables are updated; start updating old gu_id's with new new gu_ids</li>
<li>create new column ngu_ids on all master and child tables; create foreign key constraints on ngu_id columns; add update trigger to the master table to cascade values to child tables; insert new gu_id values into ngu_id column; remove old foreign key constraints based on gu_id; remove gu_id column and rename ngu_id to gu_id; recreate constraints if necessary;</li>
<li>use <code>on update cascade</code> if available?</li>
</ol>
<p>My questions are:</p>
<ol>
<li>Is there a better way? (Can't burrow my head in the sand, gotta do this)</li>
<li>What is the most suitable way to do this? (I've to do this in oracle, sqlserver and mysql4 so, vendor specific hacks are welcome)</li>
<li>What are the typical points of failure for such an exercise and how to minimize them?</li>
</ol>
<p>If you are with me so far, thank you and hope you can help :)</p>
http://stackoverflow.com/questions/272517/please-recommend-a-powerful-java-based-etl-framework/273445#2734451Answer by shyamsundar for Please recommend a powerful Java based ETL framework...shyamsundar2008-11-07T20:01:04Z2008-11-07T20:01:04Z<p><a href="http://www.manageability.org/blog/stuff/open-source-etl" rel="nofollow">http://www.manageability.org/blog/stuff/open-source-etl</a></p>
http://stackoverflow.com/questions/273217/no-suitable-driver-problem-with-hibernate3-postgresql-8-3-and-java-5/273391#2733910Answer by shyamsundar for "No suitable driver" problem with Hibernate3, PostgreSQL 8.3 and Java 5shyamsundar2008-11-07T19:45:03Z2008-11-07T19:45:03Z<p>did you notice that the connection url is incomplete</p>
<pre><code><property name="connection.url">jdbc:postgresql:test</property>
</code></pre>
<p>as opposed to </p>
<pre><code><property name="connection.url">jdbc:postgresql://localhost/test</property>
</code></pre>
http://stackoverflow.com/questions/273309/what-is-the-best-way-to-allow-both-a-servlet-and-client-side-scripts-read-the-sam/273370#2733703Answer by shyamsundar for What is the best way to allow both a servlet and client-side scripts read the same file?shyamsundar2008-11-07T19:40:18Z2008-11-07T19:40:18Z<p>Yeah. Put it in the WEB-INF/classes and have a servlet serve out the relevant portion of the validation configurations based on something like a form-id. Better yet, have the servlet transform the configuration into a JSON object and then you can simply include a script tag and start using it :)</p>
http://stackoverflow.com/questions/264248/how-do-i-generate-sql-scripts-for-process-definition-deployment-in-jbpm/266157#2661570Answer by shyamsundar for How do I generate sql scripts for process definition deployment in jBPM?shyamsundar2008-11-05T18:33:43Z2008-11-05T18:33:43Z<p>Why not use the ant task extensions provided by JBPM specifically <a href="http://docs.jboss.org/jbpm/v3/javadoc/org/jbpm/ant/DeployProcessTask.html" rel="nofollow"><code>DeployProcessTask</code></a>. You can deploy to different environments having just a single <code>.par</code> file and the corresponding <code>jbpm-cfg.xml</code> for the various dev/test/staging/prod environments. The only change you might have to do is to configure your hibernate config to directly connect to the database instead of using the datasource.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/266052#2660520Answer by shyamsundar for What are Code Smells? What is the best way to correct them?shyamsundar2008-11-05T18:01:13Z2008-11-05T18:01:13Z<p>Lifecycle methods in classes</p>
<pre><code>class Life {
private boolean initialized = false;
public void init() {
try {
// ...
initialized = true;
} catch (XXXException e) {
// ...
}
}
public void doSomething() {
if ( !initialized ) {
throw XXLException(...);
// instead call init() and continue
}
// ...
}
}
</code></pre>
http://stackoverflow.com/questions/261407/mapping-multi-level-inheritance-in-hibernate/262654#2626542Answer by shyamsundar for Mapping multi-Level inheritance in Hibernateshyamsundar2008-11-04T17:41:52Z2008-11-04T17:41:52Z<p><strong><em>not tested</em></strong> but, according to the link you posted if you are using hibernate3</p>
<pre><code><hibernate-mapping>
<class name="A" table="A">
<id name="id" type="long" column="a_id">
<generator class="native"/>
</id>
<discriminator column="discriminator_col" type="string"/>
<property name="" type=""/>
<!-- ... -->
</class>
<subclass name="B" extends="A" discriminator-value="B">
<!-- ... -->
</subclass>
<subclass name="D" extends="B" discriminator-value="D">
<!-- ... -->
</subclass>
<subclass name="C" extends="A" discriminator-value="C">
<!-- ... -->
</subclass>
</hibernate-mapping>
</code></pre>
http://stackoverflow.com/questions/262362/how-to-make-java-execute-jars-from-the-current-directory-in-gnome/262600#2626000Answer by shyamsundar for How to make Java execute jars from the current directory in Gnome?shyamsundar2008-11-04T17:26:13Z2008-11-04T17:26:13Z<p>As David suggested you can add the <code>Class-Path</code> manifest attribute in your jar for more <a href="http://java.sun.com/docs/books/tutorial/deployment/jar/downman.html" rel="nofollow">jar manifest, Class-Path</a></p>
http://stackoverflow.com/questions/262547/reasons-not-to-use-an-auto-incrementing-number-for-a-primary-key/262587#2625871Answer by shyamsundar for Reasons not to use an auto-incrementing number for a primary keyshyamsundar2008-11-04T17:20:40Z2008-11-04T17:20:40Z<p>The only reason I can think of is that the code was written before <code>sequences</code> were invented and the code forgot to catch up ;)</p>
http://stackoverflow.com/questions/95072/what-are-your-favorite-vim-tricks/214939#2149392Answer by shyamsundar for What are your favorite Vim tricks?shyamsundar2008-10-18T11:41:08Z2008-10-18T11:41:08Z<p><code>ft</code> move to the next occurrence of <code>t</code> and <code>;</code> and <code>,</code> to move to forward and backward</p>
<p><code>tt</code> to move to the char before <code>t</code> <code>;</code> and <code>,</code> work here too.</p>
http://stackoverflow.com/questions/136056/ide-or-text-editor/214907#2149070Answer by shyamsundar for IDE or Text Editor?shyamsundar2008-10-18T11:12:17Z2008-10-18T11:12:17Z<p>For a language like java its very difficult to write code without an IDE (especially if you are developing webapps in any new fangled frameworks) but, I usually also have Vim running handy to make quick edits(while not having to wait for the IDE to choke up trying to do all its mojo)A</p>
http://stackoverflow.com/questions/167007/fast-compiler-error-messages-in-eclipse/167571#1675710Answer by shyamsundar for Fast compiler error messages in Eclipseshyamsundar2008-10-03T15:58:47Z2008-10-03T15:58:47Z<p>Yeah nagging problem. <code>Ctrl+1</code> brings up the quick fixes if you use it from the same line. Sometimes I have to resort to copying the error message from the problems view :(</p>
http://stackoverflow.com/questions/167498/what-is-less-annoying-no-source-code-documentation-or-bad-code-documentation/167552#1675521Answer by shyamsundar for What is less annoying: no source code documentation or bad code documentation?shyamsundar2008-10-03T15:55:14Z2008-10-03T15:55:14Z<p>No documentation is better. I've been bitten by misleading documentation and have resigned myself to being cynical about what it claims. In most cases its usually what the developer wanted to do rather than what it does actually (especially in the absence of test :/)</p>
http://stackoverflow.com/questions/167471/oracle-merge-constants-into-single-table/167508#167508-1Answer by shyamsundar for Oracle merge constants into single tableshyamsundar2008-10-03T15:45:55Z2008-10-03T15:45:55Z<p>Use a stored procedure</p>
http://stackoverflow.com/questions/167330/class-data-responsibilities/167488#1674881Answer by shyamsundar for Class data responsibilitiesshyamsundar2008-10-03T15:42:08Z2008-10-03T15:42:08Z<p>I'd keep it simple by making PurchaseOrder an interface and putting all the DAO code in the implementation, then use a factory.</p>
http://stackoverflow.com/questions/162086/web-xml-and-relative-paths/162127#1621270Answer by shyamsundar for web.xml and relative pathsshyamsundar2008-10-02T13:00:25Z2008-10-02T13:00:25Z<pre><code><% response.sendRedirect(response.encodeRedirectURL("/myServlet/")); %>`
</code></pre>
<p>since the jsp is served from the WEB-INF directory the servlet url is also resolved from that relative path. adding a / before will resolve the url from the context root</p>
http://stackoverflow.com/questions/74625/what-is-the-best-way-to-force-yourself-to-master-vi/74659#746590Answer by shyamsundar for What is the best way to force yourself to master vi?shyamsundar2008-09-16T17:12:39Z2008-09-16T17:12:39Z<p>delete notepad.exe and create a shortcut to vim called notepad instead :)</p>
<p>or do all your coding via ssh or on a machine that has no GUI ;)</p>
http://stackoverflow.com/questions/73920/sparkles-of-productivity/73966#739660Answer by shyamsundar for Sparkles of productivityshyamsundar2008-09-16T16:03:08Z2008-09-16T16:03:08Z<p>I wish I knew what triggered them :|</p>
http://stackoverflow.com/questions/65128/track-down-file-handle1track down file handleshyamsundar2008-09-15T17:54:04Z2008-09-15T19:27:25Z
<p>I have a huge ear that uses log4j and there is a single config file that is used to set it up. In this config file there is no mention of certain log files but, additional files apart from those specified in the config file get generated in the logs folder. I've searched for other combinations of (logger|log4j|log).(properties|xml) and haven't found anything promising in all of the jar files included in the ear. How do I track down which is the offending thread/class that is creating these extra files?</p>
http://stackoverflow.com/questions/53664/how-to-effectively-work-with-multiple-files-in-vim/65732#657322Answer by shyamsundar for How to effectively work with multiple files in vim?shyamsundar2008-09-15T19:03:17Z2008-09-15T19:03:17Z<pre><code>:ls
</code></pre>
<p>for list of open buffers</p>
<ul>
<li>:bp previous buffer</li>
<li>:bn next buffer</li>
<li>:bn move to nth buffer</li>
<li>:b with tab-key providing auto-completion (awesome !!)</li>
</ul>
<p>or when u are in normal mode ^ to switch to the last file u were working on</p>
<p>plus, you can save sessions of vim </p>
<pre><code>:mksession! ~/today.ses
</code></pre>
<p>saves the current open files buffers and settings to ~/today.ses. u can load that session by using</p>
<pre><code>vim -S ~/today.ses
</code></pre>
<p>no hassle of remembering where u left of the yesterday ;)</p>
http://stackoverflow.com/questions/58584/in-vim-what-is-the-best-way-to-select-delete-or-comment-out-large-portions-of/65593#655930Answer by shyamsundar for In Vim, what is the best way to select, delete, or comment out large portions of multi-screen text?shyamsundar2008-09-15T18:46:40Z2008-09-15T18:46:40Z<p>marks would be the simplest <strong>mb</strong> where u want to begin and <strong>me</strong> where u want to end once this is done you can do pretty much anything you want</p>
<pre><code>:'b,'ed
</code></pre>
<p>deletes from marker <strong>b</strong> to marker <strong>e</strong></p>
<p>commenting out 40 lines you can do in the visual mode</p>
<pre><code>V40j:s/^/#/
</code></pre>
<p>will comment out 40 lines from where u start the sequence</p>
http://stackoverflow.com/questions/20735/useful-vim-features/65403#654037Answer by shyamsundar for Useful Vim featuresshyamsundar2008-09-15T18:24:17Z2008-09-15T18:24:17Z<p>my favourite</p>
<pre><code>:g/search-string/norm @h
</code></pre>
<p>runs a macro recorded in <strong>h</strong> for every match of search-string...divine :D</p>
<p>and the <strong>f</strong>d to quickly move the cursor to the next occurrence of 'd'...very useful while selecting in visual mode</p>
http://stackoverflow.com/questions/65035/in-java-does-return-trump-finally/65056#650563Answer by shyamsundar for In Java, does return trump finally?shyamsundar2008-09-15T17:46:18Z2008-09-15T17:46:18Z<p>finally is always executed unless there is abnormal program termination (like calling System.exit(0)..). so, you sysout will get printed</p>
http://stackoverflow.com/questions/64904/parsings-strings-extracting-words-and-phrases-javascript/65033#650330Answer by shyamsundar for parsings strings: extracting words and phrases [JavaScript]shyamsundar2008-09-15T17:43:48Z2008-09-15T17:43:48Z<pre><code>'foo bar "lorem ipsum" baz'.match(/"[^"]*"|\w+/g);
</code></pre>
<p>the bounding quotes get included though</p>
http://stackoverflow.com/questions/51157/can-the-weblogic-default-handler-display-the-list-of-contexts/64787#647871Answer by shyamsundar for Can the Weblogic default handler display the list of contexts?shyamsundar2008-09-15T17:10:13Z2008-09-15T17:10:13Z<p>you could write a small webapp that hooks up to the Weblogic JMX and displays the list of deployed webapps and deploy that one at '/'</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114852#114852Comment by on What are Code Smells? What is the best way to correct them?2008-11-05T17:30:11Z2008-11-05T17:30:11ZFunny. HashSet internally uses a HashMap ;)http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/117890#117890Comment by on What are Code Smells? What is the best way to correct them?2008-11-05T17:23:37Z2008-11-05T17:23:37ZErr..return type of printStackTrace() is void :/http://stackoverflow.com/questions/184118/what-programming-book-would-you-not-recommend-to-developers/184179#184179Comment by on What Programming Book would you NOT recommend to Developers?2008-11-04T17:54:58Z2008-11-04T17:54:58Zha ha...dummies should not be learning C anyway :Phttp://stackoverflow.com/questions/262427/javscript-array-map-and-parseint/262500#262500Comment by on javscript - Array.map and parseInt2008-11-04T17:10:18Z2008-11-04T17:10:18Zdunno how that works for you...it throws an error in both FF and Safari :Ohttp://stackoverflow.com/questions/65128/track-down-file-handle/65618#65618Comment by on track down file handle2008-09-25T18:46:32Z2008-09-25T18:46:32ZIt took a lot of time hitting F8 but I tracked it down :) thxhttp://stackoverflow.com/questions/65128/track-down-file-handleComment by on track down file handle2008-09-15T18:17:36Z2008-09-15T18:17:36Zthx. good idea :) will do thathttp://stackoverflow.com/questions/65128/track-down-file-handleComment by on track down file handle2008-09-15T18:10:56Z2008-09-15T18:10:56ZWAS 6.1 and apart from appName-(error|info|debug).log there are error.log and debug.loghttp://stackoverflow.com/questions/65128/track-down-file-handle/65204#65204Comment by on track down file handle2008-09-15T18:09:01Z2008-09-15T18:09:01ZAlready tried that :( But, when I search from the appserver's java process all files and directories I see are of those of the appserver itself my log directory doesn't figure in those. btw i'm using WAS 6.1. But, I plan to take a deeper look into procexphttp://stackoverflow.com/questions/65128/track-down-file-handle/65182#65182Comment by on track down file handle2008-09-15T18:04:34Z2008-09-15T18:04:34Zdefinitely not from the appserver configuration as the config file is loaded separately and the logs dir is nowhere near the appservers default log dir