Tagged Questions

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
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) ...
3
votes
3answers
354 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
7k 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
82 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
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
521 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
239 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 ...
1
vote
1answer
46 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 ...
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
117 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
144 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
4answers
169 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
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

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
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 ...
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
1answer
35 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
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
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 ...
0
votes
2answers
83 views

checking if table exists function

Can you help me rectify this block of code plz? `CREATE OR REPLACE FUNCTION TABLE_EXISTS(name VARCHAR(50)) RETURNS BOOLEAN AS BEGIN DECLARE counttable INTEGER; SELECT COUNT(1) INTO ...
0
votes
3answers
340 views

ExecuteScalar always returns null when calling a scalar-valued function

Why does this return null? //seedDate is set to DateTime.Now; con is initialized and open. Not a problem with that using (SqlCommand command = new SqlCommand("fn_last_business_date", con)) { ...
0
votes
4answers
319 views

How to create a function that returns a comma separated list of values?

I am trying to create a function that returns a comma separated list of values based on a table name and column name parameters. The idea was to build a dynamic SQL statement on the fly and then ...
0
votes
1answer
174 views

SQL Server function intermittent performance issues

We have a function in our database that searches two large tables to see if a value exists. It is a pretty large query, but it is optimized to use indexes and generally runs pretty fast. Three times ...
0
votes
4answers
358 views

Problem with if-statement used at Table-returned-function in SQL

I have simplified my function to the following: create function [dbo].[UserSuperTeams](@ProjectId int) returns table as return if @ProjectId=0 begin select TeamId from TblTeam t ...
0
votes
1answer
479 views

SQL List Function Removing Precision

I am using the LIST function to create a ';' delimited list of values. The type is numeric (19,2). For some reason the precision appears to be ignored when using the list function. When performing a ...