We have a bunch of stored procedures (SP) in our financial application. Basically these SP will read in the financial contract table and generate the principal and interest payment plan. There are some inconvenience writing these SPs, some of which, we think, are slow to execute.
We are thinking about convert these SPs to Visual C# classes. We are afraid that the performance might drop significantly. The contract tables have up to 300,000 records.
My question is What are the pros and cons of Stored procedures vs Visual C#? (assume that the C# will be written by a good and experienced and ... programmers)
Thank you in advance.
We are thinking about convert these SPs to Visual C# classes. We are afraid that the performance might drop significantly. The contract tables have up to 300,000 records.
My question is What are the pros and cons of Stored procedures vs Visual C#? (assume that the C# will be written by a good and experienced and ... programmers)
Thank you in advance.