Hi,
I have a requirement to build a Business Rule Engine. I use the SQL SERVER 2005. The business rules are massive, like 2000 pages long.
eg.
If col1 = 'xyz' then populate col2 otherwise not.
if col3 = 'abc' and col4 = 'def' then col5 = 'ghy'
etc. etc.
So, I think we can't just write all those rules in if else condition in a procedure. So, may be I can create a decision table and put all the condition on that table as a record. But I don't know how to do it.
Anyone has any idea, how to do it?
Thank you