I am using Oracle 10g, and I have a view that joins two large tables (millions of records). I am trying to select a limited \"sample\" of the data for the user like this:
You can also try:
select * FROM (SELECT rownum ROW_NUMBER, YOUR_VIEW.* FROM YOUR_VIEW) WHERE ROW_NUMBER> 2