This may seem obvious, but I spent a while before I spotted it, so it might help others.
If you use a select statement with a semicolon at the end of the string e.g.
SELECT * FROM PEOPLE;
with Oracle then it will give the above error. Exactly the same statement works correctly with SQL Server.
If you use a select statement with a semicolon at the end of the string e.g.
SELECT * FROM PEOPLE;
with Oracle then it will give the above error. Exactly the same statement works correctly with SQL Server.
Comment