Question : In my application, I am receiving SQL from other application. I want to validate that SQL text on my client. I don’t want to add the performance overhead to the database , what options are available? Answer: Parsing SQL code is an important part of code development . Parsing is the process of analysing a string of symbols , based on the syntax rules. There a number of options available and will depend on your circumstances. Option 1 – Make a DB2 call and allow the database to validate the SQL code. If you don’t want the overhead... Read more →