Possible causes:
SELECT * WITH OWNERACCESS OPTION FROM [My Table];
The WITH OWNERACCESS OPTION declaration should appear at the end of the SQL statement, usually after the ORDER BY clause, if present:
SELECT * FROM [My Table] WITH OWNERACCESS OPTION;