The stored-functions tag has no wiki summary.
0
votes
1answer
26 views
Mysql error: Not allowed to return a result set from a function
I am trying to have a conditional change in a parameter for update statement.
I am getting the following error when I try the following function
/home/y/bin/mysql -u root < testpri.sql > out
...
0
votes
3answers
40 views
Number is not incrementing using stored procedure in SQL Server 2005
I have data in my CaseFiles table csfl_CaseNo column as
00001/13-14
00002/13-14
00003/13-14
00004/13-14
00005/13-14
Here is my stored procedure to increment the number
ALTER PROCEDURE ...
1
vote
2answers
34 views
How to write a postgres function that returns a set of rows?
Mainly I am looking for implementing some kind of stored views/reports but with parameters so you can easily update them.
I tried to folow the instructions from ...
1
vote
1answer
29 views
why can not I use Like in stored functions?
I'm writting some stored functions in Oracle. One of these is a really basic function who take a string as parameter and return an another string. Here is my function:
CREATE OR REPLACE
FUNCTION ...
0
votes
2answers
38 views
Add multiple tags to table
I have a table tags in database and I want create a query that was based on add values if not exist name of tag, next selected ID and if name exist selected tag ID
I creat a simply code:
DELIMITER ...
0
votes
1answer
28 views
postgres: function with untyped return values
I'm looking for a way to define a postgres function that allows to return untyped row values. For argument sake, let's assume the following tables exists:
create table foo(
id serial primary key,
...
2
votes
1answer
45 views
Can't execute MySQL stored procedure
I'm dipping my toe into using stored functions with MySQL and am having trouble.
Having created a function and tested it, I don't seem to be able to allow other users to execute it. From the ...
1
vote
1answer
50 views
How to specify cx_Oracle stored function RECORD return type?
CREATE OR REPLACE my_package as
TYPE x_type IS RECORD { a_val number,
b_val varchar2(20),
c_val boolean };
FUNCTION ...
2
votes
3answers
70 views
max value using self join
I have table that looks something like this...
mysql> select * from billing_order_history;
+----------+---------------+--------------+---------------------+
| order_id | modify_action | ...
-1
votes
3answers
104 views
sql server 2005 convert time to minutes
I have a few date time functions within my database, but I need to add one that takes the time portion of a datetime field and then converts the time into minutes
I have a function that get the ...
0
votes
2answers
26 views
MySQL concat - within custom function - not working
I try to do this
CREATE FUNCTION getOneCentOrderIds (s text) RETURNS text
BEGIN
DECLARE no_more_orders, ent_id INT default 0;
DECLARE ids text;
DECLARE orders_cur CURSOR FOR SELECT ...
0
votes
1answer
41 views
Attempt to call stored function “dbname”.“functionname” w/o specifying a return parameter
How can I fix this issue? Am i missing with my code or function code?
Here is my C# code
public int AddDetails(string business, string clerkid, string serverid, string ticket, string tablenumber,
...
0
votes
0answers
46 views
How to call an SYS_REFCURSOR from an oracle stored function using php adodb?
i'm a noob developer working a project where the web app has to retrieve information from this Oracle stored function using PHP:
FUNCTION
CEDAAN.FN_GET_GEN_CLIENTE( p_empresa in number, p_nic in ...
0
votes
0answers
53 views
Dynamic SQL Procedure within function
I am trying to create a stored procedure that among other things, updates a table with information from other table:
UPDATE table1 T1, table2 T2
set T1.rank = T1.rank + T2.rank
T1.tags = ...
0
votes
1answer
38 views
Why is it not recommended to use server-side stored functions in MongoDB?
According to the MongoDB documentation, it isn't recommended to use server-side stored functions. What is the reason behind this warning?
0
votes
0answers
25 views
MySQL stored function parameter issue
Heres my query -:
SELECT * FROM unzip
INNER JOIN sharer
ON sharer.id = unzip.share_src
WHERE creator = 12
AND (share_src IS NULL
OR checkSrc(sharer.id, sharer.space, sharer.date, ...
1
vote
2answers
101 views
How to view a stored function - SQL Server
Version: SQLServer 8
I would like to view the contents of a stored function in sqlserver, i.e. what exactly the function is doing.
None of the options listed here work for me. There doesn't appear ...
1
vote
0answers
25 views
mysql stored function simple login, extract int from set
this is my first mySQL stored-function 'cause i've always managed such things with php.
I want a function that checks if a user can log in my client-area.
I wrote the code above:
DELIMITER $$
CREATE ...
0
votes
0answers
33 views
Why data caching is required when working with table-valued function?
I have a simple ASP.NET MVC application with controller:
public ActionResult Index()
{
return View(GetData());
}
protected IEnumerable<ModelItem> GetData()
{
...
0
votes
0answers
72 views
MySQL handler detects SQLSTATE in sub stored programs
MySQL's handlers in stored programs seem too much sensitive : it seems that handlers detect SQLSTATE in sub stored programs. Is there any method not to detect?
Test table & data
create table ...
0
votes
1answer
33 views
Can I save unit keyword into a variable in MYSQL?
I would like to write a procedure like this:
CREATE PROCEDURE `addByType`(IN myDate DATETIME, IN myType INT, OUT output DATETIME)
BEGIN
DECLARE unit ?;
CASE
WHEN myType = 1 THEN
SET ...
0
votes
1answer
75 views
Stored function with loop returns consisted of more than one row?
The following stored function is returning:
'#1172 - Result consisted of more than one row'
What am I doing wrong?
It's a Stored function, with no params and expects an int to return.
BEGIN
...
2
votes
1answer
30 views
MySQL stored function: CONTAINS SQL or NO SQL?
For the stored functions below, which is the correct flag: CONTAINS SQL or NO SQL?
CREATE FUNCTION BigIntHash(str VARCHAR(255)) RETURNS BIGINT UNSIGNED DETERMINISTIC
RETURN ...
0
votes
1answer
30 views
Database for learning/teaching stored procedures [closed]
What is the best database to start learning stored procedures.
Taking into account that each database has its own syntax. Like Postgresql has functions, SyBase, Oracle, MS SQL, DB2 has some ...
1
vote
3answers
157 views
SELECT…INTO returns null in Stored Procedure
This function:
CREATE FUNCTION `GetCardID`(numId INT) RETURNS int(11)
DETERMINISTIC
BEGIN
DECLARE retcard INT(11);
SELECT id
INTO retcard
FROM cards
WHERE `number` = numId
...
2
votes
3answers
123 views
Required single query to fetch data from tables
I have the following tables
//all users deails
smsusers(id,fname , lname ,primary key(id));
//message details of users
//one smsusers can have N messages
...
1
vote
4answers
463 views
How to pass a parameter from vb.net
I have a Program that will auto run each night, run a query, and email results. In my program I am calling a function as part of the query... What i'd like to is pass the date the program is run as ...
2
votes
3answers
153 views
Run a function as today's date
I have a query below that calls on a stored function. In the function you will see I need to declare a start date (@startdate) and an end date (@End date). These queries will be used inside a C# ...
1
vote
1answer
59 views
Translate help MS SQL => Oracle
I am trying to translate an MS SQL function to oracle I am running into trouble. They reason being creating temporary table within the function to gradually add to. I can't seem to replace the ...
0
votes
2answers
151 views
Mysql function call
If I call a function several time then will it execute every time or just execute once and the value will be used then after several time?
Example:
select ...
0
votes
0answers
36 views
Detecting Unused Functions in MySQL
I have recently finished developing a MySQL Database. During development I created multiple stored functions that I actually used within various views. While experimenting, the number of of version ...
1
vote
1answer
123 views
Select into @var always null
Alright so here is my mysql function
DELIMITER $$
CREATE DEFINER=`root`@`%` FUNCTION `password_reset_request`(spUsername VARCHAR(120)) RETURNS varchar(255) CHARSET utf8
BEGIN
DECLARE vcode ...
-1
votes
1answer
48 views
Suggestion needed regarding performance of stored procedure [closed]
We have an application which needs to write data to a particular table in oracle DBMS. But before writing to the table it do certain manipulation on the data it writes.
We are now planning to take ...
1
vote
1answer
76 views
referencing parameters on stored procedures in PostgreSQL
I'm Converting some SQLServer stored procedures and I have a problem that I can't solve.
That's SQLServer function:
CREATE FUNCTION [dbo].[getViewNodeHierarchyAux](@pivot varchar(255), @parents ...
0
votes
1answer
464 views
Why use table valued function instead of a temp table in SQL?
I am trying to speed up my monster of a stored procedure that works on millions of records across many tables.
I've stumbled on this:
Is it possible to use a Stored Procedure as a subquery in SQL ...
0
votes
1answer
101 views
macro-like function as filter in postgresql
I have a table with some RDF statements inside, like Quads(graph, subject, verb, object) and I find myself doing queries like:
select * from quads where verb = 'rdf:type' and object = 'smtg:Type'
...
1
vote
1answer
194 views
postgresql with jdbc and stored procedures (functions): ResultSet
I just tried to call a stored function from the server (getStat), that is looking like this:
create type stat as (type text, location text, number int);
create function getStat() returns setof stat ...
0
votes
1answer
81 views
Using a Stored Function in an Entity Framework 4 query
I've got an Entity Framework 4 entity model in my program. There's a stored function I've defined in my SQL Anywhere 12.0.1 database called GuidToPrefix:
CREATE OR REPLACE FUNCTION GuidToPrefix( ID ...
2
votes
1answer
283 views
INSERT ON DUPLICATE KEY UPDATE with last_insert_id()
im trying to create a function
CREATE FUNCTION `func`(param1 INT, param2 INT, param3 TEXT) RETURNS int(11)
BEGIN
INSERT INTO `table1` (`column1`, `column2`, `column3` )
VALUES (param1, param2, ...
1
vote
2answers
756 views
MYSQL Function “Error Code: 1242 subquery returns more than 1 row” but I have no subqueries
I don't know what is the problem why it gives me error in running the function
Here is my sql:
CREATE FUNCTION `test`.`GetProcessorMethodID` (processor_id INT, method_id INT)
RETURNS INTEGER
...
3
votes
1answer
253 views
How to write signal funtion in MYSQL that can be call from Triggers and Stored functions?
In my Database I have a table: Employee with recursive association, an employee can be boss of other employee.
The Table Description:
mysql> DESC Employee;
...
0
votes
2answers
115 views
MySQL multiple result rows in stored function
I've written a MySQL function that calculates a price:
CREATE DEFINER=`[USER]`@`[HOST]` FUNCTION `calculatePrice`(id INT)
RETURNS DECIMAL(8,2) DETERMINISTIC
BEGIN
IF id=10 THEN
RETURN ...
1
vote
4answers
371 views
Convert stored procedure to table-valued query
I have this procedure
ALTER PROCEDURE [dbo].GetHerdByUserProc(@user int)
As
begin
Declare
@GroupId uniqueidentifier,
@UserTrade bit
Set @GroupId = ...
2
votes
2answers
157 views
MySQL Function: Selecting and returning column
I have a table Processes, which consists of an ID (unsigned int, auto_increment) and Name (varchar, unique).
Selecting the following function with any input (whether in the table or not) always ...
2
votes
1answer
842 views
Usage of stored functions in entity framework
I have an old Oracle DB which I'm trying to use within EntityFramework 4.1 application.
I've read about the big limitation that oracle has with EF- you can't call Oracle stored Function with EF unless ...
0
votes
1answer
294 views
Trying to get table from Oracle function. Get Inconsistent datatypes instead
I'm trying to return a query from a stored function in Oracle. This simple attempt fails:
CREATE OR REPLACE TYPE GetObjectsForFolderObjectType IS OBJECT (
FOLDER_ID NUMBER(9), OBJECT_ID ...
4
votes
2answers
142 views
IF statement in MySQL stored function goes wrong
I get a error on line 12 (at the endif statement).
I belief I´m doing something wrong within the IF or ELSE, can anyone help me?
DELIMITER $$
CREATE FUNCTION TEST (`param` INT)
RETURNS INT
...
1
vote
1answer
72 views
Order by a value returned from function called in Stored Procedure MYSQL
I want to order by dist : dist is a double value returned from function called isNeighbour It throws error as dist is undefined : Unknown column 'dist' in field list
DELIMITER $$
DROP PROCEDURE IF ...
1
vote
1answer
565 views
Cursor on record table type in Oracle
I am having a declaration as shown below
type respond_field
IS
record
(
provider_id VARCHAR2(100),
provider_name VARCHAR2(100));
type respond_field_group
IS
TABLE OF ...
0
votes
0answers
126 views
Can I pass data table object to stored procedure or function in MySQL?
I'd Like to pass object from java web application to a query that has a parameter of that object kind the JPA(Java Persistence Unit) is responsible of converting entity class object form/to database ...





