Note: Queries that return a smaller number of records may not appear on
some browsers because those browsers appear to expect a certain amount of
data to be present in the buffer cache before they display the data. For
example:
SELECT * FROM Stream1
where intcol = 10
- Mozilla FireFox browser -- displays record.
- Google Chrome browser -- does not display
record.
- Internet Explorer browser -- does not display
record.
SELECT * FROM Stream1
where intCol > 10
(executed in debug mode)
- Mozilla FireFox browser -- records appear after they are sent to the
browser.
- Google Chrome browser -- records appear after the fifth record is
sent to the browser.
- Internet Explorer browser -- records appear after the 20th record is
sent to the browser.