Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

App Insights reporting result code 208 for SQL dependency

My application made in ASP.Net core is using EF 6.1. I keep receiving warning message from App Insights while n-log does not show anything unusual. What is this 208 code from SQL and why does App Insights log this as exception?

exception screen

like image 321
doker Avatar asked Oct 18 '22 12:10

doker


1 Answers

According to a list of messages (SELECT * FROM SYS.MESSAGES) the exception you get is "Invalid object name". Check the spelling or default schema or schema name.

like image 123
Natalia Avatar answered Dec 07 '22 20:12

Natalia