A procedure is a subroutine that does not return a value.

learn more… | top users | synonyms

0
votes
1answer
23 views

Mysql function to return row count from a procedure call

I am trying to write a function to return the number of rows a call to a stored procedure would return. I'm trying to minimise repetition of the code (for reduced code maintenance/debugging- the ...
0
votes
1answer
19 views

Drop a non existing procedure in MySQL

I'm using MySQL 5.5.31 on fedora and I have trouble dropping a non existing procedure. With the root user: -Create a new database: test -Create a new user: test -Give all permissions to user test for ...
0
votes
0answers
10 views

MySQL Loop Procedure using two tables

I'm having trouble creating the right procedure loop through my master table on keyword_phrase and text search for a list of negative words held in the negative table. Each 'keyword_phrase' needs to ...
0
votes
1answer
20 views

PL/SQL procedure succesfully completed but shows nothing

I've the following procedure code: create or replace PROCEDURE Ventas_cliente( p_DNI IN CHAR ) IS CURSOR c_pedidos_clientes IS SELECT * FROM Pedidos_venta WHERE DNI_Cliente = p_DNI; BEGIN ...
2
votes
2answers
104 views

forward declaration of procedure in delphi

How can I make a forward declaration of a procedure in Delphi and make it's implementation in other place? I want to do something like this C's code but in Delphi: void FooBar(); void FooBar() { ...
0
votes
1answer
21 views

How am I supposed to test if an assembly procedure works?

I'm starting to learn assembly. Let's say I write a procedure to find to minium value in an array of integers. PUBLIC _findmin .MODEL SMALL .CODE _findmin PROC // code here... _findmin ENDP END ...
0
votes
1answer
20 views

How to create a filter in SQL through a procedure or function?

I've tried to do it like this: -- RF-001 Informe de ventas por cliente CREATE OR REPLACE PROCEDURE Ventas_cliente( DNI IN CHAR ) IS BEGIN SELECT * FROM Pedidos_venta WHERE DNI_Cliente = DNI; ...
0
votes
1answer
49 views

sql server procedure to update table on conditions

I am trying to write a stored procedure that will run every day and check invoices for past due or not. I want to pull all invoices from table that are not paid then I want to go through them and ...
0
votes
1answer
32 views

Procedure to delete only if database higher then sysdate

Ive currently a procedure that deletes a customer a fairly simple procedure that's inside a package body. Here is the code for the procedure that runs and deletes the customer: PROCEDURE ...
0
votes
0answers
40 views

Mysql - Procedure - Error 1054 - Unknown column

Hello i have this procedure: BEGIN declare myvar int; SET @l_sql = CONCAT('set @result = (INSERT INTO ',p_table, '(Sensor) Values(123)'); PREPARE stmt1 FROM @l_sql; EXECUTE stmt1 ; DEALLOCATE PREPARE ...
2
votes
1answer
59 views

PostScript execution of nested procedures

(I'm back with yet another question :-) ) Given the following PostScript code: /riverside { 5 pop } def /star { 6 pop 2 {riverside} repeat } def star I'm wondering how nested procedures should be ...
0
votes
1answer
53 views

How to assign dynamic data source to GridView using Entity Framework?

I have an Stored Procedure which may return some unpredictable rows and columns, based on some business logic written in my SP. That is for sure that it will return only one set of Result Set data ...
0
votes
2answers
54 views

how to call a plsql procedure

I created a procedure as follows create or replace procedure "GETCUSTNAMEZZz" (cust_identifier1 IN NVARCHAR2(10)) is begin DBMS_OUTPUT.PUT_LINE (FNAME || ' ' || LNAME FROM customer WHERE ...
0
votes
2answers
32 views

Basic Oracle Procedure - Refuses to work

I am trying to implement a simple procedure in Oracle, and I'm really at my wits end as to how to do it. Create PROCEDURE Getcustomername33( wcust_id varchar2 --Input parameter , ...
0
votes
1answer
35 views

Using a simple case statement in a procedure

As I was updating tables, I though to myself that my way is very cumbersome so I though of using a case statement. Although I would like to use it in a simple procedure, though thats where my problem ...
0
votes
2answers
27 views

Returning procedures values in Scheme

I try to call and take value of a procedure with code below (define main (x y) ((< x y) (p1 x) (p2 y))) (p1 x) returns 'first, (p2 y) returns 'second however in main there is nothing to return. ...
0
votes
1answer
44 views

Segmentation fault when passing arrays from C to nasm

I have a C program which calls a function that is implemented in nasm. The C-call: extern void calc(float *, float *, float *, float *); //... float *data1, *data2, *results1, *results2; ...
-1
votes
1answer
50 views

Return anonymous types from stored procedure

This question is just a duplicate of this question here: Returning anonymous types from stored procedure with LINQ2SQL But its been 4 years and no one has answered it, so I was hoping I could ...
0
votes
1answer
42 views

no return value of call procedure mysql

I have a procedure in mysql and it has 4 parameters as Input and 3 parameters of OUTPUT and one param of OUTPUT doesn't return nothing (null). DELIMITER $$ drop procedure if exists `cierreMes`$$ ...
1
vote
1answer
22 views

SQL procedure which should shows total

Hi i have procedure which is work and looks like create procedure sp_CountPickupsduringYearReportA1A2 @MyYear int AS SELECT MAX(a.AgencyName), COUNT(PickupID) as YearTotal, COUNT(PickupID)/(CASE ...
0
votes
1answer
12 views

use all values in a list as arguments (scheme)

(define a_list (list 2 3 4)) (define (add x y z) (+ x y z)) (add a_list) Obviously this doesn't work, but what is the correct way to do this? What I want to do is to use a random ...
0
votes
1answer
49 views

How to run a procedure if a module is successfully imported in Maya

I am just finishing a script that cam be run as a module. I had a procedure call in the original script so it ran when it was imported, opening my GUI. Say I want to open this window if the module ...
0
votes
1answer
21 views

MySQL Procedure - Assign calculation on columns within an update to a variable to be used in another update

I have a database with 3 tables and I am updating a row in the first, and then trying to update the second and third tables based on the change to a field in the first. Here is what I have at ...
1
vote
0answers
32 views

Multiple call function not working properly

This is my general sub to remove a players card and add it to the discard pile. Then a number is generated and represents a card in my quantity integerarray. The grab variables in here represent ...
0
votes
1answer
48 views

How to call a mysql stored procedure, with arguments, from command line?

How can I call a stored procedure from command line? I have a procedure: CREATE DEFINER=`root`@`localhost` PROCEDURE `insertEvent`(IN `dateTimeIN` DATETIME) NO SQL BEGIN SET @eventIDOut = ...
0
votes
1answer
12 views

DOB in select rounded to year

I have procedure create procedure sp_ChildrenOlderThan5Years as select clientid,firstName,MidInitial, LastName, address, city, 'AK' as 'State', zip,DATEDIFF(YEAR,dob,GETDATE()) as age from Clients ...
0
votes
1answer
18 views

XSLT: DB procedure output to XML structure

I am having a little problem with XSLT transormation and I need your help. I received from database procedure data as follow and I need to transform it to less redundant structure. The structure of ...
0
votes
0answers
29 views

sql create/drop table script

I'm a newbie concerning sql.Iknow packets,procedures,functions and objects but now I have a project that I don't understand with what to begin. I need to make a procedure which,by using the oracle ...
0
votes
1answer
44 views

Raiserror level 16 that does not abort the procedure

Hi all I have a stored procedure that has checks to see if a batch_id exists in a table named valid. If exists I want to abort the remainder of the procedure. I have If exists(select batch_id ...
0
votes
1answer
41 views

MIT Scheme List Sorted in Ascending order

I'm taking a practice exam for a course in programming that deals with MIT Scheme. One of the questions asks: "Complete the procedure (in-order ls) to return the list ls, except stop just before the ...
0
votes
2answers
84 views

How to fetch data dynamically from an oracle table whose structure is known only at runtime using pl sql procedure?

I have been given a requirement to create a pl/sql procedure which will accept select statement as an input parameter. All data must be fetched from the query and printed in DBMS_OUTPUT. I've ...
-2
votes
1answer
80 views

PL/SQL Procedure object [closed]

im trying to write a PL/SQL procedure here which inserts the employee details into a table named EmployeeDetails for each department that offers 3 or more services otherwise the procedure should ...
0
votes
1answer
53 views

Returning File handle from function in vbscript

I have a vbscript function with creates and opens a text file. I want to return the file handle from the function back to the main body of the code. Unfortunately, I'm getting an object doesn't ...
1
vote
3answers
75 views

Return string from SQL Procedure to C#

I have a SQL create procedure query like this USE KOST GO --Cabang means Branch in Bahasa. CREATE PROCEDURE login_pro --received parameter @NoIDStaff VARCHAR(5), ...
0
votes
2answers
62 views

Check if array of predefined size is populated - Pascal

I'm doing some homework which defines how a procedure should be made, procedure DoSort. The procedure has one local variable, called 'data', which is an array of 25 integers. data : array[0..24] of ...
0
votes
0answers
107 views

PL/SQL VSIZE Problems in a Procedure [closed]

I'm trying to use VSIZE inside a procedure and display its value to console. First of all, this code block works: DECLARE var VARCHAR2(50); BEGIN SELECT VSIZE('hello') INTO var FROM DUAL; ...
0
votes
0answers
56 views

The request for <procedure> failed because <procedure> is a procedure object. SQL error 37000

I'm trying to use the SDK for the 123insight MRP system. In the SDK, there is one particular routine called SDK.BOMInsertSDK. Whenever I attempt to execute a SQL query from PHP through the ODBC ...
0
votes
0answers
49 views

Same DBLink name used in Different Schemas of same Database - Invalidates the Procs

I have "PROD-1" db which contains 2 schemas "Schema-1", "Schema-2" I created the private dblink "DBLINK-1" in both the schemas & they are pointing to different targets. here is my configuration ...
-2
votes
2answers
59 views

Testing a procedure?

I'm new to PL/SQL and I think Ive created a procedure inside of my package body, when i run it in SQL commands it says it been successfully created, I am just not sure how to test it? The procedure ...
-2
votes
1answer
196 views

How can I write a PL/SQL procedure to copy tables and contents from another account

I need to write a PL/SQL procedure to create tables that match the ones in another account(I have access to that account). They need to have same columns and types. Also, they need to be filled with ...
0
votes
0answers
19 views

selecting data within trigger

I simplified version of my problem is: I have product on ten different lines and each line has different temperature limits. There are three tables - Temperature Data: Product | Temperature ...
-1
votes
1answer
45 views

Cordova 2.xx Plugin Procedure

I don't quite understand the cordova plugin procedure. I found out that it works through the Cordova Webview, but I don't know which functions and classes are necessary. It would be great if someone ...
0
votes
3answers
60 views

Create Oracle Stored Procedure with exisiting code

I have the following script which i run inside oracle to return some data, however I want to store this as a stored procedure so I don't have to keep re-running this whole bit of code at run time. If ...
3
votes
3answers
86 views

How to split amount to months using query?

I have, for example simplified, this result from query (select... from... where...): id months amount 1 2 120 1 6 180 2 2 120 2 6 180 Now I need to get, from first table ...
2
votes
1answer
90 views

mySQL Stored Procedure - Cursor error

I'm trying to write a mySQL procedure with a cursor to calculate a fare. I pass in the stationid's then I figure out what zone they are in. The fare is a set value of $1 and an additional $0.20 for ...
0
votes
1answer
22 views

Updating using FOR-ALL

I have follwing piece of code TYPE t_dc IS TABLE OF TEMP_DC%ROWTYPE INDEX BY PLS_INTEGER; o_u_dc t_dc; n_index_update_dc BINARY_INTEGER := 0; and then at the end of the script i have ...
0
votes
1answer
52 views

Benthic Golden Oracle: Return multiple ref cursors from procedure for viewing

I'm used to running a procedure and returning one cursor for viewing: var recCursos refcursor; exec user.package.procedure(inputValue1, :recCursor); However, this time I need to run a procedure ...
0
votes
2answers
42 views

Trouble writing a MySQL procedure with CASE/WHEN

I'm trying to write a procedure which will either return a subset of all rows or just return all rows depending on input. I have some code I'm playing with right now (pasted below). In this code, I'm ...
0
votes
1answer
73 views

Stored Procedure that accepts all table fields and updates those values

I'm working through a couple practice questions and I've run across this problem, I keep getting an error when trying to execute the procedure that says Msg 156, Level 15, State 1, Line 1 ...
0
votes
1answer
37 views

Mysql: Procedure to USE dynamic database name on Multi Table Delete

(Using MySQL 5.1) So I'm trying to make a procedure that will take a database name as an argument and issue a MULTI DELETE inside that database. I'm running into two problems that I'm not sure how to ...

1 2 3 4 5 11