I found out how to turn on the DQE trace. What I found out is that there is not an update statement being created. When I add a new record. There is a new insert statement created. Do you have an idea why there is no Update statement created? Could it be entity related?
Here is an insert statement.
Generated Sql query:
Query: INSERT INTO "NESL"."CREW_JOB" ("ADDRESS", "BEGIN_DT", "BUSINESS_UNIT", "CITY", "COMMENTS", "ECMS_NO", "END_DT", "HOME_MCU", "NTAN8_LEAD", "STATE", "ZIP_CODE") VALUES (:p1, :p2, :p3, :p4, :p5, :p6, :p7, :p8, :p9, :p10, :p11)
Parameter: :p1 : String. Length: 40. Precision: 0. Scale: 0. Direction: Input. Value: "dasd".
Parameter: :p2 : Date. Length: 0. Precision: 0. Scale: 0. Direction: Input. Value: 7/11/2013 12:00:00 AM.
Parameter: :p3 : StringFixedLength. Length: 12. Precision: 0. Scale: 0. Direction: Input. Value: " 15001289".
Parameter: :p4 : String. Length: 25. Precision: 0. Scale: 0. Direction: Input. Value: "".
Parameter: :p5 : String. Length: 2000. Precision: 0. Scale: 0. Direction: Input. Value: "".
Parameter: :p6 : String. Length: 20. Precision: 0. Scale: 0. Direction: Input. Value: "44444".
Parameter: :p7 : Date. Length: 0. Precision: 0. Scale: 0. Direction: Input. Value: 7/31/2013 12:00:00 AM.
Parameter: :p8 : StringFixedLength. Length: 12. Precision: 0. Scale: 0. Direction: Input. Value: " 10033200".
Parameter: :p9 : Decimal. Length: 0. Precision: 0. Scale: 0. Direction: Input. Value: 0.
Parameter: :p10 : StringFixedLength. Length: 2. Precision: 0. Scale: 0. Direction: Input. Value: "".
Parameter: :p11 : String. Length: 12. Precision: 0. Scale: 0. Direction: Input. Value: "".
But when I try to update this new record. I don't get an update statement for it.