Hi gurus
Under my Business Objects documentation, there's a function that allows the usage of END_SQL (whatever that means), and its description:
Code:
For IBM DB2 databases, you can use the following:
END_SQL=FOR SELECT ONLY
The server will read blocks of data much faster.
I tried out the function, and what happened was this:
Code:
SELECT DISTINCT
RTRIM(LU_STOCK.STOCK_ID)
FROM
LU_STOCK
END_SQL=FOR SELECT ONLY
Ran it in a query tool, but that query doesn't work. Searched in Google, but couldn't find anything on this. How does this work?