Hi Lennart,
The option to change predicate LITERAL values to parameter markers (?) can be turn off in monitor profile. The option is called "Normalize captured SQL statements". e.g.
By default, this option is turned on. So, queries with predicate using LITERAL values will be replaced with ?.
e.g. the ID = 123 predicate below will be replaced with ID = ?
From:
SELECT SALARY FROM EMPLOYEE WHERE ID = 123;
To:
SELECT SALARY FROM EMPLOYEE WHERE ID = ?;
If this option is turned off, the replacement of 123 to ? will be disabled, and you can see the original statement text with LITERAL values.
Please note: The ability to capture the host variable / parameter markers values bind to the SQL statement is not available in DMC.
Thanks.
------------------------------
Jason Sizto
------------------------------