The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
25 views

Drop temporary tables in a single session

How to drop the temporary tables in procedures for the same session. Because I am facing a problem regarding temporary tables in Postgres Sql. If two procedures: A() having a temporary table say ...
0
votes
1answer
28 views

Temporary Tables in Postgres Sql

I am facing a problem regarding global temporary tables in Postgres Sql. If two procedures: A() having a temporary table say temp(id, name) B() having a temporary table say temp(id, name, address) ...
-1
votes
2answers
44 views

Confused with Oracle Procedure with sequence, linking errors and filling null fields

I am trying to make a procedure that takes makes potential empty "received" fields use the current date. I made a sequence called Order_number_seq that populates the order number (Ono) column. I don't ...
0
votes
1answer
85 views

SQL Server Stored Procedure to generate a Code based on firstname and lastname

I'm new to SQL Server stored procedures. I was wondering how to go about writing this stored procedure. The scenario is: The procedure takes firstname and lastname as parameters, on basis of that it ...
1
vote
2answers
36 views

'Equivalence' in Fortran

I understand that two variables, say a1 and a2 appear in Equivalence(a1,a2) statement in Fortran, then they occupy the same memory space. So say this happens in a procedure where both a1 and a2 are ...
0
votes
1answer
12 views

Linkage convention

When a compiler compiles a procedure, I understand that there's a 'Linkage convention' for ensuring that the caller and callee's environments are sorted out fine in this situation. How can a ...
-1
votes
3answers
32 views

How do I incorporate NEXTVAL in my procedure?

I have the following procedure create or replace procedure prod_add_sp (p_idproduct in bb_product.idproduct%type, p_prodname in bb_product.productname%type, p_descrip in ...
1
vote
1answer
69 views

variables/arrays from tcl procedure

How could i pass some variables/ arrays outside of procedure? Lets say I've my procedure 'myproc' with inputparameters {a b c d e}, e.g. myproc {a b c d e} { ... do something (calculate ...
0
votes
1answer
77 views

Mysql stored procedure called successfully but no output records shown

I have used the following code to create a procedure: DELIMITER // CREATE procedure GetBooksbyBorrowerID (IN Bor_id VARCHAR(10)) BEGIN SELECT borrower_details.Borrower_ID ,borrower_details.Book_ID, ...
0
votes
2answers
25 views

Getting error in creating procedure

I created a procedure but when i tried to execute its giving an error that no database is selected.Here is my procedure. DELIMITER $$ create procedure myproced as declare arpt ...
1
vote
2answers
51 views

PL/SQL Statements ignored & Not enough values

--Below is for testing only - to be deleted later CREATE OR REPLACE PROCEDURE movie_rental_sp (movieIdCount IN OUT NUMBER, movieID IN OUT NUMBER) IS noMovie EXCEPTION; BEGIN SELECT MOVIE_ID, ...
0
votes
0answers
106 views

Entity Framework 4 executing oracle stored procedure dynamically

I have a dashboard application in which the chart configurations are kept in a db and the data to be shown is from a different db..the configuration contains the connection string to get the data ...
1
vote
1answer
63 views

TCL- How to interpret a string as multiple arguments in tcl procedures? [duplicate]

I have a procedure that needs to accept a set amount of parameters to make arrays. I have a csv file with the information for the parameters on each line. Using the command [split $line ,], returns ...
0
votes
1answer
112 views

Create Stored Procedure from PHP

I am creating a database setup script which create and setup database on fly. The mysql user I use have full previledge to create stored procedure. My database server is different from my application ...
2
votes
1answer
148 views

Count recurring records on data base every 30 minutes interval

I need some help on the below i have the table "Data" getting data stored on it like the below +------------+----------+----------- | regdate | regtime | items ...
0
votes
0answers
36 views

MySQL trigger syntax error(s) [closed]

I have a error in mysql Trigger! I have a table with six cells. And have error in syntax.. I need rescue some data, you can help me? CREATE TRIGGER ins_puntos AFTER UPDATE ON tb_pedidos FOR EACH ...
-2
votes
1answer
244 views

Select component on current focused/active form [closed]

I need to select the component on currently focused/active form, but can't figure the way of doing this completely. So, I have a delphi unit with all common procedures on it, so I call them from other ...
0
votes
0answers
24 views

Parameter without datatype in Mysql Procedure?

Ok, so while writing a Stored Procedure in MYSQL i came across a problem where i had to write a procedure where i had to pass a parameter whose data type could depend upon the other parameter. I mean ...
0
votes
0answers
79 views

How to know if MYSQL query successfully executed in a procedure?

I have written a MYSQL procedure which has codes to populate data into 3 different tables. To do so I have three independent queries written which populate respective tables. My question is if due to ...
0
votes
0answers
4 views

Stored Procs: case when before mysql query

BEGIN CASE assetTypeNo WHEN 0 THEN ( SELECT * FROM books ) WHEN 1 THEN SELECT * FROM magazines END; END In ...
2
votes
2answers
122 views

Is there any use for views,triggers and stored procedures for a Java GUI project?

I am making a Java gui and web application which will use the same mysql database. It's a DTh management system where all the information will be stored and retrieved dynamically depending on input. ...
2
votes
2answers
209 views

How to use append-map in Racket (Scheme)

I don't fully understand what the append-map command does in racket, nor do I understand how to use it and I'm having a pretty hard time finding some decently understandable documentation online for ...
0
votes
0answers
154 views

ObjectDataSource 'could not find a non-generic method that has parameters some parameters

Plz help, i got the following error when i insert new record using DetailsView and Oracle Procedures. ObjectDataSource 'ObjectDataSource1' could not find a non-generic method 'InsertSurvey' that has ...
0
votes
1answer
199 views

.SQL files in visual studio 2012

I have an question about executin of sql commands from visual studio, I have a few procedures which are not so short so it would be a drag if i execute them with comandtype text and write it with ...
0
votes
1answer
147 views

Creating procedures, using putty.exe

I am doing an mysql php application and I need to create a procedure to make my foreign keys work fine and also to create a calendar for report purposes. However, I have been trying to create the ...
1
vote
3answers
58 views

More intuitive way of using a variable as a default value for a TCL procedure

So, I used the thread of a similar name to get this working using the list command. Here is my working code: proc E364xA::Connect [list [list VisaAlias ${E364xA::DefaultAlias}]] { ...
0
votes
2answers
79 views

Failing procedure for testing exception block

I'm testing few procedures which are in production and have added some part in an exception block. I made a copy of those procedure in a test enviorment and I need to raise a exception for testing. ...
0
votes
1answer
166 views

updating date by stored procedure

I have a problem! My task is to count the age of books in my library database. After that call some books as too rare, some rare , and usual using value column. My library table ( ... , age- date , ...
0
votes
1answer
15 views

Website that communicates with Server

I'm a newbie. Im thinking about developing a website that people can be come members of and login. I know that ill need to have a server with a database to store info. What i need to know is, do i ...
0
votes
3answers
313 views

Assembly language: macros vs procedures

I'm new to assembly language and this question came across to my mind: Which is better solution for structuring my code, macros or procedures? While code included in a macro is just copied to the ...
2
votes
1answer
244 views

Parsing XML Embedded in VBScript (QTP)

Say there's a QTP Function Library that contains many procedures. Each procedure contains documentation written in an XML node format that describes the purpose, return values and other information ...
2
votes
1answer
188 views

Using SELECT INTO in HSQL 2.2 routines

When I migrate a Oracle Function to HSQLDB , I need translate the "Select into" for HSQLDB. The Oracle script may seems like : CREATE FUNCTION getId() RETURN NUMBER IS temp_id NUMBER; ... ...
0
votes
2answers
482 views

MySQL calling a procedure with select statements from a trigger - “Not allowed to return a result set from a trigger”

Here's one for the SQL wizards. Similar questions have been asked before and I have some idea what the problem is but I'm having trouble rewriting the select statements inside my procedure to avoid ...
0
votes
1answer
97 views

mysql procedure when while case

Create procedure count_loop( p_start int, p_stop int, p_step int unsigned, p_delim varchar(5)) begin ...
0
votes
1answer
42 views

How to exexute mysql event at a perticular time with out using if

Iam Using following code to run this event using IF CURRENT_TIME() = '23:50:00' But doing so, every second it has to compare the time with server time. can we implement this with out if condistion ...
2
votes
1answer
275 views

SQL Function execution using Spring JDBC

I have an sql function in the database FUNCTION RATELIMIT_OWN.Get_Logs ( p_yyyymm VARCHAR2, p_numec NUMBER ) the function returns TYPE RATELIMIT_OWN.LOG_RECORD AS OBJECT (EVENTID ...
1
vote
0answers
193 views

Calling procedure with updates and a ResultSet in MyBatis

I want to map a SQL Server stored procedure with MyBatis, using annotations. @Select(value = "{call sp_cen_obliczcene(" + "#{wytworId, mode=IN, jdbcType=NUMERIC}, " + "#{rodzajCenyId, ...
0
votes
1answer
1k views

MySQL Stored Procedures issue with if then else statements

I have the need to store the changes in our invoice system to export it to the account system (which is a 3rd party app). What I'm trying to do is to add two triggers. ON INSERT : A new invoice is ...
0
votes
1answer
425 views

Writing IBM DB2 9.7 inline or compiled sql statements not working

I would like to write "procedures" in DB2 9.7 without defining the "CREATE PROCEDURE" -statement. Apparently this is something called "compiled" sql statement. However, I am having problems in getting ...
1
vote
3answers
308 views

Basics of defining procedures in Python?

Hey Guys I am pretty new to Python and I am learning this programming language. I am using the Python IDE (GUI) for running all my codes. I have covered till the topic of defining custom procedures. ...
0
votes
0answers
49 views

ARINC424 Parsing and SID/STAR Procedure Decoding

I am programming in VB2010 and am going through the procedures section of an ARINC424 datafile. What I'm doing is creating a simple GIS viewer for the procedures. Currently i am implementing my own ...
1
vote
1answer
513 views

How to selectively export oracle to dump - minus some procedures or packages

We need to export an 11g database to get it into an 10g system. But we need to leave out a package, or at least some functions and procedures, that were accidentally implemented using 11g-only ...
-3
votes
1answer
81 views

Pascal exit procedure when other one called

So my problem looks like, I have two procedures and they call each other but this can provide overflow. How to JUMP to procedure - like asm jmp not call? I don't want to use labels because I can't use ...
0
votes
0answers
42 views

Stuck between the usage of mysql routine and view

I've this procedure named 'searchUser' with multiple parameters (say gender, religion and occupation). Now, the problem is when i receive these parameters, i want to do a step by step search. First i ...
2
votes
1answer
1k views

The MySQL “DELIMITER” keyword isn't working

Ok so, I've been ripping my hairs ou on this one, why doesn't this work? DELIMITER | CREATE PROCEDURE Decrypt_pw() READS SQL DATA BEGIN SELECT 'Hey Select'; END| It's so basic and I'm pretty ...
0
votes
0answers
87 views

Relational Data Modeling: Subtypes that are medical procedures performed

A Patient Care Report PCR must capture procedures performed on a given patient. In the system this relates to there are 60 procedures types. Each procedure has the following data elements in common ...
7
votes
5answers
7k views

SQL Server - copy stored procedures from one db to another

i am new to sql, and what i needed to do was to combine 2 .mdf databases into one. I did that using Sql Server 2008 Manager - Tasks > Import/Export tables.The tables and views were copied ...
0
votes
1answer
148 views

mssql_bind not working in heterogenous server

I have PHP on linux server and mssql 2005 on windows server, whenever i try to connect php with mssql , while executing stored procedure it give me error , my code is as below ...
-1
votes
2answers
470 views

php global function or procedure

I have some php code which works to chek the incoming url and i have hundreds of php pages in which i have to chek the incoming url and i want to do make that code like a procedure or function which ...
1
vote
1answer
95 views

how to add annonymus block to procedure Oracle?

How I can create procedure with following code because I'm new in oracle always used sybase/ms sql and it was easier. DECLARE temp VARCHAR2 (255); last_val NUMBER(9, 0); CURSOR c1 IS ...

1 2