After more searching and debugging, I found the problem so here is the solution for anyone else that runs into this.
In BT5 R1, it seems the version of postgresql doesn't play well with Unicornscan by default with regards to escape characters. Unicornscan uses backslashes for escape characters in some of the major queries, and this causes the queries to fail and rows never get inserted into the database outside of a couple tables. Of course this breaks logging to database, but this also is the root cause of the Web GUI query errors seen (a different error related to invalid syntax of WHERE statement, but must be introduced in the code logic due to the other error).
http://www.postgresql.org/docs/8.3/i...SYNTAX-STRINGS
http://www.postgresql.org/docs/8.3/i...ORMING-STRINGS
If you turn off standard conforming strings in /opt/framework.postgresql/data/postgresql.conf (seems it is now on by default), you will still get the warnings in SQL logs (unless you turn those off too) but queries complete successfully and Unicornscan works again.


