Displaying posts categorized under

Technical

Steve Jobs’ Final Wish

I don’t know a lot about Steve Jobs. I watched Pirates of Silicon Valley and have bought a few iPods. I had never met the man: so how do I propose to know his last wish?

Avoid ORA-00054: resource busy and acquire with NOWAIT specified on Truncate

If you are an Oracle programmer, then you’ve probably encountered the ORA-00054: resource busy and acquire with NOWAIT specified exception when attempting to truncate a table. When this happens during the day, you can usually just wait a few minutes (or go and commit your other open sessions…), but what about when you are truncating tables as part of a script which runs overnight? Are you tired of being woken up so you can simply rerun the script?

Well check out this script, then! It is a very simple PL/SQL procedure which accepts 1 or 2 arguments.

How to see your Oracle text output in something other than the browser!

Have you ever wanted to see your Oracle output or log files open in your custom text editor instead of an IE window? I use Notepad++ (FREE) for text editing. Every time I open an output file or log file which is text it opens in IE. This is undesirable for a couple of reasons: [...]

How to find which responsibility can run a request in Oracle Apps.

If this article doesn’t help you, consider dropping me a note with your concern. I have thousands of lines of code for hundreds of Oracle problems I’ve faced and would publish ones that people told me would be helpful. How many times have you been told by Oracle Support that you should run a concurrent [...]

Delete duplicates in Excel

Once in a while I want to write an article on technology. Here is the first one.

Have you ever had a large dataset (or small) that you imported into Excel somehow and you just want to remove all the rows that duplicate on a certain column? Here’s a couple quick macros you can use to solve your problem. Just copy and paste this code into a module in Excel VBA and run them like any other macro.