Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > Stored Procedures are good or bad?

Reply
Thread Tools

Stored Procedures are good or bad?

 
 
Patrick Olurotimi Ige
Guest
Posts: n/a
 
      01-20-2005
Say what u feel with this interesting article at:-

http://dotnetjunkies.com/WebLog/sahi.../24/33514.aspx



*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
 
Reply With Quote
 
 
 
 
Bob Lehmann
Guest
Posts: n/a
 
      01-20-2005
Frans is an idiot.

Bob Lehmann

"Patrick Olurotimi Ige" <> wrote in message
news:%23lOrIio$...
> Say what u feel with this interesting article at:-
>
> http://dotnetjunkies.com/WebLog/sahi.../24/33514.aspx
>
>
>
> *** Sent via Developersdex http://www.developersdex.com ***
> Don't just participate in USENET...get rewarded for it!



 
Reply With Quote
 
 
 
 
WJ
Guest
Posts: n/a
 
      01-20-2005
SP is one very good method of accessing data. I use it a lot, I also use it
with MS/DAAB, another good tool. The only disadvantage that I see from using
SP is I have to prepare SP for every DB task my application handles. But,
hey, without SP, I still have to write some codes (may be more) to do what
an SP can do. With SP, you can isolate core DB logic from your application.
On top of that, I do not need to give DB access to anybody, no role needed
neither. Just give EXEC right to a group and that is all about security.
Very simple. A solution that works reliably. Never break (so far for me );

John

"Patrick Olurotimi Ige" <> wrote in message
news:%23lOrIio$...
> Say what u feel with this interesting article at:-
>
> http://dotnetjunkies.com/WebLog/sahi.../24/33514.aspx
>
>
>
> *** Sent via Developersdex http://www.developersdex.com ***
> Don't just participate in USENET...get rewarded for it!



 
Reply With Quote
 
David Jessee
Guest
Posts: n/a
 
      01-20-2005
Is fire good, or is it bad? it depends on how you use it.

SP's are great for thinning down your code. Also, I can't count the number
of times that dynamic sql has generated strange results because the
developer made a typo. Also, as annoying as it is, having to make a change
to both a stored procedure and the code that utilizes it causes exceptions
to be more visible, as opposed to having dynamic sql that, for instance, was
not updated to insert date into a new field.

However, having stored procedures that manage business logic is bad, bad,
bad, bad!
Things like calculating invoice totals, where there are multiple procing
strategies, or calculating interest on accounts (which a lot of times
introducts strange rounding errors) is best done in your business layer.



"Patrick Olurotimi Ige" <> wrote in message
news:%23lOrIio$...
> Say what u feel with this interesting article at:-
>
> http://dotnetjunkies.com/WebLog/sahi.../24/33514.aspx
>
>
>
> *** Sent via Developersdex http://www.developersdex.com ***
> Don't just participate in USENET...get rewarded for it!



 
Reply With Quote
 
Kevin Spencer
Guest
Posts: n/a
 
      01-20-2005
Why? What does what I feel have anything to do with the facts?

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Neither a follower nor a lender be.

"Patrick Olurotimi Ige" <> wrote in message
news:%23lOrIio$...
> Say what u feel with this interesting article at:-
>
> http://dotnetjunkies.com/WebLog/sahi.../24/33514.aspx
>
>
>
> *** Sent via Developersdex http://www.developersdex.com ***
> Don't just participate in USENET...get rewarded for it!



 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
A Good Wrapper for Stored Procedures (T-SQL)? webdevaccount@gmail.com ASP .Net 1 07-08-2007 06:59 AM
Debugging SQL Server 2000 Stored Procedures. lhak ASP .Net 1 10-23-2004 03:30 PM
Putting stored procedures in a dll Soumitra Banerjee ASP .Net 1 02-27-2004 01:46 AM
VB.NET Retrieving Identity form MSSQL2000 without using stored procedures Taras ASP .Net 2 10-05-2003 05:35 AM
Re: Your opinion about stored procedures mono ASP .Net 1 07-04-2003 07:55 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57