User Murthy - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T12:48:24Z http://stackoverflow.com/feeds/user/17187 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/252862/db2-query-output-different-behavior 0 DB2 Query Output - Different Behavior Murthy 2008-10-31T08:18:57Z 2009-11-16T16:00:03Z <p>I've two tables TAB_A and TAB_B. TAB_A is master table and TAB_B is child / transaction table. TAB_A is having COL_A (Primary key) and TAB_B is having COL_B (Primary key) and also COL_A.</p> <p>For some business reason, Foreign key is not defined between TAB_A and TAB_B on column COL_A.</p> <p>I've four records in TAB_B with some values say 1, 2, 3 and 4 in COL_A which has got no corresponding matching values in COL_A of TAB_A. (They are orphan records, created by mistake)</p> <p>When I issue the following SELECT query, I get four records</p> <p>SELECT B.COL_B, B.COL_A FROM TAB_A A, TAB_B B WHERE A.COL_A = B.COL_A AND B.COL_A IN (1, 2, 3, 4)</p> <p>But if I start refering A.COL_A in SELECT query, no records are returned.</p> <p>SELECT B.COL_B, B.COL_A, A.COL_A FROM TAB_A A, TAB_B B WHERE A.COL_A = B.COL_A AND B.COL_A IN (1, 2, 3, 4)</p> <p>Can someone please explain this weird behavior?</p> <p>DB2 Version 9.5 in AIX</p> http://stackoverflow.com/questions/1057500/db2-web-olap-viewer/1693811#1693811 0 Answer by Murthy for DB2 web OLAP Viewer Murthy 2009-11-07T17:38:35Z 2009-11-07T17:38:35Z <p>I've tried DB2 AlphaBlox once. Check that out.</p> http://stackoverflow.com/questions/1635151/db2-multiple-index-on-same-column-combinations 1 DB2 Multiple Index on same column combinations Murthy 2009-10-28T04:11:09Z 2009-10-28T08:39:43Z <p>Lets say I've a table T with columns C1, C2 ... C10.</p> <p>C1, C2 and C3 are most frequently refered columns in multiple queries. The order in which these columns are refered can't be controlled.</p> <p>To improve query performance do I need to create multiple indexes such as (C1, C2, C3), (C1, C3, C2), (C2, C1, C3), (C2, C3, C1) etc.?</p> <p>With example of two similar queries... </p> <p>select * from t1, t2 where t1.c1 = t2.c1 and t1.c2 = t2.c2 and t1.c3 = t3.c3 and </p> <p>select * from t1, t2 where t1.c2 = t2.c2 and t1.c1 = t2.c1 and t1.c3 = t3.c3 </p> <p>Do I need two indexes (C1, C2, C3) and (C2, C1, C3) for improving performance of above two different queries or just any one combination is enough for both the queries?</p> <p>I guess it is not required and assume DB2 will be smart enough to rearrange columns in the query to match any one of the index combination as long as C1, C2 and C3 all are used.</p> <p>Can anyone confirm and point me some articles related to that.</p> <p>DB2 version used is 9.5 in AIX</p> http://stackoverflow.com/questions/89163/how-to-conduct-a-successful-code-review/89918#89918 2 Answer by Murthy for How to conduct a successful code review? Murthy 2008-09-18T04:07:53Z 2009-08-17T21:24:21Z <p>Reviews are MUST.</p> <p>Reviews don't catch all defects. But they catch "most". Good reviewer should have both "technical" and "functional" knowledge blend to have outcome of Review be more effective.</p> <p>I usually ask developer to sit next with me and modify their code infront of them and explain why I do so. (This avoids unnecessary mail communications, miscommunications etc.)</p> <p>I see in the project release which currently I'm incharge of ... review helped reduce number of defects reported in System testing by one third compare to previous release.</p> <p>Though recording review comments in system will help us get "Review Efficiency" metrics, I personally feel, "Quality" time can be spent to "Educate" juniors to be aware of their mistakes which will save everyone's time.</p> http://stackoverflow.com/questions/1202294/if-there-are-known-issues-why-release/1202364#1202364 1 Answer by Murthy for If there are "known issues" why release? Murthy 2009-07-29T19:00:51Z 2009-07-29T19:00:51Z <p>"Commitment". </p> <p>That is more important.</p> <p>Once the delivery date is finalized (Commited), product must be released if it is in "Acceptable" level. The difference between "Perfection" and "Acceptance" is "Known Issues"</p> http://stackoverflow.com/questions/119392/generate-dynamic-excel-from-java 2 Generate Dynamic Excel from Java Murthy 2008-09-23T06:30:10Z 2009-05-10T09:49:31Z <p>We've pre-defined Excel document structure with lots of formulas and macros written.</p> <p>During download of Excel, thru Java application we populate certain cells in Excel with data. After download when user open Excel, macros &amp; formulas embedded in it will read the pre-populated data and behave accordingly.</p> <p>We are rightnow using ExtenXLS to generate Dynamic Excel document from Java. Licence is CPU based and it doesn't support Boxes with Dual core CPU. We are forced to buy more Licence.</p> <p>Is there any better tool we can look at it which is either free, product and support cost are minimal (Support is must), licence is simple.</p> http://stackoverflow.com/questions/544519/change-directory-and-run-the-batch-file-in-the-same-command-prompt/544902#544902 0 Answer by Murthy for change directory and run the batch file in the same command prompt Murthy 2009-02-13T06:20:44Z 2009-02-13T06:20:44Z <p>Keep the batch file in "path". You can execute it without going to any specific directory. </p> <p>(For example you can have an entry "set path=%path%;C:..........\YourBatchFile.bat" in Autoexec.bat in Windows environment)</p> http://stackoverflow.com/questions/536944/maintaining-conceptual-integrity-of-the-system-during-maintenance 2 Maintaining conceptual integrity of the system during Maintenance Murthy 2009-02-11T14:11:43Z 2009-02-11T14:30:08Z <p>While starting a new project, we kick start it based on what is "latest" and what is "known". </p> <p>This includes selection of programming languages, frameworks in those languages etc. Quite a lot of time is spent on architectural design and detailed level design in terms of using specific frameworks and design patterns etc.</p> <p>Things go on fine till we complete the development and push things to production.</p> <p>Then comes maintenance (Defect fixes and Enhancements). People change, architects and designers moved out.</p> <p>New set of folks who may not have any historical details of project are maintaining it now. They start comprising things on architecture, design principles etc. to provide quick fixes and adding enhancements.</p> <p>This trend I'm seeing in many projects I've worked.</p> <p>How to maintain the "conceptual integrity" of the system while doing maintenance?</p> http://stackoverflow.com/questions/486680/regarding-how-best-to-expose-programming-to-a-foreign-audience/486862#486862 0 Answer by Murthy for Regarding how best to expose programming to a foreign audience... Murthy 2009-01-28T08:22:53Z 2009-01-28T08:22:53Z <ol> <li><p>Relate programming to any real world actity like "Singing, Dancing, Cooking, Fishing" etc.</p></li> <li><p>Once you choose that, (Say for example, Cooking), you can go on compare activities involved in cooking with that of programming.</p></li> <li><p>To do cooking (Coding), you need to know what you want to cook (Software Requirement). Then you need utensils (Tools), you need to spend time for cooking (Development time), you need to inform the person waiting for food on whats going on (Status update), taste the food once to ensure salt, spice etc. are correct (Testing), you need arrange the food in nice manner (Packaging, Documentation), Serve it (Delivery), take a feedback and improve :)</p></li> </ol> http://stackoverflow.com/questions/405955/best-error-names-failures-or-exceptions/406014#406014 0 Answer by Murthy for Best error names, failures or exceptions. Murthy 2009-01-02T04:25:14Z 2009-01-02T04:25:14Z <p>Access Denied</p> http://stackoverflow.com/questions/347238/what-are-the-advantages-to-each-approach-for-mapping-application-end-users-to-da/370447#370447 1 Answer by Murthy for What are the advantages to each approach for mapping application end users to database users? Murthy 2008-12-16T04:16:59Z 2008-12-16T04:16:59Z <p>Some of the reasons why <strong>N to 1 mapping</strong> is so much widely used could be possibly because of,</p> <ol> <li><p>In a conventional software development database is considered as a mere repository and not beyond.</p></li> <li><p>Programmers approach database as a black box and access privileges are considered as one time activity.</p></li> <li><p>Programmers are happy to debug the code and resolve problems rather than worrying about security role definitions and maintenance at the database level.</p></li> <li><p>In a typical application where there is a "User / Role maintenance" screen provided to admin user, it is easy to have tables like USER, SECURITY_ROLE, USER_SECURITY_ROLE etc. to maintain the application user information rather than creating user, security entries in database itself.</p></li> <li><p>In case of not a well defined roles in business model (Dual roles, customizable access privileges etc.) it is easy to implement security at application level rather than at database.</p></li> </ol> http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/358674#358674 1 Answer by Murthy for Should I use `!IsGood` or `IsGood == false`? Murthy 2008-12-11T08:13:35Z 2008-12-11T08:13:35Z <p>As long as we have either if(isGood) or if(!isGood) it is fine. </p> <p>Sometimes I come across code like this ... </p> <pre><code>if(!getGreatGrandFateher.getGrandFather().getFather().getFirstChild().isMale()) { doSomething(); } </code></pre> <p>At first sight this misleads that doSomething() is called if it is Male. The small '!' after "if" is getting lost in big code construct like the above.</p> <p>Explicit check like below provides better readability</p> <pre><code>if(getGreatGrandFateher.getGrandFather().getFather().getFirstChild().isMale() == false) { doSomething(); } </code></pre> http://stackoverflow.com/questions/344468/as-a-developer-what-changes-do-you-make-to-a-vanilla-windows-install/358385#358385 1 Answer by Murthy for As a developer, what changes do you make to a vanilla Windows install ? Murthy 2008-12-11T03:40:38Z 2008-12-11T03:40:38Z <ol> <li>Switch to classic menu</li> <li>Increase the taskbar hight to have more shortcuts &amp; lock the taskbar</li> <li>Performance options -> Adjust for best performance</li> <li>Copy all the backed up shortcuts files to Favorites folder</li> <li>Install necessary software (JDK, DBMS stuff, Editplus, MS Office etc.)</li> <li>Driver for soundcard</li> <li>New network connection for Broadband ...</li> </ol> http://stackoverflow.com/questions/153524/code-to-logging-ratio/348663#348663 0 Answer by Murthy for Code to logging ratio? Murthy 2008-12-08T04:34:49Z 2008-12-08T04:34:49Z <p>I must confess that when started programming I more or less logged all details as described by "Dillie-O".</p> <p>Belive me ... it helped a lot during initial days of production deployment where we heavily relied on log files to solve hundreds of problems.</p> <p>Once system become stable, I slowly started removing log entries as their value add started diminishing. (No log4j at those point in time)</p> <p>I think, the ratio of code to log entries depends on the project and environment and it need not be a constant ratio.</p> <p>Nowadays we've lot of flexibility in logging with packages like log4j, dynamic enablement of log level etc. </p> <p>But if programmers doesn't use it appropriately, such as when to use when NOT to use INFO, DEBUG, ERROR etc. as well as details in log messages (I've seen log message like, "Hello X, Hello XX, Hello XXX etc." which only the programmer can understand) the ratio will continue to be high with less ROI.</p> http://stackoverflow.com/questions/333419/separate-table-for-picture-items-with-image-field/333996#333996 2 Answer by Murthy for separate table for picture items with image field Murthy 2008-12-02T13:58:45Z 2008-12-02T14:04:37Z <p>If programmers are sensible enough to query only required columns from the table instead of "SELECT *", first design approach looks okay.</p> <p>Need to take care of indexing, referential constraints etc. for the second design.</p> http://stackoverflow.com/questions/325862/what-are-the-most-common-security-mistakes-programmers-make/326139#326139 1 Answer by Murthy for What are the most common security mistakes programmers make? Murthy 2008-11-28T16:13:56Z 2008-11-28T16:13:56Z <p>The fundamental problem is that ... programmers think security of a application is only in its login page asking "login name &amp; password"</p> <p>This ignorance is the big mistake the programmers make.</p> http://stackoverflow.com/questions/319952/how-to-deal-with-overachievers/320041#320041 1 Answer by Murthy for How to deal with overachievers Murthy 2008-11-26T08:19:40Z 2008-11-26T08:19:40Z <ol> <li><p>Ask the "over achieving" person to get work done (manage) from other "average" person. (This way he / she will understand though Individual contribution is good, it is prefered that Team is winning finally)</p></li> <li><p>Give R&amp;D intensive work and delegate business related funtional work to other folks</p></li> <li><p>Talk to "over achieving" person and take them for outing (Quite often people get trapped in to work and never realize, world outside programming is also beautiful)</p></li> <li><p>Give "more" non programming work such as organizing meeting, organizing events, paper presentation, taking trainings etc.</p></li> </ol> <p>...</p> http://stackoverflow.com/questions/252862/db2-query-output-different-behavior/253679#253679 0 Answer by Murthy for DB2 Query Output - Different Behavior Murthy 2008-10-31T14:21:11Z 2008-10-31T14:21:11Z <p>I looked at the documentation in IBM site. Though they talk about using "JOIN", there is also a mention of using direct join using "WHERE" conditions (which I used) and mentioned that they should produce same result.</p> <p>Also, I've previously worked in Oracle and SQL Server. The above syntax just worked fine. Still not sure why output differs, just because there is an additional column added in SELECT clause</p> http://stackoverflow.com/questions/232141/stored-procedures-end-of-days/232469#232469 6 Answer by Murthy for Stored Procedures - End of days. Murthy 2008-10-24T04:14:00Z 2008-10-24T04:14:00Z <p><strong>Maintenability</strong> Probably SPs are better. If maintaining hundres of SPs are hard, maintaining them in business tier components is even harder.</p> <p><strong>Performance</strong> Caching of queries might be producing near performance to SP. But they can't match performance of SPs across varieties of databases in varieties of platform. Network latency is another area of concern, though the gap is reducing nowadays.</p> <p><strong>Debug</strong> Is probably fairly easy with SPs than debugging business tier + db tier put together.</p> <p>There can be even more +ve points using SPs.</p> <p>But looking at the modern trend of programming, its rather "wise" to go with 'N' tier architecture for plenty of business reasons than sticking with "old" SP based approach.</p> <p>Good system should have mix of both. Probably following 80-20 principle, 20 being SPs.</p> http://stackoverflow.com/questions/1635151/db2-multiple-index-on-same-column-combinations/1635235#1635235 Comment by Murthy on DB2 Multiple Index on same column combinations Murthy 2009-10-28T05:10:03Z 2009-10-28T05:10:03Z With example ... select * from t1, t2 where t1.c1 = t2.c1 and t1.c2 = t2.c2 and t1.c3 = t3.c3 and select * from t1, t2 where t1.c2 = t2.c2 and t1.c1 = t2.c1 and t1.c3 = t3.c3 Do I need two indexes (C1, C2, C3) and (C2, C1, C3) for improving performance of above two different queries or just any one combination is enough for both the queries? http://stackoverflow.com/questions/1635151/db2-multiple-index-on-same-column-combinations/1635235#1635235 Comment by Murthy on DB2 Multiple Index on same column combinations Murthy 2009-10-28T05:07:26Z 2009-10-28T05:07:26Z Let me rephrase my question. Assuming all the columns C1, C2 and C3 will be used in multiple queries (in different ordering) do I need multiple permutations of index on those three columns.