A subroutine available to applications accessing a relational database system.

learn more… | top users | synonyms (2)

-2
votes
0answers
34 views

Output variable from dynamic SQL

I have an issue wen I try to output a value from a dynamic T-SQL Query inside of a stored procedure. I try to execute the following and simply output a 1 if something was found: SET NOCOUNT ON ...
0
votes
1answer
12 views

What does this code line is doing

In reference to my question, Converting a big stored procedure into a view In SP i have this code line, @countCrates = COUNT(DISTINCT ISNULL(countCratesAddress, 'EMPTY')) , @FirstCrateAddres = ...
0
votes
0answers
8 views

Converting a big stored procedure into a view

I have a stored procedure of around 500 lines developed by an ex-employee. Is there anyway I can convert it into a View. Going through it is hard; it's complex and I don't know much sql. Is there ...
3
votes
1answer
17 views

Forced usage of stored procedures with ADO.NET Entity Framework

I would like to have your advice. I'm now developing a small WPF client application using C#, bindings, ADO.Net Entity Framework, ODP.net and an Oracle database. The application is a small one, two ...
0
votes
1answer
21 views

running parallel stored procedures using php

i'm looking for a reliable way of sending and controlling parallel stored procedures using php. i want to call many stored procedures in the same time and controlling their results. for example, i ...
0
votes
2answers
12 views

output parameter in stored procedure not working

I am new with stored procedures. I have simple stored procedure for addition of two numbers as follows: alter proc simpleProc ( @Tax int , @TotalAmount int, @sum int output ) as ...
-2
votes
1answer
41 views

Working with Temp Tables and Stored Procedure to get some data

I have a project, the aim is to get result analysed as shown in image: However, My table looks like this in the image here: Now, I have search using my title in this question to see how to achieve ...
1
vote
1answer
18 views

Handle more than one returning value in stored procedure

I have following stored procedure ALTER PROC spInParam ( @partyCode NVARCHAR(50) ) AS BEGIN DECLARE @totalAmount float DECLARE @setLoop int DECLARE @setCNT int print 'Party Code '+@partyCode; set ...
0
votes
1answer
9 views

How to create or execute a Stored Procedure within another Stored Procedure in IBM DB2?

How to create a Dynamic Stored Procedure using a Stored Procedure in IBM DB2 9.7 for Windows ? Example below is my dynamic generated stored procedure: CREATE PROCEDURE DB2ADMIN.INSERT_A (inputVar1 ...
2
votes
2answers
23 views

SQL Server query - Insert @space by using space button

I am currently doing a stored procedure with parameter, when I insert data by typing space shown at below with replicate format to make the result. declare @space varchar(200) select @space = ...
1
vote
3answers
34 views

SQL Stored procedures and error handling

I use Stored procedures all the time. but i never used error handlers inside stored procedures. I just came to know about error handlers. I tried to do it in my stored procedures but i never got the ...
3
votes
3answers
58 views

Stored procedure with nullable value in date field

In this stored procedure , in a where condition if @startDate and @EndDate values are null then how it can be handle using COALESCE. CREATE PROCEDURE dbo.SP_ManageLeaveSearch @StartDate ...
0
votes
1answer
9 views

Entity Framework pass a complex type parameter to a stored procedure

I have a stored procedure which is defined with custom input type because I need to send there whole grid. For example something like this: CREATE TYPE members_table_type AS TABLE ( mem_username ...
1
vote
1answer
11 views

Commands out of sync while calling stored procedure Mysql

i have two store procedures, i needed to page the record (say select every next n records) to the first one which select all matching records is. CREATE PROCEDURE `trans_all`(IN varphone VARCHAR(15)) ...
0
votes
2answers
34 views

SQL Stored procedure delete duplicate records, keep one

I'm using 3 tables tblproduct, tblstock and tblwinkel. There is are foreign keys productid and winkelid in the tblstock table. The tblstock table has a field stock as well, which is an integer. I ...
-2
votes
0answers
21 views

Auto updation of an ms sql table with a file in ftp server

I am using MS SQL server 2012. I have a table in the database with more than 100 fields. This table needs to be updated daily automatically. The data with which the table needs to be updated is in the ...
0
votes
0answers
8 views

pl/sql update procedure with cursor gets stuck

i wrote a program that uses cursor in order to update some row in these table- here is the program: declare -- Local variables here cursor s is (select unique * from ...
0
votes
0answers
41 views

Dynamic Stored Procedures in .NET EF

I'm using EF 4 with .NET 4. I have a stored procedure that returns a dynamic result set based on an input parameter. Whats the best way to use EF to call this stored procedure and return the result ...
0
votes
3answers
74 views

Stored Procedures SQL Server

I have created a stored procedure which lists all customers that have 7 days left on their membership. CREATE PROC spGetMemReminder AS SELECT users.fullname, membership.expiryDate ...
1
vote
1answer
18 views

How do I change current mysql database dynamically in a procedure?

For our system we are using multiple databases with the same structure. For example when we have 1000 customers, there will be 1000 databases. We've chosen to give each customers his own database, so ...
0
votes
1answer
30 views

How to pass string to stored procedure

My stored procedure is: ALTER Proc [hometution].[Sp_GetHomePageProducts] @CatIds nvarchar(500) as begin Select Top 3 * from Product p where p.Id in (Select ProductId ...
0
votes
1answer
29 views

disadvantages of using a DataTable as a parameter when creating a SP [closed]

Anyone know the disadvantages of using a DataTable as a parameter when creating a SP (store procedure)
0
votes
1answer
26 views

In-memory table multiple INNER JOIN

I am trying to update a report in SSRS. The query is build by another colleague using a stored procedure, whom has left the project and can't contact anymore. He used an in-memory table for all ...
1
vote
5answers
70 views

Converting String List into Int List in SQL

I have a nvarchar(MAX) in my stored procedure which contains the list of int values, I did it like this as it is not possible to pass int list to my stored procedure, but, now I am getting problem as ...
1
vote
1answer
34 views

User has permissions problems with SPROC even after granted permissions to all DB items

The MetricsUser account receives the following error when executing a stored procedure: "Msg 1088, Level 16, State 7, Procedure Data_SPROC, Line 59 Cannot find the object ...
0
votes
2answers
37 views

SQL server stored procedure - Can I invert this query?

I am not an sql Guru, that's why I'm asking you guys. I have this stored procedure: USE [groep2_festivals] GO /****** Object: StoredProcedure [dbo].[GetGroupsNotOfFestival] Script Date: 15-05-13 ...
1
vote
1answer
28 views

Deploy SQL File from VSS to SQL Server using Batch File

I want to know if there is any way for me to deploy a stored procedure (sql file) that is checked-in at VSS? I have a couple of procedures that I want to deploy to SQL Server. I'm trying to create a ...
0
votes
0answers
23 views

What is the right method to reuse a cursor inside a mysql stored procedured?

What is the right method to reuse a cursor inside a mysql stored procedure? We're doing it like below, and It just does not look correct. Does anyone know whats the right method to do this? ...
1
vote
1answer
41 views

Join with table in another database

I need to join with table in another database but do not know its name, I only get it from procedure parameter. So I want to do something like this: select * from [DB1].dbo.[Table1] t1 inner join ...
0
votes
0answers
26 views

Deleting 2 rows that have a same Value in a Parameter - SQL

i have a table that contain similar Values in the Column "Name" in different rows, i would like to delete the duplicate ones and keep one , i tried the while loop but it didn't work , any simple ...
0
votes
1answer
23 views

Two select statements in stored procedure

I have the following stored procedure: create procedure Get_CarInfo @PlateNo nvarchar(10) as select Administration.City AS AdCity from Administration where Administration.AdministrationNo = (select ...
1
vote
2answers
28 views

How can I call stored procedure returning both a table and a return statement in a controller in mvc entity framework 4?

I have a stored procedure which returns a table as well as a return errorstate which is an int. How can I call this stored procedure from a controller in MVC. (I'm using Entity Framework 4) Stored ...
2
votes
1answer
41 views

Handle stored procedure output

I have this procedure: ALTER PROCEDURE [xyz].[stored_proc] @input1 as int, @input2 as nvarchar(255) AS BEGIN SET NOCOUNT ON; UPDATE ... SET input1=@input1 WHERE ...
0
votes
0answers
31 views

Drill-Down DevExpress Using Stored Procedure

Well, I am trying to create a drill-down DevExpress report with a stored procedure in SQL Server but the drilled data are same in every row, do anybody have the solution? thanks. Here is the stored ...
0
votes
1answer
35 views

Fastest Data Transferring Over A Linked Server

When it comes to transferring data between linked servers, there have been several method I have used in my work to date. I'm wondering if there is an accepted fastest/most efficient way that a task ...
0
votes
0answers
59 views

select into or insert into for stored procedure

I have a stored proc that does a transfer and manipulation from one database to another. There are eight tables in all that are created. My method is basically BEGIN IF table exists. BEGIN Drop ...
-2
votes
1answer
31 views

Not allowed to return a result set from a trigger

I need to increment the next highest character field upon an insert - e.g. if '007' exists, then next is '008' I have a stored procedure: BEGIN SELECT LPAD(CAST(MAX(Line_Order) AS SIGNED ...
0
votes
0answers
20 views

Windos Azure Mobile Service: Executing a Insert Stored Procedure in the data trigger

I need to call a stored procedure when the Insert Script trigger is called. The idea is use the stored procedure to insert rows in 3 tables, including the original table. I have the following tables ...
1
vote
0answers
30 views

ServiceStack MARS (Multiple Active Result Sets) using ORMLite and Output Parameters

ServiceStack ORMLite is great, I've typically steered clear of the ORM mentality preferring to build databases as it makes sense to build databases instead of a 1:1 class model. That said, there are ...
0
votes
1answer
22 views

Using SQL Server stored procedures with empty resultsets in PHP 5.4

I use PHP 5.4 with Microsofts 3.0 drivers to execute stored procedures in SQL server 2008. It works fine until I execute a procedure that isn't returning any result as it is just doing an update. The ...
1
vote
1answer
31 views

How to use IF Else in store procedure?

I am trying to execute Select query with ID parameter, now if ID is empty then I want All Rows, otherwise only row which contains this ID, So far, I have created this Store Procedure, IF(@CustId = ...
0
votes
1answer
26 views

Working with SQLServer 2008, stored procedures and WebService

So I'm trying to invoke an stored procedure from a web service but as soon as I add either the "prepareCall" or the "prepareStatement" my WebService stops working. When I test it it shows some big big ...
-1
votes
1answer
33 views

Incorrect date value: '0000-00-00' for column 'req_dt' at row in mysql

I am working on mysql stored procedure it executes the call statement with the following parametrs CALL GetAbsentReportData('2011-11-01','2011-11-30',3); It shows an error for this statement ...
0
votes
3answers
41 views

search in sql with 2 input parameter

i have 2 input parameter and i want search with These CREATE TABLE dbo.tbl_answer ( an_del INT, u_username NVARCHAR(50), u_name NVARCHAR(50) null ) INSERT dbo.tbl_answer VALUES(1, ...
-3
votes
0answers
14 views

Stored Procedure unable to return query for XML [closed]

I got a stored procedure trying to obtain data from UserLog table, store in one temporary table, and then compare the original data with updated data. If the updated data is diff from the original ...
-1
votes
0answers
31 views

Execute .js file within a mssql stored procedure

I have a web application that gets the shortest distance from a given point to a given array of points. This works based on a javascript file that gets loaded when user requests the info. Now, I ...
0
votes
0answers
17 views

Retrieving an Oracle cursor from a Stored Procedure using Access 2003

I need to retrieve data from an Oracle Stored Procedure. The stored Procedure is as follows: CREATE OR REPLACE PROCEDURE ATP_CONTRACT_SP ( p_ContractNumber IN VARCHAR2, p_ResultSet OUT ...
0
votes
1answer
22 views

How to use merge to insert value from a stored procedure

I am trying to do something like this: merge MembershipTEST as T using (select OrganisationID, Name From MembershipPending) as S on T.OrganisationID = S.OrganisationID and T.Name = S.Name when not ...
2
votes
2answers
25 views

Populating ASP.NET SqlDataSource from a Firebird 2.0 Stored Procedure

I am working on a project where I do not have any control over the versions of products that I have been asked to work with. I am building an ASP.NET user control. Data is retrieved via ...
2
votes
1answer
17 views

how to get resultsets from sybase stored procedure

I have a stored procedure with the following format : CREATE PROCEDURE proc_test @variable1 int AS SELECT column1, column2, .... FROM table_test Because this procedure doesn't return ...

1 2 3 4 5 199