SQL Parsing for PostgreSQL Table and Column Audit Logging

Published on December 8, 2023
Updated on January 26, 2024

PostgreSQL, or Postgres, is an open-source object-relational database system known for its reliability, data integrity, and robust features. It offers advanced data types, comprehensive extensibility, and strong community support. Its ACID compliance ensures transactional reliability. PostgreSQL runs on various platforms, supports multiple programming languages, and includes features for replication, high availability, and security, making it suitable for everything from small applications to large-scale data warehousing.

PostgreSQL itself doesn’t provide a built-in feature specifically for query history, but it allows you to access this information through log files. Find the postgresql.conf file in the PostgreSQL directory. Once located, you’ll need to modify it to enable the logging of queries. Adjust the following settings as specified;

NOTE: Enabling log_statement = 'all' in PostgreSQL logs every SQL query, creating overhead. This impacts performance due to increased disk I/O, higher CPU usage, and rapid log file growth. While useful for debugging or auditing, it’s not recommended for high-load production environments due to significant performance implications.

log_destination = Set ‘stderr’ to direct the log output to the standard error stream.

log_directory = Set to desired directory.

log_statements: Set to ‘all’ to log all the statements and messages.

logging_collector: Turned on to start the logging collector, a background process that captures the server’s error messages and redirects them into log files.

log_connections = Enabled to log all successful connection attempts.

log_duration = Enabled to log the duration of each completed SQL command.

log_hostname = Enabled to log the host name of the connecting frontend.

After setting the configurations, restart the Postgres service and run the queries. The queries ran will be in the log file in the specified folder, here the log files are now in ‘newlog’.

NOTE: If you only want to log queries which run longer, then you can use ‘log_min_duration_statement’ instead of ‘log_statement=all’ which when set to specified value like 250 only logs all SQL statements that run 250ms or longer.

Using Python script to retrieve and filter out the user queries from log file

The log file contains user queries including backend queries performed by PostgreSQL. These are filtered out to get the queries performed by the user. As there was no differentiation between user query and backend system query, a customized python script was used to filter out the results. This might not work in filtering out exact user queries from other log files. Following python script was implemented.

Analyzing the result of FlowHigh SQL parser

Now that we have the queries, this can be SQL parsed using FlowHigh SDK using the following script;

The FlowHigh SQL parser for PostgreSQL is designed to handle incoming SQL queries and convert them into either JSON or XML formats. When applied to the extracted query history, it generates a detailed representation of each SQL query, which includes information about filtering criteria, selected columns, used aliases, join conditions, involved tables, and various other SQL command components.

From the number of queries we ran, we can select the following query as an example.

Lets see how the XML/JSON conversion of FlowHigh works. Below is the XML output.

Tables and Columns

From the XML output, we can easily identify the tables and columns of the query.

We can see that tables involved in the query are ‘EMPLOYEE’, ‘DEPARTMENT’, ‘BRANCH’ and the columns involved are EMPLOYEE_ID, EMPLOYEE_NAME. SALARY,DEPARTMENT_ID, BRANCH_ID, DEPARTMENT_NAME, BRANCH_NAME AND LOCATION. The name of the schemas, tables, and columns can be found in the xml from the FH parser.

Joins

Joins can be easily identified using the <join> tag.

By looking the XML output , we can find that there is an inner join between tables (join type) EMPLOYEE alias T1 and table DEPARTMENT alias T2 on c7 which is the DEPARTMENT_ID of EMPLOYEE table with c8 which is the DEPARTMENT_ID of DEPARTMENT table.

This is further joined with table BRANCH alias T3 on c9 which is BRANCH_ID of EMPLOYEE table with the c10 which is BRANCH_ID of BRANCH table.


The aliases can be found from the <DBOHier> section of the code.

Filter

Similarly filters used in the query can be identified from <filter xsi:type=”filtreg”> block of XML.

From the code above, we can see that filters like ‘AND’ and ‘LIKE’ are referenced to C6 and C5 section of the code which are;

And the matching criteria used is ‘%New York%’.

Order By

The Order by statement can be found by checking the sort section of the code <sort>.

Here we can see that for the C6 referenced part, the order by used is descending order and for the c3 section , the order by used is ascending order.

While PostgreSQL may not always provide granular details about specific tables and columns in a query, FlowHigh supplements this information. It not only identifies the tables and columns but also zeroes in on the columns involved in join operations.

In summary, leveraging PostgreSQL for query history retrieval and utilizing FlowHigh for parsing SQL into XML and JSON formats revolutionizes data analysis and management. This process not only saves time but also enhances the understanding of complex queries by breaking them down into more digestible formats. The ability to analyze filters, order by clauses, and other query components in a clear manner is invaluable for data professionals. FlowHigh stands out as a versatile tool, promising continued advancements in efficient database handling.

FlowHigh User Interface for SQL parsing

Effortlessly parse SQL queries using the FlowHigh web interface, known for its user-friendliness and simplicity. With just a few clicks, you can access the SDK section of FlowHigh to explore the intricacies of your queries, including a detailed list of tables involved. This feature, particularly the ‘Table List,’ enhances your understanding of the query’s structure and relationships, streamlining the process of managing and analyzing your SQL data efficiently.

We can see that the tables used are EMPLOYEE, DEPARTMENT, and BRANCH. The other fascinating thing is that when we select a table from this, we can see the corresponding columns of that table.

The above figure shows the columns of table EMPLOYEE.

Likewise, FlowHigh can be used to get columns used in a where conditions ,order by, group by and joins in the SQL query.

Columns used in GROUP BY / ORDER BY clause

FlowHigh can be used to filter out columns used in Group By/Order By clauses which is depicted in the figure below.

Filter Columns

Similarly, we can find the columns which are used as filters by clicking on the Filter Columns tab.

Columns used in Join Conditions.

By selecting the joins tab, we can see the columns we used for join conditions. It will filter out the columns of our query which are used for join conditions.

Visualize and Format SQL

Visualizing SQL queries helps understand complex queries. It lets developers see how each part of the query contributes to the final result, making it easier to understand and debug.

Properly formatting SQL queries enhances readability, simplifies debugging, and improves maintainability, enabling efficient collaboration and easier understanding of complex database interactions.

FlowHigh offers both ‘Format SQL’ and ‘Visualize SQL’ features, which effectively format and graphically represent SQL queries for enhanced clarity and understanding.

FlowHigh SQL Analyser

FlowHigh ships with a module named FlowHigh SQL Analyser which suggests methods to optimize the query by checking for Antipatterns and possible suggestions.

Following is our SQL query and the antipatterns found by FlowHigh.

You can try FlowHigh yourself. Register for FlowHigh.