A subroutine available to applications accessing a relational database system.

learn more… | top users | synonyms (2)

166
votes
14answers
249k 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 fine. select * into ...
140
votes
46answers
9k 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 on (C# ASP.NET ...
98
votes
7answers
87k views

SQL Server UPDATE from SELECT

In SQL server you can insert into a table using a select statement. INSERT INTO table(col,col2,col3) SELECT col,col2,col3 FROM other_table WHERE sql = 'cool' How can I update via a select as well ...
85
votes
20answers
38k views

LINQ-to-SQL vs stored procedures?

I took a look at the "Beginner's Guide to LINQ" post here on StackOverflow (http://stackoverflow.com/questions/8050/beginners-guide-to-linq), but had a follow-up question: We're about to ramp up a ...
81
votes
10answers
100k views

Select columns from result set of stored procedure

I have a stored procedure that returns 80 columns, and 300 rows. I want to write a select that gets 2 of those columns. Something like SELECT col1, col2 FROM EXEC MyStoredProc 'param1', 'param2' ...
80
votes
33answers
7k 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 dead. Why might they ...
48
votes
11answers
12k 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 ID=@ID if ...
45
votes
13answers
13k 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.
43
votes
20answers
5k 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 context where this ...
42
votes
15answers
11k 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 found anything that ...
41
votes
12answers
19k 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 ORDER BY ...
39
votes
24answers
6k views

When should you use stored procedures? [closed]

Possible Duplicate: What are the pros and cons to keeping SQL in Stored Procs versus Code When should you use a stored procedure (such as in MySQL) instead of writing OO or procedural code ...
39
votes
17answers
11k 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 name. You shouldn't ...
36
votes
9answers
34k views

Function vs. Stored Procedure in SQL Server

I've been learning Functions and Stored Procedure for quite a while but I don't know why and when exactly I should use functions or stored procedure instead of one another. They look same to me maybe ...
31
votes
8answers
20k views

Simulating group_concat MySQL function in MS SQL Server 2005?

I'm trying to migrate a MySQL-based app over to MS Sql Server 2005 (not by choice, but that's life). In the original app, we used almost entirely ANSI-SQL compliant statements, with one significant ...
28
votes
6answers
20k views

T-SQL stored procedure that accepts multiple Id values

Is there a graceful way to handle passing a list of ids as a parameter to a stored procedure. For instance, I want departments 1, 2, 5, 7, 20 returned by my stored procedure. In the past, I have ...
26
votes
4answers
25k views

List of Stored Procedures/Functions Mysql Command Line

Dear all how can I see the list of the stored procedures or stored functions in mysql command line like show tables; or show databases; commands.
25
votes
20answers
2k 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 server and say something ...
21
votes
5answers
21k views

How do I execute a stored procedure once for each row returned by query?

I have a stored procedure that alters user data in a certain way. I pass it user_id and it does it's thing. I want to run a query on a table and then for each user_id I find run the stored procedure ...
20
votes
2answers
331 views

Who is diana, and why won't she let my database objects compile?

OK, so the question title is a little tongue-in-cheek, but the question is serious enough. Occasionally, when compiling the objects in a schema or importing a dump file, I see the following error ...
20
votes
17answers
1k 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 have my application ...
19
votes
5answers
20k views

How to find a text inside SQL Server procedures / triggers?

I have a linkedserver that will change. Some procedures call the linked server like this: "[10.10.100.50].dbo.SPROCEDURE_EXAMPLE". We have triggers also doing this kind of work. We need to find all ...
18
votes
8answers
14k views

How do you debug MySQL stored procedures?

My current process for debugging stored procedures is very simple. I create a table called "debug" where I insert variable values from the stored procedure as it runs. This allows me to see the value ...
17
votes
7answers
7k views

Does Entity Framework Code First support stored procedures?

I've watched several presentations of EF Code First and haven't seen how EFCF works with stored procedures. How can I declare a method that will use some sp? Can I pass an entity to a method that ...
17
votes
6answers
13k views

SQL function as default parameter value?

First I apologise if this has been asked. I did a quick search and didn't find anything related. Here is my scenario. I tried to do this: ALTER PROCEDURE [dbo].[my_sp] @currentDate datetime = ...
17
votes
8answers
13k views

How do I programmatically retrieve SQL Server stored procedure source that is identical to the source returned by the SQL Server Management Studio gui?

Any pointers on how I can programmatically get exactly the identical stored procedure source from SQL Server 2005, as when I right-click on that stored procedure in SQL Server Management Studio and ...
16
votes
4answers
3k views

SQL Server silently truncates varchar's in stored procedures

According to this forum discussion, SQL Server (I'm using 2005 but I gather this also applies to 2000 and 2008) silently truncates any varchars you specify as stored procedure parameters to the length ...
16
votes
3answers
5k views

Best way to delete all rows in a table using NHibernate?

To keep my integration tests independent I remove all old data and insert new test data before each test. Is there a better way of doing this than simply querying for all entities and deleting them ...
16
votes
7answers
24k views

Procedure expects parameter which was not supplied

I'm getting the error when accessing a Stored Procedure in SQL Server Server Error in '/' Application. Procedure or function 'ColumnSeek' expects parameter '@template', which was not supplied. This ...
16
votes
9answers
4k views

Functions vs Stored Procedures

Let's say I have to implement a piece of T-SQL code that must return a table as result. I can implement a table-valued function or else a stored procedure that returns a set of rows. What should I ...
15
votes
2answers
8k views

Paging with Oracle

I am not as familiar with Oracle as I would like to be. I have some 250k records, and I want to display them 100 per page. Currently I have one stored procedure which retrieves all quarter of a ...
15
votes
7answers
1k views

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

Lets say on MySQL database (if it matters).
15
votes
7answers
37k views

What is the T-SQL syntax to connect to another SQL Server?

If I need to copy a stored procedure (SP) from one SQL Server to another I right click on the SP in SSMS and select Script Stored Procedure as > CREATE to > New Query Editor Window. I then change the ...
15
votes
13answers
1k 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 indications to look ...
15
votes
22answers
4k views

Which is better: Ad hoc queries, or stored procedures? [closed]

Assuming you can't use Linq for whatever reason, is it a better practice to place your queries in stored procedures, or is it just as good a practice to execute ad hoc queries against the database ...
14
votes
4answers
10k views

How do I call a stored procedure from NHibernate that has no result?

I have a stored procedure that logs some data, how can I call this with NHibernate? So far I have: ISession session = .... IQuery query = session.CreateQuery("exec LogData @Time=:time @Data=:data"); ...
14
votes
5answers
16k views

ADO.NET: How to get Return Value of a Stored Procedure

Probably an easy-to-answer question. I have this procedure: CREATE PROCEDURE [dbo].[AccountExists] @UserName nvarchar(16) AS IF EXISTS (SELECT Id FROM Account WHERE UserName=@UserName) SELECT 1 ...
14
votes
10answers
6k views

Useful system stored procedures in SQL Server

I recently discovered that I could use the sp_help to get a table definition and have been hooked onto it since then. Before my discovery, I had to open up the Object explorer in SQL Management ...
14
votes
11answers
3k views

Arguments for/against Business Logic in stored procedures

What are the arguments for and against business logic in stored procedures?
14
votes
11answers
2k views

Stored procedures a no-go in the php/mysql world?

I'm quoting part of an answer which I received for another question of mine: In the PHP/MySQL world I would say stored procedures are no-go I would like to know: Is that so? Why? Why not? ...
13
votes
8answers
386 views

What is dynamic SQL?

I just asked an SQL related question, and the first answer was: "This is a situation where dynamic SQL is the way to go." As I had never heard of dynamic SQL before, I immediately searched this ...
13
votes
13answers
525 views

How should I rename many Stored Procedures without breaking stuff?

I've inherited an ASP.NET website with C# behind, pulling in data from MS SQL Server. The database has had several successive maintainers over the years and any naming guidelines that may have once ...
13
votes
8answers
4k views

Stored Procedures vs Parameterized Queries [closed]

Do you prefer to use stored procedures or parameterized queries? What is your argument supporting your choice? Is one method really any better than the other in terms of performance, security, ...
13
votes
14answers
2k views

Why is parameterized SQL generated by NHibernate just as fast as a stored procedure?

One of my co-workers claims that even though the execution path is cached, there is no way parameterized SQL generated from an ORM is as quick as a stored procedure. Any help with this stubborn ...
12
votes
2answers
192 views

mysql .net connector not working with a .net 4.0 project and connector 6.4.3 with sprocs

I had to rebuild a machine here and thought I'd just redo my web site in the process. I decided to go with mvc 3 but still use mysql on the back end. I essentially copied and pasted all of my old ...
12
votes
2answers
1k views

Is there any way using Dapper with SQL Stored Procedure

I am just impressed with the result of Dapper Micro ORM for stackoverflow.com. I am considering it for my new project and but I have one concern about that Some times my project reuires to have Stored ...
12
votes
1answer
5k views

SQL Server SELECT into existing table

I am trying to select some fields from one table and insert them into an existing table from a stored procedure. Here is what I am trying: SELECT col1, col2 INTO dbo.TableTwo FROM dbo.TableOne ...
12
votes
7answers
831 views

What is passing parameters to SQL and why do I need it?

Beginner here: In this answer to my question of how to insert data into SQL Server he mentioned passing parameters instead of string concatenation like I currently have. Is this really necessary ...
12
votes
2answers
12k views

Best way to learn PostgreSQL stored procedures?

Is there a good tutorial or something similar for learning how to write Stored Procedures (for a PostgreSQL database). I'm a definite newbie when it comes to writing Stored Procedures at all, so the ...
12
votes
20answers
1k views

Are Stored Procedures Easier to Maintain?

What is the argument for and against putting code in stored procedures with the intention of making the code more maintainable (i.e. Easier to make changes to the business rules without recompiling ...

1 2 3 4 5 112