Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
8answers
7k views

SQL Server - where is “sys.functions”?

SQL Server 2005 has great sys.XXX views on the system catalog which I use frequently. What stumbles me is this: why is there a "sys.procedures" view to see info about your stored procedures, but ...
11
votes
5answers
475 views

Compute 2,3 quartile average in SQL

I want to write a stored proc in SQL (MySQL) to compute the average of second and third quartiles. In other words I have records for measurements for how long it takes for an URL to load. Records are ...
5
votes
4answers
136 views

Is there a PL/SQL pragma similar to DETERMINISTIC, but for the scope of one single SQL SELECT?

In a SQL SELECT statement, I'd like to execute a function that is deterministic for the scope of that SELECT statement (or transaction would be ok, too): select t.x, t.y, my_function(t.x) from t ...
4
votes
3answers
103 views

Include all functions in the php file I need or just the functions I need?

So here is what I want to do. The first option is to write each function in different php file each one and then include all of them in a php file that is called include functions.php and whenever I ...
3
votes
2answers
66 views

Generate a random number of non duplicated random number in [0, 1001] through a loop

I need to generate a random number of non duplicated random number in plpgsql. The non duplicated number shall fall in the range of [1,1001]. However, the code generates number exceeding 1001. ...
3
votes
1answer
52 views

Mysql Stored Function Performance Issue

I have a query which runs very fast as itself, but when I use that query as a function's body it suffers a great slowdown. Here is my test case: /******************* my function definition ...
3
votes
4answers
2k views

Stored Procedure to Open and Read a text file

I am looking for a stored procedure code that will open a text file, read in several thousand lines, and add the code to a table in the database. Is there a simple way to implement this in T-SQL?
3
votes
1answer
378 views

Stored Functions with Linq to Entities

How can I make a MS-SQL stored function availabe in LINQ expressions if using the Entity framework? The SQL function was created with CREATE FUNCTION MyFunction(@name) ...). I was hoping to access it ...
2
votes
3answers
51 views

How to use values retured from mysql stored function with in() function?

I have a field named 'dealBusinessLocations' (in a table 'dp_deals') which contain some ids of another table(dp_business_locations) in comma separated format. dealBusinessLocations ...
2
votes
1answer
84 views

Syntax error of ''?

I can't seem to figure out where this is coming from... MySQL give me a syntax error of an empty quote and gives me a line number that doesn't seem to be wrong at all. Worse still, deleting the loop ...
2
votes
1answer
163 views

Temporary Table in Stored Functions?

I'm writing a function that I need to use either a TABLE variable for (I hear they don't exist in MySQL) or a temporary table. However, it seems that temporary tables only seem to work in stored ...
2
votes
1answer
119 views

Using Select Statement in MySQL Function Call

In the following MySQL stored function call, instead of having to manually type in the lat long coordinates, I'd like to select a polygon from another table to be tested. I'm having problems getting ...
2
votes
1answer
328 views

stored procedure doesnot exist

I am trying to create a mysql stored procedure . I have successfully created a procedure using the following code : delimiter $$ CREATE PROCEDURE `myprocedure` (IN var1 DATE) BEGIN ...
2
votes
2answers
345 views

How to check if INSERT went well in stored function?

I'm creating a stored function which should insert new row to table. In this table is also one unique column. How can I check if everything goes well and row really was inserted? How can I check ...
2
votes
1answer
305 views

MySQL if statement sequence in stored function

I have a peculiar problem using the IF statement in MYSQL. I have a stored function that returns the content of a table as a string. For my string to return the correct number of results I prepare a ...
2
votes
2answers
214 views

How do I return a binary string (bytea) in a PL/Python PostgreSQL routine?

I'm currently trying to write a procedure in PL/Python to perform a conversion of some data, then return the result as a bytea. (it's quite ugly, actually: marshalling the data in OCaml! Ugly in ...
2
votes
1answer
694 views

Testing performance of Scalar vs Table-valued functions in sql server

OK so I have read a whole bunch of articles suggesting table-value functions and cross apply give better performance than a scalar udf. I wanted to write my function in both ways and then test to see ...
2
votes
1answer
436 views

Recursive stored functions in MySQL

I'm trying to make a function that recursively builds a path for a specific category CREATE FUNCTION getPath(inId INT) RETURNS TEXT DETERMINISTIC BEGIN DECLARE return_path TEXT; DECLARE ...
2
votes
4answers
289 views

How does Oracle process stored function calls in SQL?

guys. Say, I have a query: select t.value, my_stored_function(t.value) from my_table t where my_stored_function(t.value) = n_Some_Required_Value I have rewritten it in the following way: select ...
2
votes
3answers
842 views

MySQL does not support recursive functions? why? since when?

I've written a stored FUNCTION that calls itself, recursively. However when I run it in a query I get this shameless error: Error: 1424 SQLSTATE: HY000 (ER_SP_NO_RECURSION) Message: ...
2
votes
1answer
206 views

Stored function in MySQL doesn't like user supplied dates?

I have a stored function in MySQL: CREATE FUNCTION `login_count`(o INT, start_date DATE, end_date DATE) RETURNS INT READS SQL DATA BEGIN DECLARE total_count INT; SELECT COUNT(*) INTO total_count FROM ...
2
votes
2answers
2k views

Using variables as OFFSET in SELECT statments inside mysql's stored functions

I'm quite new to subject of writting stored function for mySQL database, hence i'm not sure if what i'm trying to do here is possible at all. I need a function that will return a column from random ...
1
vote
0answers
25 views

use varchar value as column name to select a value

i am writing a mysql function to delete a row and have a backup in a key value pair table . I am able to do most but fail in selecting a value from a retrieved column name CREATE FUNCTION ...
1
vote
0answers
36 views

How to create a MySQL stored aggregate function?

I need to write a stored function that does an aggregate operation on a column. Let's say a median (but actually, there are many different summary functions I want to implement). Ideally, I would like ...
1
vote
2answers
112 views

CallableStatement PostgreSQL :Invalid number of parameters error

Im trying to write sample stored functions in postgresql and call them using the CallableStatement offered by JDBC. Here's some my test code Consumer bean =new Consumer(); CallableStatement pstmt ...
1
vote
3answers
51 views

Pass XML from C# to SQL Server

I'm trying to send XML in following format from C# (DataType string) to SQL Server stored proc: <Content> </Content> There is a space which should get stored as it is in SQL Server ...
1
vote
1answer
52 views

mysql stored function for multiple replacing in a query

i have one table1 tid letter1 letter2 1 a e 2 p b 3 c k 4 pp bb 5 rr ll and another table2 t2id word 1 banana 2 strawberry 3 apple 4 grape i ...
1
vote
1answer
113 views

MongoDB: Stored JavaScript Function

When I run below stored JavaScript function I get errors: > db.system.js.save({_id:"last_n_users", value: function(n){return db.users.find().sort({created_at:-1}).limit(n)}}) > ...
1
vote
1answer
131 views

How do I eval a simple math formula inside a MySQL stored _function_?

Inside my stored function I have : formula := "(10+10 * 1000)/12"; (a simple math formula, with numbers only, dynamically created as a string) How do I eval this, and return the result ? I can't ...
1
vote
2answers
110 views

How to properly loop in a stored function on MySQL?

I am having some difficulty getting a pretty simple stored procedure right. Consider the following article table snippet: id replaced_by baseID 1 2 0 2 3 ...
1
vote
1answer
251 views

Why does this MySQL stored function give different results than to doing the calculation in the query?

This is a question about calculating the distance between two points of latitude and longitude on the earth using a haversine formula, for use in projects where you need to have a 'find my nearest' ...
1
vote
1answer
296 views

Postgresql: dblink in Stored Functions

I want to insert top 20 ROWS from a table tbl_A in db_A to tbl_B in db_B. The schema for tbl_A and tbl_B is: CREATE TABLE <tbl_name> ( id serial PRIMARY KEY, int a, int b ); I have ...
1
vote
3answers
142 views

Stored Functions in MySQL - Worth Doing?

When I first got into databases I was using SQL Server. I got into that originally with classic ASP. One of the big things we were told was that you saved a LOT of time in your SQL transactions if you ...
1
vote
2answers
409 views

Fatal Error while calling MySQL stored function from PHP using MySQLi

Server details: PHP v5.3.5 Using MySQLi library client api version: mysqlnd 5.0.7-dev - 091210 - $Revision: 304625 $ MySQL Server v5.5.9 I have a stored function in MySQL called ...
1
vote
1answer
1k views

How to throw an error in MySql procedure?

What is the mechanism to force the MySQL to throw an error within the stored procedure? I have a procedure which call s another function: PREPARE my_cmd FROM @jobcommand; EXECUTE my_cmd; DEALLOCATE ...
1
vote
1answer
154 views

Wrapping linq-to-sql function signatures

I have a stored function, such: CREATE FUNCTION RegionContains ( @RegionX float, @RegionY float, @RegionRadius float, @ObjectX float, @ObjectY float ) RETURNS bit AS BEGIN DECLARE ...
1
vote
1answer
122 views

Simple procedures in Linq To SQL

My app is a client-server setup, where the client asks the servers for objects in a given region. It will send the server x and y coordinates, and a radius. The server then has to query an SQL Server ...
1
vote
1answer
105 views

Entity Framework function/stored proc updates

If i change the the underlying storedproc of a function and update the complex type; does the entire model have to updated as well?
1
vote
4answers
128 views

Struggling to see the error of my ways (mysql function) - solved

(see my answer below for solution - thanks for the feedback) It's probably something really obvious but I can't see what's wrong with my sql: mysql> CREATE FUNCTION start_of_minute( -> ...
1
vote
4answers
73 views

problem in adding two outputs from mysql function inside another function

CREATE DEFINER=`root`@`localhost` FUNCTION `F_GetProjectCostPerEmployeeInProject`(id VARCHAR(20)) RETURNS DECIMAL(30,2) BEGIN DECLARE e_id VARCHAR(20); DECLARE finished INT ; DECLARE temp ...
1
vote
1answer
125 views

PostgreSQL Accessing multiple database from stored function

I want to access different databases from postgresql stored functions. For Ex:- CREATE OR REPLACE FUNCTION test () RETURNS SETOF volume AS $BODY$ SELECT * FROM db2.volume ORDER BY ...
1
vote
1answer
26 views

How to get the dimension of a DECLAREd variable in SPs?

Suppose I declared some variables in SPs. DECLARE _R1 VARCHAR(25); DECLARE _R2 DECIMAL(4,0); DECLARE _R3 DECIMAL(3,0); DECLARE _R4 DECIMAL(2,0); How do I get their dimensions like 25, 4, 3, 2?
1
vote
1answer
96 views

How to return a DECIMAL(4,0) in TEXT keeping the 0000 format?

I want to return in a Stored Function a value as TEXT but I want to be 0001, and not 1 I have this code fragments: DECLARE _RESTRICTEDROUTE DECIMAL(4,0); RETURN(_RESTRICTEDROUTE); I tried ...
1
vote
1answer
563 views

MySql calling stored function from within a stored procedure causing error

I'm getting a 1064 error when trying to call a stored function from within a stored procedure. It only happens on the line where I try to do this: SET account_id = get_account_id(user);. What is the ...
1
vote
2answers
168 views

Return a Table of Payroll Dates from a SQL Stored Procedure

I'm working with SQL Server Reporting Services 2008, which is somewhat new to me, as most of my experience is with LAMP development. In addition, moving most of the logic to SQL as stored procedures ...
1
vote
1answer
320 views

mysql stored function parameter

I have just started to create a stored function this is my first time so I am having a few problems. Currently I call the fucntion using SELECT test(); (test is the function name for now). I want to ...
1
vote
3answers
1k views

MS SQL - Is using geometry data type to find distance significantly faster?

I have a database which contains a lot of geospatial data ... basically information on 10s of thousands of people, with coordinates for each of them. The coordinates are currently stored as two ...
1
vote
1answer
927 views

MySQL, stored-function, using STRING variable as QUERY

I was wondering if it is possible in a mysql stored-function or stored-procedure compose a mysql query as a string variable you can execute later? I have a stored-function get_district_part ...
1
vote
1answer
388 views

How can I add stored function to Entity Framework

I'm trying to add a sql (stored) function to Entity Framework, but unsuccessfully. I tried with right clicking on a table in .edmx and "Function Import", but the function is not shown there, although ...
1
vote
3answers
363 views

Microsoft SQL Server 2005 Function, passing list of start and end times

I'd like to do had a dynamic number of one start/end time pairs passed to a function as an input parameter. The function would then use the list instead of just one start, and one end time in a ...

1 2