Tagged Questions
The userdefinedfunction tag has no wiki summary.
3
votes
3answers
107 views
call sql from a user defined function
Is it possible with SQL Server 2008 to execute sql from a variabele in a user defined function? Or is using a stored procedure the only solution?
I have an sql statement saved in a variabele
...
2
votes
2answers
413 views
Nhibernate filtering by user defined function output
I'm reasonably new to NHibernate and everything has been going pretty well so far but I've come across a problem I'm not exactly sure of how to go about solving. Basically I need to filter by the ...
1
vote
0answers
55 views
Entitymanager.persist is failing in Informix UDR
I am unable to understand the reason of failure in UDR here:
while I am compiling the code on windows using Eclipse the programe is able to insert the record in informix DB residing on UNIX while same ...
1
vote
1answer
73 views
Formatting a Datetime returned from a SQL UD Function
Consider this simple user defined function:
set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
go
ALTER FUNCTION [dbo].[ufn_GetFirstDayOfMonth] ( @pInputDate DATETIME )
RETURNS DATETIME
BEGIN
RETURN ...
1
vote
2answers
275 views
Creating a User Defined function in Stored Procedure in SQL 2005
I have a stored procedure in which i want to create a user defined function - Split (splits a string separated with delimiters and returns the strings in a table), make use of the function and finally ...
1
vote
2answers
97 views
SQL User Defined Function question
I'm having trouble getting my user defined function operating properly. I am running on SQL Server 2000.
I am trying to return a table of all users that have an even balance in a ...
1
vote
4answers
100 views
How do I define my own hardcoded Ceilings and Floors in Sql Server?
I have some sql statements that calculates some numbers. It's possible (with bonus points/penalty points) that a person could get a final score OVER 100 (with bonus points) or
UNDER 0 (with ...
1
vote
4answers
4k views
T-SQL equivalent of Excel “MAX” function to return larger of two numbers
In Excel, there's a function called "MAX" that accepts numbers and returns the largest one in the set. Is there a function in T-SQL that duplicates this functionality? I haven't been able to find one, ...
1
vote
3answers
781 views
SQL Server rand() aggregate
Problem: a table of coordinate lat/lngs. Two rows can potentially have the same coordinate. We want a query that returns a set of rows with unique coordinates (within the returned set). Note that ...
0
votes
1answer
54 views
User Defined Function that returns the values of a single column concatenated together
I'm using SQL Server 2008 and would like to have a user defined function that concatenates the values of a single column, comma delimited, and returns it.
For example, a table with the following ...
0
votes
1answer
67 views
Error coming while creating UDF in Sql Server 2005
Does anyone know what's wrong with this code block.
CREATE FUNCTION [dbo].[udfGetPoint]
(
@UserID INT,
@SqlCountry VARCHAR(1000)
)
RETURNS INT
AS
BEGIN
DECLARE @Points INT
SET @Points ...
0
votes
3answers
189 views
How to get total rows return by Stored Procedure using Userdefined Function in SQL SERVER 2005
My function
ALTER FUNCTION GetProductCount
(@CatID int)
RETURNS int
AS
BEGIN
DECLARE @return_value int
EXEC @return_value = [dbo].[USP_Products_GetList]
@ProductName = NULL,
...
0
votes
1answer
191 views
Can a variable holds multiple records in user defined functions in MySQL?
I have a user defined function.
In that function I declared a variable of type datetime.
I am assigning the result of a query into this variable. And I am returning this assigned value. It looks ...
0
votes
3answers
521 views
Returning a resultset from a stored procedure with a table value function or view
I am using SQL Server 2000 and feeling stuck about how to do this:
I have a stored procedure that returns a single resultset which is bound to a gridview in a .Net web app.
Now I'd like to have a ...
0
votes
1answer
107 views
user defined functions
I have this user defined function.
public partial class UserDefinedFunctions
{
static int i;
[SqlFunction(IsDeterministic = true)]
public static SqlSingle f()
{
return new ...
0
votes
2answers
125 views
Is it bad to use a Sql Server Scalar UDF in this scenario?
I'm trying to generate some sql that is used to calculate some final scores -> think kids at school and their end of year scores.
I was going to have about 5 or so Scalar UDF's that, accept some ...