Jun 24
David MartinezJava
The CSP for Java Programmers series on developerWorks teaches us how to work with Communicating Sequential Processes, a framework on top of Java's threading library that allow you to create parallel processes that share objects while avoiding deadlocks. Alas, binary only..
Jun 20
David MartinezCBBTR, Python
A little class to retrieve a random line from a file.
More
Jun 20
David MartinezCBBTR, SQL
Every once in a while you will get a query that no matter what you try, it doesn't use the indices. This is typically because the cost-based optimizer decides that an approach that is slower has a total cost that is lower than using the index and making it faster.
To solve this, you would use a hint. You can find an article on how to do this on dbasupport. But the basics are: More
Jun 20
David MartinezCBBTR, SQL
In order to make queries run faster, you should try to have oracle explain to you how the query should be performed.
The whole explanation for oracle tuning can be found on the Oracle Tuning guide, but here are the basics. More
Jun 20
David MartinezCBBTR, Java
To activate socket debugging in java, add the following to java_opts:
-Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=n
Then connect to port 8787 using your favorite debugging tool..
Jun 20
David MartinezCBBTR, Java
To set username and password on weblogic, add the following to JAVA_OPTS:
-Dweblogic.management.username=system -Dweblogic.management.password=weblogic
(or whatever the new passwords are)..