Q: How do I see what indexes are being used by my SQL statements?
-Carrie Campbell
A: You can see the access plan of an SQL query by starting debug (STR-DBG) before you issue the Start SQL (STRSQL) command. After entering interactive SQL, type in and execute your query as normal. When your query is finished, press the SYSREQ key and press Enter. Select option 3 (Display current job); the Display Job panel appears. From the Display Job panel, select option 10 (Display job log...); the Display Job Log panel appears. Press F10 to display detailed messages. You might have to scroll back a bit, but eventually you'll see the SQL statement preparation and execution job log entries.
The second level help text of these messages, accessed by putting the cursor on the message and pressing Help, is usually very specific about which access paths were used and the reasons for the optimizer's decisions. Making sure the SQL statement uses an access path instead of the arrival sequence (meaning the query optimizer reads the file one record at a time for the entire file) can make a tremendous difference in the speed of your SQL statement.
- Brian Singleton
LATEST COMMENTS
MC Press Online