I have MS SQL Server 2008 installed on PC as Main Server and clients are connected with this server and executing queries like inserting, updating, deleting.
I have noticed that some times when executing UPDATE query, no data saved in my database in the server where MS SQL Server is installed.
I'm using Winform Application with Entity Framework.
xBindingSource.EndEdit();
context.SaveChanges();
Is there any way to check if queries are executed successfully on server over network??
Thank you