Here is my problem: this is the first time I am looking at a Postgresql-based database application and trying to find what causes certain warnings / errors in the system log file. I don't know anything about the database schema. I don't know anything about the source code. But I need to track the problem.
I can easily find the string contents of a text file based on code, such as php and perl, using the UNIX command 'grep'; even for compiled binaries, I can use the UNIX "find" and "string" commands.
My problem is that part of the text created in the log file comes from the database itself. Checking the error log file for the database does not give anything useful, since there are no problems with the queries used by the application.
I would like to do a full search of all columns and all database tables for a row. Is this possible and how?
Thanks in advance for any pointers. Your environment is Postgresql 8.2, but it would be useful to know how to do this in other versions of relational databases.
string database search postgresql
Joshua berry
source share