User - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T16:22:21Z http://stackoverflow.com/feeds/user/7616 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1494416/issue-parsing-xml-document-using-saxparser-2047-character-limit/1494444#1494444 0 Answer by shyamsundar for Issue Parsing XML Document using SaxParser - 2047 character limit? shyamsundar 2009-09-29T19:23:54Z 2009-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#1494431 1 Answer by shyamsundar for Can't get XML node info to trace out :( shyamsundar 2009-09-29T19:19:26Z 2009-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#1307457 2 Answer by shyamsundar for Why are javascript comments downloaded to the browser? shyamsundar 2009-08-20T16:43:19Z 2009-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#1284917 2 Answer by shyamsundar for Java mysql connection time shyamsundar 2009-08-16T18:02:26Z 2009-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#904073 4 Answer by shyamsundar for Unable to stop the creation of backups to root by Vim/Emacs shyamsundar 2009-05-24T16:11:24Z 2009-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-tables 0 updating primary key of master and child tables for large tables shyamsundar 2008-11-20T18:52:59Z 2008-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#273445 1 Answer by shyamsundar for Please recommend a powerful Java based ETL framework... shyamsundar 2008-11-07T20:01:04Z 2008-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#273391 0 Answer by shyamsundar for "No suitable driver" problem with Hibernate3, PostgreSQL 8.3 and Java 5 shyamsundar 2008-11-07T19:45:03Z 2008-11-07T19:45:03Z <p>did you notice that the connection url is incomplete</p> <pre><code>&lt;property name="connection.url"&gt;jdbc:postgresql:test&lt;/property&gt; </code></pre> <p>as opposed to </p> <pre><code>&lt;property name="connection.url"&gt;jdbc:postgresql://localhost/test&lt;/property&gt; </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#273370 3 Answer by shyamsundar for What is the best way to allow both a servlet and client-side scripts read the same file? shyamsundar 2008-11-07T19:40:18Z 2008-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#266157 0 Answer by shyamsundar for How do I generate sql scripts for process definition deployment in jBPM? shyamsundar 2008-11-05T18:33:43Z 2008-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#266052 0 Answer by shyamsundar for What are Code Smells? What is the best way to correct them? shyamsundar 2008-11-05T18:01:13Z 2008-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#262654 2 Answer by shyamsundar for Mapping multi-Level inheritance in Hibernate shyamsundar 2008-11-04T17:41:52Z 2008-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>&lt;hibernate-mapping&gt; &lt;class name="A" table="A"&gt; &lt;id name="id" type="long" column="a_id"&gt; &lt;generator class="native"/&gt; &lt;/id&gt; &lt;discriminator column="discriminator_col" type="string"/&gt; &lt;property name="" type=""/&gt; &lt;!-- ... --&gt; &lt;/class&gt; &lt;subclass name="B" extends="A" discriminator-value="B"&gt; &lt;!-- ... --&gt; &lt;/subclass&gt; &lt;subclass name="D" extends="B" discriminator-value="D"&gt; &lt;!-- ... --&gt; &lt;/subclass&gt; &lt;subclass name="C" extends="A" discriminator-value="C"&gt; &lt;!-- ... --&gt; &lt;/subclass&gt; &lt;/hibernate-mapping&gt; </code></pre> http://stackoverflow.com/questions/262362/how-to-make-java-execute-jars-from-the-current-directory-in-gnome/262600#262600 0 Answer by shyamsundar for How to make Java execute jars from the current directory in Gnome? shyamsundar 2008-11-04T17:26:13Z 2008-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#262587 1 Answer by shyamsundar for Reasons not to use an auto-incrementing number for a primary key shyamsundar 2008-11-04T17:20:40Z 2008-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#214939 2 Answer by shyamsundar for What are your favorite Vim tricks? shyamsundar 2008-10-18T11:41:08Z 2008-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#214907 0 Answer by shyamsundar for IDE or Text Editor? shyamsundar 2008-10-18T11:12:17Z 2008-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#167571 0 Answer by shyamsundar for Fast compiler error messages in Eclipse shyamsundar 2008-10-03T15:58:47Z 2008-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#167552 1 Answer by shyamsundar for What is less annoying: no source code documentation or bad code documentation? shyamsundar 2008-10-03T15:55:14Z 2008-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 -1 Answer by shyamsundar for Oracle merge constants into single table shyamsundar 2008-10-03T15:45:55Z 2008-10-03T15:45:55Z <p>Use a stored procedure</p> http://stackoverflow.com/questions/167330/class-data-responsibilities/167488#167488 1 Answer by shyamsundar for Class data responsibilities shyamsundar 2008-10-03T15:42:08Z 2008-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#162127 0 Answer by shyamsundar for web.xml and relative paths shyamsundar 2008-10-02T13:00:25Z 2008-10-02T13:00:25Z <pre><code>&lt;% response.sendRedirect(response.encodeRedirectURL("/myServlet/")); %&gt;` </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#74659 0 Answer by shyamsundar for What is the best way to force yourself to master vi? shyamsundar 2008-09-16T17:12:39Z 2008-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#73966 0 Answer by shyamsundar for Sparkles of productivity shyamsundar 2008-09-16T16:03:08Z 2008-09-16T16:03:08Z <p>I wish I knew what triggered them :|</p> http://stackoverflow.com/questions/65128/track-down-file-handle 1 track down file handle shyamsundar 2008-09-15T17:54:04Z 2008-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#65732 2 Answer by shyamsundar for How to effectively work with multiple files in vim? shyamsundar 2008-09-15T19:03:17Z 2008-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#65593 0 Answer by shyamsundar for In Vim, what is the best way to select, delete, or comment out large portions of multi-screen text? shyamsundar 2008-09-15T18:46:40Z 2008-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#65403 7 Answer by shyamsundar for Useful Vim features shyamsundar 2008-09-15T18:24:17Z 2008-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#65056 3 Answer by shyamsundar for In Java, does return trump finally? shyamsundar 2008-09-15T17:46:18Z 2008-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#65033 0 Answer by shyamsundar for parsings strings: extracting words and phrases [JavaScript] shyamsundar 2008-09-15T17:43:48Z 2008-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#64787 1 Answer by shyamsundar for Can the Weblogic default handler display the list of contexts? shyamsundar 2008-09-15T17:10:13Z 2008-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#114852 Comment by on What are Code Smells? What is the best way to correct them? 2008-11-05T17:30:11Z 2008-11-05T17:30:11Z Funny. HashSet internally uses a HashMap ;) http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/117890#117890 Comment by on What are Code Smells? What is the best way to correct them? 2008-11-05T17:23:37Z 2008-11-05T17:23:37Z Err..return type of printStackTrace() is void :/ http://stackoverflow.com/questions/184118/what-programming-book-would-you-not-recommend-to-developers/184179#184179 Comment by on What Programming Book would you NOT recommend to Developers? 2008-11-04T17:54:58Z 2008-11-04T17:54:58Z ha ha...dummies should not be learning C anyway :P http://stackoverflow.com/questions/262427/javscript-array-map-and-parseint/262500#262500 Comment by on javscript - Array.map and parseInt 2008-11-04T17:10:18Z 2008-11-04T17:10:18Z dunno how that works for you...it throws an error in both FF and Safari :O http://stackoverflow.com/questions/65128/track-down-file-handle/65618#65618 Comment by on track down file handle 2008-09-25T18:46:32Z 2008-09-25T18:46:32Z It took a lot of time hitting F8 but I tracked it down :) thx http://stackoverflow.com/questions/65128/track-down-file-handle Comment by on track down file handle 2008-09-15T18:17:36Z 2008-09-15T18:17:36Z thx. good idea :) will do that http://stackoverflow.com/questions/65128/track-down-file-handle Comment by on track down file handle 2008-09-15T18:10:56Z 2008-09-15T18:10:56Z WAS 6.1 and apart from appName-(error|info|debug).log there are error.log and debug.log http://stackoverflow.com/questions/65128/track-down-file-handle/65204#65204 Comment by on track down file handle 2008-09-15T18:09:01Z 2008-09-15T18:09:01Z Already 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 procexp http://stackoverflow.com/questions/65128/track-down-file-handle/65182#65182 Comment by on track down file handle 2008-09-15T18:04:34Z 2008-09-15T18:04:34Z definitely not from the appserver configuration as the config file is loaded separately and the logs dir is nowhere near the appservers default log dir