I'm a last year college student and I'm doing my thesis right now. My title is "Index Suggestion based on Log Analysis". This project will analyze the PostgreSQL transaction log to give index recommendation to the database that will be tested.
This research will develop an index recommender tool by analyzing the attribute that is frequently accessed (using SELECT
statement).
But, I found it's hard to find the PostgreSQL log file. My question is, where can I find PostgreSQL log transaction dataset? Or maybe other database log transaction dataset?
SELECT
is not logged in the transaction log. I don't mean to put you down, but shouldn't you learn the basics before writing your thesis? – PozsonySELECT
statements, thenpg_stat_statements
is probably a better starting point, but parsing the queries accurately sounds like a lot more work than the actual analysis... – Telefilm