Syntax error in WITH OWNERACCESS OPTION declaration.

Error 3257

Possible causes:

          The WITH OWNERACCESS OPTION Declaration (SQL)QB3AZO is incomplete or includes a space between OWNER and ACCESS.

          The declaration appears in an unexpected and disallowed position in the SQL statement29F05E5.  For example:

 

     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 (SQL)15DW835, if present:

 

     SELECT * FROM [My Table] WITH OWNERACCESS OPTION;