Posted By:
WarnerJan_Veldhuis
Posted On:
Tuesday, December 5, 2006 01:43 AM
Either start profiling on Oracle, or time it in your code:
long start = System.currentTimeMillis();
//query stuff here
long end = System.currentTimeMillis();
long durationInSeconds = (end - start) / 1000;