I'm getting the following warning in my Visual Studio 2013 project:
SQL71502 - Procedure has an unresolved reference to object
I'm getting the following warning in my Visual Studio 2013 project:
SQL71502 - Procedure has an unresolved reference to object
This can be resolved by adding a database reference to the master database.
master
database and click OK:FROM [tablename] alias CROSS APPLY alias.[xmlcolumn].query('/*') AS xResult(columname)
to consume columns of type xml
, even though the query parses and works. –
Desmond Nicholas' answer put me on the right track, but did not fix the issue for me because I had an existing database reference to "master" which was left over from a legacy development environment and SQL server installation.
Deleting this (broken) reference and then re-adding it following Nicholas' instructions worked for me. Note that the "Suppress errors caused by unresolved references..." box wasn't checked by default in VS2019; I had to check that manually.
© 2022 - 2025 — McMap. All rights reserved.