Tagged Questions
A user-defined function in SQL, VBA or any language
31
votes
8answers
20k views
Simulating group_concat MySQL function in MS SQL Server 2005?
I'm trying to migrate a MySQL-based app over to MS Sql Server 2005 (not by choice, but that's life).
In the original app, we used almost entirely ANSI-SQL compliant statements, with one significant ...
19
votes
6answers
16k views
Multi-statement Table Valued Function vs Inline Table Valued Function
A few examples to show, just incase:
Inline Table Valued
CREATE FUNCTION MyNS.GetUnshippedOrders()
RETURNS TABLE
AS
RETURN SELECT a.SaleId, a.CustomerID, b.Qty
FROM Sales.Sales a INNER JOIN ...
12
votes
10answers
5k views
Efficient ISNUMERIC() replacements on SQL Server?
So I just spent 5 hours troubleshooting a problem which turned out to be due not only to the old unreliable ISNUMERIC but it looks like my problem only appears when the UDF in which ISNUMERIC is ...
11
votes
2answers
131 views
Why is my custom MySQL function so much slower than inlining same in query?
I repeatedly use this SELECT query to read unsigned integers representing IPv4 addresses and present them as human readable dotted quad strings.
SELECT CONCAT_WS('.',
FLOOR(ip/POW(256,3)),
...
10
votes
2answers
143 views
Why does a query execute so much faster when I (manually) cache the results of a table-valued function in a temporary table?
Why is Query Version 2 so much faster?
I suspect the DB Engine is calling the Table-Valued-Function "GetUsageStatistic" multiple times, so is there a way to tell the engine that "GetUsageStatistic" ...
10
votes
7answers
24k views
How to strip all non-alphabetic characters from string in SQL Server?
How could you remove all characters that are not alphabetic from a string?
What about non-alphanumeric?
Does this have to be a custom function or are there also more generalizable solutions?
9
votes
1answer
122 views
How can a query with a TOP 10 take infinitely more time to complete than the same query without the TOP 10?
I have a very simple situation:
I have a Table Valued Function called FullTextPagina defined as follows:
select * from Pagina as p where contains(p.PageText, @term)
And then I have 2 queries:
...
9
votes
6answers
5k views
How to determine the number of days in a month in SQL Server?
I need to determine the number of days in a month for a given date in SQL Server.
Is there a built-in function? If not, what should I use as the user-defined function?
9
votes
2answers
7k views
Execute table-valued function on multiple rows?
Given a table-valued function such as dbo.Split() from "T-SQL: Opposite to string concatenation - how to split string into multiple records", how do I pass multiple rows as arguments?
This works:
...
8
votes
4answers
235 views
Query becomes drastically slower when wrapped in a TVF
I have a fairly complex query which runs in just a few seconds on its own, but when wrapped in a table-valued function, it's far slower; I've not actually let it finish, but it's run for up to ten ...
8
votes
5answers
1k views
Bizarre performance issue: Common Table Expressions in inline User-Defined Function
Here's a brain-twister for the SQL guys - can anyone think of a reason why the first of these functions performs fine, and the second one runs dog-slow?
Function A - Typically finishes in ~5 ms
...
7
votes
2answers
266 views
Sql Server CLR file system access from UDF
I wrote a simple UDF that should plot a graphic and save it on disk.
Actually, I am using an UDF as a proxy between SQL SERVER and R, so UDF only passes the R script to the R engine from SQL SERVER ...
7
votes
5answers
146 views
I'm using SQL UDF's to encapsulate simple reporting/business logic. Should I avoid this?
I'm building up a new database in SQL Server 2008 for some reporting, and there are many common business rules pertaining to this data that go into different types of reports. Currently these rules ...
6
votes
2answers
186 views
Indefinite number of arguments for SQL User Defined Functions?
In Oracle and MySQL, how can I create a function that takes an indefinite number of parameters so that it may be called like GREATEST(value1,value2,...)?
Comparing two values by a certain standard is ...
6
votes
11answers
8k views
How to trace T-SQL function calls
I'm trying to debug a rather complicated formula evaluator written in T-SQL UDFs (don't ask) that recursively (but indirectly through an intermediate function) calls itself, blah, blah.
And, of ...
6
votes
4answers
5k views
How to pass parameters to Table Valued Function
I want to do something like
Select * from tvfHello(@param) where @param in (Select ID from Users)
6
votes
4answers
26k views
Return multiple values from a SQL Server function
How would I return multiple values (say, a number and a string) from a user-defined function in SQL Server?
5
votes
0answers
95 views
udf vs direct sql performance
Using MSSQL 2005
I was playing around today with a Scalar UDF in a where statement to see some of the costs associated with making the call and io differences etc.
I'm starting with 2 basic tables. ...
5
votes
4answers
379 views
SQL Server view or table-valued function?
Anyone have a good decisioning tree for deciding when to use a view and when to use a table-valued function in SQL Server?
5
votes
2answers
404 views
When called from an Excel VBA UDF, Range.Precedents returns the range and not its precedents. Is there a workaround?
I have this VBA function:
Public Function testPrec(target As Range) As String
testPrec = target.Precedents.Address(External:=False)
End Function
In cell C11, I have this formula:
=C6+C8
If I ...
5
votes
2answers
677 views
SqlServer2008 - Can I Alter a Scalar Function while it is referenced in many places
We have a scalar function that returns a DateTime. It performs a couple of quick table selects to get its return value. This function is already in use throughout the database - in default ...
5
votes
6answers
14k views
Pass table as parameter into sql server UDF
I'd like to pass a table as a parameter into a scaler UDF.
I'd also prefer to restrict the parameter to tables with only one column. (optional)
Is this possible?
EDIT
I don't want to pass a table ...
5
votes
5answers
3k views
SQL massive performance difference using SELECT TOP x even when x is much higher than selected rows
I'm selecting some rows from a table valued function but have found an inexplicable massive performance difference by putting SELECT TOP in the query.
SELECT col1, col2, col3 etc
FROM ...
5
votes
3answers
2k views
Call methods written in C# in Excel 2007 from cell formulas
I am using Excel 2007. I have C# code written in a separate binary. The code uses static classes and static methods on the classes. I have a reference to the DLL in my VSTO Excel Worksheet project. ...
5
votes
3answers
3k views
How do I use entity framework with hierarchical data?
I'm working with a large hierarchical data set in sql server - modelled using the standard "EntityID, ParentID" kind of approach. There are about 25,000 nodes in the whole tree.
I often need to ...
4
votes
1answer
59 views
What is the best way to create and manage global Procs and UDFs in SQL Server?
Let's imagine that I have 2 separate Databases on the same instance of SQL Server.
DB1 is a Database relating to Trading and Position Keeping.
DB2 is a Database relating to market pricing variables.
...
4
votes
2answers
262 views
MS SQL DMVs for UDF performance stats - how to find top 10 worst UDFs
I heard in Microsoft SQL Server there are multiple ways to find "worst" stored procedures: by number of executions, by CPU worker time, by queue wait time etc.
I am looking for a way to find worst ...
4
votes
2answers
355 views
Can I use table-valued function as query source in NHibernate?
I have one question to ask you, dear community, as you may have guessed. So.
I want NHibernate to filter the results of a query basing on the evaluation of table-valued sql function.
Possible SQL ...
4
votes
2answers
292 views
Similarity between strings - SQL Server 2005
I am looking for a simple way (UDF?) to establish the similarity between strings. The SOUNDEX and DIFFERENCE function do not seem to do the job.
Similarity should be based on number of characters in ...
4
votes
2answers
7k views
Cannot find either column “dbo” or the user-defined function or aggregate “dbo.Splitfn”, or the name is ambiguous
I ve used the following split function,
CREATE FUNCTION dbo.Splitfn(@String varchar(8000), @Delimiter char(1))
returns @temptable TABLE (items varchar(8000))
as
begin
...
4
votes
4answers
347 views
Excel programming methodologies
What are the differences in Excel programming between a UDF, Macro, Add-in, Automation Add-in, XLL, or VSTO.
Which one I should use and under which circumstances?
4
votes
5answers
175 views
What's too much SQL Server data and how do I analyze my execution plan
I have a relation between two tables with 600K rows and my first question is, is that a lot of data? It doesn't seem like a lot (in terms of rows, not bytes)
I can write a query like this
SELECT ...
4
votes
2answers
2k views
How can I work around SQL Server - Inline Table Value Function execution plan variation based on parameters?
Here is the situation:
I have a table value function with a datetime parameter ,lest's say tdf(p_date) ,
that filters about two million rows selecting those with column date smaller than p_date and ...
3
votes
2answers
44 views
T-SQL Row by Row Decay
Given a table of user points earned, I need to calculate a six month half-life of the cumulative points earned. That is, all points earned in the past 6 months are valued at 100%, 6-12 months at 50%, ...
3
votes
2answers
49 views
Can an X # of rows be generated without using stored procedures or functions?
I have written the below VIEW using a UDF, but am wondering if there is a way to do this without needing a UDF. The only other option I could find is to SELECT UNION hardcoded values, but I don't like ...
3
votes
4answers
159 views
Implement an Excel UDF that can call web methods asynchronously
Initially, I implemented an UDF that would call web methods Synchronously, but had quite a lot of troubles with that, especially when I tried to request huge amount of data -- in short, Excel would ...
3
votes
1answer
210 views
java user defined function in oracle using byte[]
Given this table in Oracle
create table test (bytes raw(100), chset varchar2(50))
insert into test (bytes, chset) values (hextoraw('454647'), 'iso-8859-1')
or in MSSQL
create table test (bytes ...
3
votes
1answer
124 views
How can I improve the performance of Excel UDF that call web services?
We are developing a kind of stock lookup UDF in c# for Excel. Our UDF ends up calling a web service, which can be very slow if a sheet has, say 1000 calls to our web service.
I noticed that Excel ...
3
votes
5answers
165 views
Inline table valued UDF performance
I’m using SQL Server 2008R2. I’ve written the following table-valued UDF that accepts either scalar values this or that or both as parameters and returns a table with columns ID, this, and that. I’m ...
3
votes
1answer
323 views
COLLECT_SET() in Hive, keep duplicates?
Is there a way to keep the duplicates in a collected set in Hive, or simulate the sort of aggregate collection that Hive provides using some other method? I want to aggregate all of the items in a ...
3
votes
2answers
253 views
DRY CLR table-valued functions
I'm using a CLR table-valued function to SELECT and return the results of a complex database search which uses many variables.
The documentation shows that you build such a function in a fashion ...
3
votes
2answers
208 views
Execute Stored Procedure from a Function
I know this has been asked to death, and I know why SQL Server doesn't let you do it.
But is there any workaround for this, other than using Extended Stored Procedures?
And please don't tell me to ...
3
votes
1answer
195 views
Creating a UDF for MySQL in Delphi
How do I create a UDF for MySQL using Delphi?
Does anyone have any code templates?
I want the code template to be integrated in Delphi versions(2007 and upper), so I need these templates to be ...
3
votes
1answer
149 views
Help with SP and UDF?
I'm trying to learn and use SP(Stored Procedure) and UDF(User Defined Function) with MySQL and PHP. What is the difference between SP and UDF and what is the purpose?
How would a simple piece of ...
3
votes
1answer
215 views
Memory sharing in C++/CLI
I am using Windows OS, SQL Server, and C++/CLI, I think using OpenFileMappingFunction() to communicate memory blocks between SQL (maybe an UDF) with C++ is the best approach, so when doing this I ...
3
votes
2answers
104 views
Sybase Features
Does anybody know if Common Table Expressions and User-defined functions (not from Java) are supported on Sybase 12.5? I'm trying but could not seem to make these work. Thanks guys.
3
votes
2answers
298 views
Building a LINQ Expression to find items related to all descendants of a tree node
The Scenario
I have built a database structure that represents a category tree to help classify some of the data we have stored. The implementation is that each record in the Category table has a ...
3
votes
1answer
689 views
Multi-part identifier could not be bound
I know that there are several questions around this exception on SO, but nothing seen that helps me.
I have following query giving me a "Multi-part identifier 'claim.fiData' could not be ...
3
votes
4answers
328 views
inner join Vs Function
Which of the following query is better... This is just an example, there are numerous situations, where I want the user name to be displayed instead of UserID
Select EmailDate, B.EmployeeName as ...
3
votes
1answer
122 views
How do I pass a UDF scalar function into a stored procedure?
Trying to put a function call that returns an int into a call for a stored procedure.
Getting "Incorrect syntax near '.'."
usp_Document_ReserveForGrader '98832750-142F-4623-91F7-6E43C6F1A963',
...