Reputation: 1
I have created a database project (VS2012) from an existing sql server database (Sql 2012) which in turn uses Oracle linked server. Some of the Store Procedures in that database uses this linked server '[SMAC]..[SMACADMINISTRATOR].[BOND]'. When I build the database project, it gives lot of warnings as 'The procedure xxxxx has an unresolved reference to object.
How can I suppress these warning messages?
Upvotes: 0
Views: 490
Reputation: 4035
Open the Project Properties dialog and type in the SQL warnings to suppress (it's in the Build section, named "Suppress Transact-SQL warnings").
There is also a References Section in the Solution Explorer in the Project, perhaps you can add a reference there? Although perhaps not practial if there are many Procedures being referenced.. then it could be better to suppress all warnings of the given type.
Upvotes: 1