Oracle does not support the TOP N syntax-- that's a SQL Server extension. Unless you have a "dbo" schema in your Oracle database with a disburse_schedule table, you don't want to qualify your Oracle table name with "dbo". You can do something like
Code:
SELECT *
FROM (SELECT *
FROM disburse_schedule
WHERE person_id = 12076
ORDER BY start_date DESC)
WHERE rownum < 2
Justin
Distributed Database Consulting, Inc.
http://www.ddbcinc.com/askDDBC