Top "Stored-procedures" questions

A subroutine available to applications accessing a relational database system.

Stored procedure return into DataSet in C# .Net

I want to return virtual table from stored procedure and I want to use it in dataset in c# .net. …

c# asp.net stored-procedures dataset
How to pass a null variable to a SQL Stored Procedure from C#.net code

Im calling a SQL stored procedure from a piece of C#.net code: SqlHelper.ExecuteDataset(sqlConnection, CommandType.StoredProcedure, STORED_PROC_…

c# sql sql-server stored-procedures
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 …

sql-server tsql stored-procedures
Searching for Text within Oracle Stored Procedures

I need to search through all of the stored procedures in an Oracle database using TOAD. I am looking for …

sql oracle stored-procedures full-text-search toad
Type datetime for input parameter in procedure

I have created a procedure with this structure but it doesn't work for datetime input parameter I executed this query …

sql-server-2008 datetime stored-procedures input-parameters
Inserting into Oracle and retrieving the generated sequence ID

I have a handful of raw SQL queries for SQL Server which use SCOPE_IDENTITY to retrieve the generated ID …

sql oracle stored-procedures identity-column scope-identity
Get resultset from oracle stored procedure

I'm working on converting a stored procedure from SQL server to Oracle. This stored procedure provides a direct resultset. I …

oracle stored-procedures plsql
Is there a way to call a stored procedure with Dapper?

I am very impressed with the results of Dapper Micro ORM for stackoverflow.com. I am considering it for my …

.net stored-procedures orm dapper
Execute Stored Procedure from a Function

I know this has been asked to death, and I know why SQL Server doesn't let you do it. But …

sql sql-server sql-server-2005 stored-procedures user-defined-functions
EXEC sp_executesql with multiple parameters

How to pass the parameters to the EXEC sp_executesql statement correctly? This is what I have now, but i'm …

sql-server tsql stored-procedures sp-executesql