Tagged Questions

53
votes
30answers
3k views

Are the days of the stored procedure numbered?

In Scott Hanselman's interview of the stack overflow guys, Scott and Jeff make mention that they may be seen as heretics for declaring that the days of the stored procedure are dea …
48
votes
40answers
4k views

What are the pros and cons to keeping SQL in Stored Procs versus Code

What are the advantages/disadvantages of keeping SQL in your C# source code or in Stored Procs? I've been discussing this with a friend on an open source project that we're working …
32
votes
16answers
6k views

LINQ-to-SQL vs stored procedures?

I took a look at the "Beginner's Guide to LINQ" post here on StackOverflow (http://beta.stackoverflow.com/questions/8050/beginners-guide-to-linq), but had a follow-up question: We …
29
votes
24answers
2k views

When should you use stored procedures?

When should you use a stored procedure (such as in MySQL) instead of writing OO or procedural code (such as in PHP, Ruby or Python) that may execute simple SQL queries and does oth …
29
votes
13answers
3k views

Insert Update stored proc on SQL Server

I've written a stored proc that will do an update if a record exists, otherwise it will do an insert. It looks something like this: update myTable set Col1=@col1, Col2=@col2 where …
26
votes
19answers
2k views

Are Stored Procedures more efficient, in general, than inline statements on modern RDBMS’s?

Conventional wisdom states that stored procedures are always faster. So, since they're always faster, use them ALL THE TIME. I am pretty sure this is grounded in some historical c …
18
votes
9answers
3k views

SQL Server: Query fast, but slow from procedure

A query runs fast: DECLARE @SessionGUID uniqueidentifier SET @SessionGUID = 'BCBA333C-B6A1-4155-9833-C495F22EA908' SELECT * FROM Report_Opener WHERE SessionGUID = @SessionGUID OR …
18
votes
20answers
1k views

Stored Procedures - End of days.

I’m listening to the Hanselminutes Podcast; "StackOverflow uses ASP.NET MVC - Jeff Atwood and his technical team". During the course of the Podcast they are speaking about SQL serv …
17
votes
11answers
7k views

How to SELECT * INTO [temp table] FROM [Stored Procedure]

How do I do a SELECT * INTO [temp table] FROM [Stored Procedure] ? Not FROM [Table] and without defining [temp table] ? Select all data from BusinessLine into tmpBusLine works fin …
16
votes
15answers
2k views

Dynamic Sorting within SQL Stored Procedures

This is an issue that I've spent hours researching in the past. It seems to me to be something that should have been addressed by modern RDBMS solutions but as yet I have not foun …
15
votes
17answers
678 views

When should I use stored procedures?

When should I be using stored procedures instead of just writing the logic directly in my application? I'd like to reap the benefits of stored procedures, but I'd also like to not …
14
votes
17answers
2k views

What is your naming convention for stored procedures?

I have seen various rules for naming stored procedures. Some people prefix the sproc name with usp_, others with an abbreviation for the app name, and still others with an owner …
13
votes
12answers
688 views

What is the best way to debug stored procedures (and write sprocs that are easier to debug)?

What are good methodologies for creating sprocs that reduce the pain of debugging? And what tools are out there for debugging stored procedures? Perhaps most importantly, what are …
12
votes
9answers
2k views

What is the best way to version control my SQL server stored procedures?

What is the best way to version control my database objects? I'm using Visual studio 2005/2008 and SQL server 2005. I would prefer a solution which can be used with SVN.
11
votes
7answers
573 views

Am I immune to SQL injections if I use stored procedures?

Lets say on MySQL database (if it matters).

1 2 3 4 5 77 next
15 30 50 per page