Top "Output-parameter" questions

output parameters allow stored procedures to return data to the calling code.

How to pass output parameter to a Stored Procedure?

I have written a stored procedure with the following format: ALTER PROCEDURE usp_data_migration (@sourceDatabase varchar(50), @sourceTable varchar(50), @targetDatabase …

sql-server tsql stored-procedures output output-parameter
This MATLAB function returns a vector of results

If I have a function in MATLAB, and within it I have a loop, that calculates two variables, something like: …

matlab output-parameter
Output parameter in stored procedure in EF

I have an existing database with lots of complex stored procedure and I want to use those procedure through EF 4. …

stored-procedures entity-framework-4 output-parameter
Output Parameters in Java

With a third party API I observed the following. Instead of using, public static string getString(){ return "Hello World"; } it …

java api methods output-parameter
ADO.NET calling T-SQL Stored Procedure causes a SqlTimeoutException

I have a T-SQL stored procedure with the signature CREATE PROCEDURE MyProc @recordCount INT OUTPUT @param1 INT ... When executed directly …

sql-server tsql ado.net timeout output-parameter
Output last inserted primary key value from stored procedure

I'm having a bit of difficulty with this one in that I'm not sure how to do this in SQL …

sql sql-server stored-procedures output-parameter
Return an output parameter from SQL Server via a stored procedure and c#

I am having a devil of a time getting an output value from SQL Server. Here is my stored procedure: …

sql-server c#-4.0 stored-procedures output-parameter
How to get stored procedure output parameter into variable using Powershell?

I have a stored procedure returning a string and I need the result as a powershell variable. I'm stuck on …

powershell stored-procedures output-parameter
What is use of varchar output parameter in stored procedure - cannot 'return @myvarchar' but can 'select @myvarchar'

xample: CREATE PROCEDURE dbo.sp_Delete (@p1 INT, @p2 VARCHAR(10) OUTPUT) AS --@p1 will have calculations done and get …

sql-server sql-server-2005 output-parameter
Spring JDBCTemplate Stored Procedure with ResultSet and OutPut Parameter

I created a stored procedure which returns result rows and two output parameters. I am unable to find any thing …

spring resultset jdbctemplate java-stored-procedures output-parameter