japhon.blogspot.com
eXception raiser: ORA-01591: lock held by in-doubt distributed transaction
http://japhon.blogspot.com/2005/03/ora-01591-lock-held-by-in-doubt.html
Is it a bug? Nope, it's a feature! Wednesday, March 09, 2005. ORA-01591: lock held by in-doubt distributed transaction. I've never seen this error before :p. I got it on my application due some distributed transaction processes. ORA-01591: lock held by in-doubt distributed transaction 1.0.138073. According to Oracle's guide. There are several step that i should do for resolving this problem, but i'll jump to the fastest (and maybe dirty) way. SELECT * FROM sys.dba 2pc pending WHERE state='prepared';.
japhon.blogspot.com
eXception raiser: July 2004
http://japhon.blogspot.com/2004_07_01_archive.html
Is it a bug? Nope, it's a feature! Friday, July 30, 2004. Optimizing CMP Entity Bean. Found an interesting tips on theserverside. About optimizing CMP Entity Bean! Posted by awicaksi @ 10:29 AM. Friday, July 09, 2004. XAException: XAER RMERR (xa recover). While WAS5.1 Test Environment running (connected to Oracle9i as datasource provider),. Got the following error message in periodically:. CfName = GUK XADataSource. ConfigProps = [Deployed Resource Adapter Properties]. At com.ibm.ws.rsadapter...At com...
japhon.blogspot.com
eXception raiser: ORA-01653: Unable to extend table xxx by ### in tablespace xxx_dat
http://japhon.blogspot.com/2005/06/ora-01653-unable-to-extend-table-xxx.html
Is it a bug? Nope, it's a feature! Monday, June 06, 2005. ORA-01653: Unable to extend table xxx by # # in tablespace xxx dat. Got an SQLException contains ORA-01653: Unable to extend table xxx by # # in tablespace xxx dat. The tablespace's datafile was no longer able to be extended because of some limitation (even it's already set as autoextendable), probably OS limitation. Create another datafile for the tablespace (using sysdba priviledge account). ALTER TABLESPACE xxx dat ADD DATAFILE.
japhon.blogspot.com
eXception raiser: October 2004
http://japhon.blogspot.com/2004_10_01_archive.html
Is it a bug? Nope, it's a feature! Monday, October 18, 2004. NullPointerException on jdbc setNull(int, int). I've got these message. At oracle.jdbc.dbaccess.DBData. At oracle.jdbc.dbaccess.DBDataSetImpl. At oracle.jdbc.driver.OraclePreparedStatement. At oracle.jdbc.driver.OraclePreparedStatement. When running these codes. Timestamp t = rs.getTimestamp(column);. StmtsetNull(column, type);. StmtsetTimestamp(column, t);. There is problem with .setNull(int, int) for DATE/TIMESTAMP. Wednesday, October 06, 2004.
japhon.blogspot.com
eXception raiser: February 2006
http://japhon.blogspot.com/2006_02_01_archive.html
Is it a bug? Nope, it's a feature! Monday, February 06, 2006. Scarab's administrator couldn't login. I've just installed a copy of Scarab-1.0-a20, and power it with MySQL5. Since I'm an impatience person, I didn't read the entirely manual guide becauze I thought it's similar with the previous versions, which I've ever use them in several occasions. I believe I have installed it correctly this time, but. I was unable to login using predefined account. After trace into the log file, I faced a two problems:.
japhon.blogspot.com
eXception raiser: March 2005
http://japhon.blogspot.com/2005_03_01_archive.html
Is it a bug? Nope, it's a feature! Wednesday, March 09, 2005. ORA-01591: lock held by in-doubt distributed transaction. I've never seen this error before :p. I got it on my application due some distributed transaction processes. ORA-01591: lock held by in-doubt distributed transaction 1.0.138073. According to Oracle's guide. There are several step that i should do for resolving this problem, but i'll jump to the fastest (and maybe dirty) way. SELECT * FROM sys.dba 2pc pending WHERE state='prepared';.
japhon.blogspot.com
eXception raiser: June 2005
http://japhon.blogspot.com/2005_06_01_archive.html
Is it a bug? Nope, it's a feature! Monday, June 06, 2005. ORA-01653: Unable to extend table xxx by # # in tablespace xxx dat. Got an SQLException contains ORA-01653: Unable to extend table xxx by # # in tablespace xxx dat. The tablespace's datafile was no longer able to be extended because of some limitation (even it's already set as autoextendable), probably OS limitation. Create another datafile for the tablespace (using sysdba priviledge account). ALTER TABLESPACE xxx dat ADD DATAFILE.
japhon.blogspot.com
eXception raiser: November 2004
http://japhon.blogspot.com/2004_11_01_archive.html
Is it a bug? Nope, it's a feature! Tuesday, November 30, 2004. Just another trouble shooting reason grrrr. Got this error while creating prepared statement on remote database:. 11/29/04 17:36:17:411 ICT] 5acc97f WSRdbDataSour I DSRA8203I: Database product name : Oracle. 11/29/04 17:36:17:412 ICT] 5acc97f WSRdbDataSour I DSRA8204I: Database product version : Oracle8i Enterprise Edition Release 8.1.7.0.0 - 64bit Production. With the Partitioning option. The XA Error is : -3. The Oracle Error code is : 4031.
japhon.blogspot.com
eXception raiser: February 2005
http://japhon.blogspot.com/2005_02_01_archive.html
Is it a bug? Nope, it's a feature! Friday, February 18, 2005. Time synchronization on AIX. This is the simple way to (almost) synchronize time between two different machines (i've tried it on AIX boxes):. 1 on 1st machine, run time daemon. 2 on 2nd machine, get the machine 1's time. 3 on 2nd machine, check time difference. Machine2$ timedc clockdiff machine1. Posted by awicaksi @ 6:23 PM. Monday, February 07, 2005. We all know that it is recommended to use System. Write once, run anywhere. On Mac, and.
japhon.blogspot.com
eXception raiser: January 2005
http://japhon.blogspot.com/2005_01_01_archive.html
Is it a bug? Nope, it's a feature! Tuesday, January 25, 2005. Spring mvc tutorial error on JSTL processing. I just following spring's mvc step-by-step tutorial. But got error on Part 2 - Developing and Configuring the Application. JasperException's According to TLD or attribute directive in tag file, attribute value does not accept any expressions. While processing JSTL on the following code (JSP 2.0):. Greetings, it is now c:out value="${now}"/. I already define the. To version 2.4 as the following:.