In Chapter 6, “SQL Statements,” replace the third example in the “Examples” section of the “INSERT statement” section with the following example:
Inserts data from the l_shipdate and l_orderkey columns of the lineitem table from the Sybase IQ database asiqdet on the remote server detroit into the corresponding columns of the lineitem table in the current database:
INSERT INTO lineitem
(l_shipdate, l_orderkey)
LOCATION 'detroit.asiqdet'
PACKETSIZE 512
' SELECT l_shipdate, l_orderkey
FROM lineitem '