Q: I have a question about using LIKE in SQL. Is it true that, because LIKE cannot take advantage of indices, it has to resort to a database scan? If it is true, is there no way to speed up a query that uses LIKE?
A: No, that is not true. If the LIKE pattern starts with a character string (such as LIKE 'J*f'), the optimizer can use index scan-key positioning to limit the number of rows (records) that need to be scanned. In my example, the optimizer would use an index to find rows with values that begin with J.
If the LIKE pattern starts with % or _, index scan-key positioning cannot be used. However, even in this case, indices can be used for index scan-key selection, in which the entire index (not the table) is scanned and selection is performed on it. With the results of the index scan, random I/O is performed to the table.
--Jeff Tenner
IBM Rochester
Just do it!
Got a tip that makes you a star?
Send it to
Business users want new applications now. Market and regulatory pressures require faster application updates and delivery into production. Your IBM i developers may be approaching retirement, and you see no sure way to fill their positions with experienced developers. In addition, you may be caught between maintaining your existing applications and the uncertainty of moving to something new.
IT managers hoping to find new IBM i talent are discovering that the pool of experienced RPG programmers and operators or administrators with intimate knowledge of the operating system and the applications that run on it is small. This begs the question: How will you manage the platform that supports such a big part of your business? This guide offers strategies and software suggestions to help you plan IT staffing and resources and smooth the transition after your AS/400 talent retires. Read on to learn:
LATEST COMMENTS
MC Press Online