Hi, I am using Log4j JDBCAppender to log messages in the Data base. The sql i am using is log4j.appender.loggingdb.sql = INSERT INTO ACRT1.MESSAGE_TABLE (MESSAGE_CODE, MESSAGE_ID, MESSAGE_TEXT) VALUES ('HI12', 'F','@MSG@') I call Logger.info(message); in my java class. Now this fires the SQL and the message i have given above is inserted in the DB. What i want is that instead of ...