sql error # 55030
Database
2
Posts
2
Posters
0
Views
1
Watching
-
when i run my application i got error "SQL Error # 55030 Optimistic Conncurrency Error". please provide solution for it
-
when i run my application i got error "SQL Error # 55030 Optimistic Conncurrency Error". please provide solution for it
If your database is SQL-Server then this is probably a user-defined error message that is produced by one of the following:
- A stored procedure within your database (look for instances of
RAISERROR
). - A trigger within your database (look for
RAISERRROR
). - The front-end application that is accessing your database (this depends on which programming language has been used on the front-end - for VB/VbScript look for
Err.Raise
).
You will need to investigate your system more deeply to identify where the error comes from. Regards Andy
If you want to thank me for my help, please vote my message by clicking one of numbers beside "Rate this message".
- A stored procedure within your database (look for instances of