Tagged Questions
The sql-function tag has no wiki summary.
36
votes
9answers
34k views
Function vs. Stored Procedure in SQL Server
I've been learning Functions and Stored Procedure for quite a while but I don't know why and when exactly I should use functions or stored procedure instead of one another. They look same to me maybe ...
8
votes
2answers
2k views
How to check if a function exists on a SQL database
I need to find out if a function exists on a database, so that I can drop it and create it again. It should basically be something like the following code that I use for stored procedures:
IF EXISTS ...
4
votes
2answers
56 views
Update field by a function
I have the function which gets ID and returns date from table if it exists or returns current date if isn't:
CREATE FUNCTION [dbo].[CLOSEDATE] (@ID int)
RETURNS datetime
AS
BEGIN
DECLARE ...
4
votes
3answers
550 views
MySQL stored procedure vs function, which would I use when?
I'm looking at MySQL stored procedures and function. What is the real difference?
They seem to be similar, but a function has more limitations.
I'm likely wrong, but it seems a stored procedure can ...
4
votes
1answer
273 views
MySQL function to compare values in a db table against the previous
Iam quite new to functions in SQL and I would like to create a function to compare values in a MySQL table against previous and I am not sure how to do this.
For example (iId is the input value)
...
4
votes
5answers
3k views
Alter SQL Function Referenced by Computed Column
If you set up a table's column to be a computed column whose Formula calls a Function, it becomes a pain to change that underlying Function. With every change, you have to find every single column ...
3
votes
2answers
1k views
How to check date of last change in stored procedure or function in SQL server
I need to check when function was changed last time. I know how to check creation date (it is in function properties window in SQL Server Management Studio).
I found that in SQL Server 2000 it wasn't ...
3
votes
3answers
350 views
Average of Sum minus Minimum
Hey guys, I have a SQL statement that grabs the grades of different activity types (Homework, Quiz, etc), and if there's a drop lowest for that type, it drops, else, it remains. The errors are below ...
3
votes
4answers
6k views
How to Replace Multiple Characters in SQL?
This is based on a similar question How to Replace Multiple Characters in Access SQL?
I wrote this since sql server 2005 seems to have a limit on replace() function to 19 replacements inside a where ...
2
votes
1answer
74 views
Linq PredicateBuilder
public static IQueryable<SearchProfile> FilterData(string Filter, Repository<SearchProfileContext> dc)
{
IQueryable<SearchProfile> data = null;
var predicate = ...
2
votes
1answer
49 views
Function executes faster without STRICT modifier?
I wonder about a slump in performance when a simple SQL function is declared STRICT. I stumbled upon this phenomenon while answering a question here.
To demonstrate the effect I create two variants ...
2
votes
4answers
83 views
SQL NOT IN Function
Iam trying to insert a record and i want to check that it is not already present in the table.
I try
INSERT INTO emp (empno, name)
VALUES(2, 'ram')
WHERE empno NOT IN (select empno from emp);
...
2
votes
1answer
81 views
How to order by max(a,b) in SQL?
Consider the following table:
id a b
--------------
1 5 1
2 2 3
3 4 2
4 3 6
5 0 1
6 2 2
I would like to order it by max(a,b) in descending ...
2
votes
2answers
179 views
Get SQL Computed Column Inserted Value
My Table Structure as follow,
CREATE TABLE tbl_Info
(
[SSEID] BIGINT NOT NULL IDENTITY(1,1),
[ShortenKey] AS ConvertToBase([SSEID]),
[Title] ...
2
votes
4answers
2k views
SQL Query - Concatenating Results into One String
I have a sql function that includes this code:
DECLARE @CodeNameString varchar(100)
SELECT CodeName FROM AccountCodes ORDER BY Sort
I need to concatenate all results from the select query into ...
2
votes
1answer
518 views
MySql Regular Expression Select Columns Matching (dynamic)multiple Values within Stored Procedure
I am trying to generate a query where I want to select columns(text) matching multiple values.
eg: I have two columns, id and description. suppose my first row contains description column with value
...
2
votes
1answer
236 views
SQL Server: How to execute UPDATE from within recursive function?
I have a recursive scalar function that needs to update a record in another table based on the value it is returning, however UPDATE statements are not allowed in the function.
How can I update the ...
2
votes
5answers
150 views
Help with MySQL query
I have a table that contains the next columns:
ip(varchar 255), index(bigint 20), time(timestamp)
each time something is inserted there, the time column gets current timestamp.
I want to run a ...
2
votes
2answers
374 views
track revisions in postgresql
I have to keep track of revisions of records in a table. What I've done is create a second table that inherits from the first and adds a revision counter.
CREATE TABLE A (
id SERIAL,
foo TEXT,
...
1
vote
2answers
38 views
SQL Server function - prevent duplicates
I have a SQL Server 2005 database. Table A has an identity column in it as well as another manual Id column that spans several rows. The second id column is in the format of '0000000098' and must be a ...
1
vote
1answer
65 views
Log function Parameters in Sql Server
I have a Check constraint on a table which calls a function to evaluate a condition. When I directly calls a functions, it does return me true for the dummy values.
When I run an insert statement , ...
1
vote
1answer
61 views
using RAND() in a function [closed]
Possible Duplicate:
Creating Nondeterministic functions in SQL Server using RAND()
I need to generate some random nvarchar in a function. So I create this function :
CREATE FUNCTION ...
1
vote
1answer
36 views
SQL Array within a cell
I have a cell that contains an array of characters seperated by commas i.e. "1,2,3,4,5" My question is, is it possible to remove a particular element of the array such as if I wanted to remove "1" ...
1
vote
2answers
116 views
Calling Scalar-valued Functions in SQL
I have migrated a database from oracle, and now have a few Scalar-valued Functions.
However, when I call them, I get an error saying:
Cannot find either column "dbo" or the user-defined function ...
1
vote
2answers
141 views
Applying a SQL function on Zend_Db_Table_Row::save()
Is it possible, when saving a Zend_Db_Table_Row, to make ZF apply a SQL function on one column?
For example, if $row->save() generates by default this SQL query:
UPDATE table SET field = ? WHERE ...
1
vote
1answer
63 views
Re-use a hardcoded value in multiple function calls in PostgreSQL query
I have some functions in PostgreSQL 9.0 that return table results. The idea behind these is to return the data as it was at a certain time, eg.
CREATE FUNCTION person_asof(effective_time timestamp ...
1
vote
2answers
250 views
SQL SERVER - Problems with COALESCE() function
I have this SQL function which is wrapped by a stored procedure:
ALTER FUNCTION dbo.GetObjList
(
@filterUID int = NULL,
@filterSID varchar(32) = NULL
)
RETURNS TABLE
AS
RETURN
SELECT ...
1
vote
3answers
108 views
TSQL function to parse text based on keywords?
I need a hand in building a text relevance function using a list of keywords that enters a SQL Server 2008 sproc, and am performing a free-text search which returns a list of table rows.
For each ...
1
vote
4answers
163 views
How to create a SQL Server fucntion to return an int?
I'm trying to create a SQL Function that tests whether a parameter starts with a certain term or contains the term, but doesn't start with it.
Basically, if the parameter starts with the term, the ...
1
vote
2answers
379 views
1
vote
8answers
622 views
Dynamic table design (common lookup table), need a nice query to get the values
sql2005
This is my simplified example:
(in reality there are 40+ tables in here, I only showed 2)
I got a table called tb_modules, with 3 columns (id, description, tablename as varchar):
1, ...
1
vote
2answers
45 views
Modify FindAll function to a DoesExist function in SQL Server
I have the following recursive function:
ALTER FUNCTION [dbo].[ListAncestors]
(
@Id int
)
RETURNS TABLE
As
RETURN
(
WITH cte As
(
SELECT
UserId,
...
1
vote
2answers
62 views
Returning a row from a With clause
im trying to make a Function that retruns a value.
in my function i have this script:
WITH t_new AS
(
SELECT PersIDOLD, PersIDNEW, RightsMUT,
SUM(gap) over(ORDER BY PersIDOLD, ...
1
vote
1answer
2k views
How to call SQL Function with multiple parameters from C# web page
I have an MS SQL function that is called with the following syntax:
SELECT Field1, COUNT(*) AS RecordCount
FROM GetDecileTable('WHERE ClientID = 7 AND LocationName = ''Default'' ', 10)
The first ...
1
vote
1answer
2k views
Selecting multiple fields into multiple variables in a MySQL stored procedure
I am a little new to store procedures in MySQL and was wondering if I can SELECT multiple columns into multiple variables within the same select query.
for example (iName is the input to the ...
1
vote
2answers
503 views
SubSonic Alias/Where Clause
I want to convert the following SQL Query to a SubSonic Query.
SELECT [dbo].[tbl_Agency].[ParentCompanyID]
FROM [dbo].[tbl_Agency]
WHERE REPLACE(PhoneNumber, ' ', '') LIKE REPLACE('%9481 1111%', ' ...
1
vote
3answers
442 views
Performance of Sql subqueries\functions
I am currently working on a particularly complex use-case. Simplifying below :)
First, a client record has a many-to-one relationship with a collection of services, that is, a single client may have ...
1
vote
1answer
1k views
Writing SQL function with XQuery Parameters
Following on from one of the answers in this thread;
http://stackoverflow.com/questions/214060/using-xquery-in-linq-to-sql/214435#214435
I'm trying to create a sql table function that will take ...
1
vote
1answer
1k views
Using replace sql function in nHibernate named query
I am using Nhibernate 2.1.0 in my project.
I have the an Item class with property Path and the following named query:
<hibernate-mapping xmlns='urn:nhibernate-mapping-2.2'>
<sql-query ...
0
votes
2answers
45 views
Insert current row number into SQL Server table
I have the following table in SQL Server
CREATE TABLE [dbo].[tblTempPo](
[TempPoID] [int] IDENTITY(1,1) NOT NULL,
[guid] AS ([dbo].[GetIdentity]()),
[Qty] [int] NULL,
...
0
votes
1answer
27 views
How to call a function from SQL stored procedure
I have function that have been colled in stored procedure.
The function returns a table and have to fill another table.
Maybe this queistion might be seems a little naive but im a newer in T-SQL.
...
0
votes
0answers
36 views
Is there a way to call built-in sql function in Linq to Entities
I want to know if there is a way to call built-in sql functions in LINQ to Entities? Such as 'CAST', 'ISNULL'. I have searched on the internet and I know how to call user-defined functions in LINQ to ...
0
votes
1answer
54 views
CreateAlias generate Join To a Table Valued function
Is there a way to extend CreateAlias to work with Table Valued Function not just tables,
I want to join a Table Valued Function to a base table, how can I do this with Criteria.
SELECT ...
0
votes
1answer
45 views
How to manipulate ntext type data in stored procedure of SQL Server 2008
I was wondering how to manipulate ntext datatype in stored procedure of SQL Server 2008.
We have a column of type ntext in a table. We have to fetch data from that column, parse the data, change and ...
0
votes
1answer
34 views
divide the value of a column by another column
I want to divide a value of a column by the value of another column and display the result as separate column
ex:
project name total-percent no.of screen
------------ ...
0
votes
1answer
25 views
Scopes in MySQL & Derived tables
Let's say I have 2 Tables
One named Baskets,
Another named Fruits.
Baskets-
basket_id , basket_name
1 - Basket One
2 - Basket Two
Fruits-
fruit_id , basket_id , fruit_name
1 - ...
0
votes
2answers
79 views
NHibernate INSERT TO SQL Calculated field SET NOCOUNT
I need to surpress messages output from a SQL function. As in 1 row affected. I can't use SET NOCOUNT as it's invalid in a function.
Anyone know a way to do this?
Thanks.
EDIT
I was trying to ...
0
votes
1answer
26 views
Creating a UserDefined CLR function in .Net
i want to create a CLR function, i created a normal class library file and coded as below, i dont want to use SqlServerProject, as i cannot find some classes there.
using System;
using ...
0
votes
1answer
48 views
Spatial Data SQL Reprojection Function issues
Hello I am just learning postGIS and thus postgresql (9.1) and am trying to save some time copying the same code over and over by creating an sql function to reproject some spatial data.
Create ...
0
votes
3answers
53 views
Shall i add If Exists to my SQL Stored Procedure?
Afternoon All,
I have a button on a web page that when is clicked by the user inserts data into a table. this button has a message box assigned to it, to let the user know the records have been ...