Top "Stored-procedures" questions

A subroutine available to applications accessing a relational database system.

How to call a stored procedure from Java and JPA

I am writing a simple web application to call a stored procedure and retrieve some data. Its a very simple …

java sql stored-procedures jpa jboss
SQL Server stored procedure parameters

I am developing a framework, where in I am a calling stored procedure with dynamically created parameters. I am building …

sql sql-server-2008 stored-procedures optional-parameters
Using stored procedure output parameters in C#

I am having a problem returning an output parameter from a Sql Server stored procedure into a C# variable. I …

c# sql-server stored-procedures
Illegal mix of collations (utf8_unicode_ci,IMPLICIT) and (utf8_general_ci,IMPLICIT) for operation '='

Error message on MySql: Illegal mix of collations (utf8_unicode_ci,IMPLICIT) and (utf8_general_ci,IMPLICIT) for operation '=…

mysql stored-procedures
Calling stored procedure with return value

I am trying to call a stored procedure from my C# windows application. The stored procedure is running on a …

c# sql-server stored-procedures ado.net return-value
optional parameters in SQL Server stored proc?

I'm writing some stored procs in SQL Server 2008, and wondered if the concept of optional input parameters is possible here? …

sql-server-2008 stored-procedures optional-parameters
How to return the output of stored procedure into a variable in sql server

I want to execute a stored procedure in SQL Server and assign the output to a variable (it returns a …

sql sql-server variables stored-procedures
Store query result in a variable using in PL/pgSQL

How to assign the result of a query to a variable in PL/pgSQL, the procedural language of PostgreSQL? I …

database postgresql stored-procedures plpgsql postgresql-9.1
SQL Server: Invalid Column Name

I am working on modifying the existing SQL Server Stored Procedure. I added two new columns to the table and …

sql sql-server sql-server-2008 stored-procedures