4
votes
4answers
466 views
why is UDF so much slower than subquery
I have a case where i need to translate (lookup) several values from the same table. First way I wrote it, was using subqueries:
SELECT
(SELECT id FROM user WHERE user_pk = cr …
3
votes
10answers
241 views
Is this the way to go about building Perl subroutines?
So I've had a simple ucwords function for Perl which I've had a while, and wanted to expand it, this is what I've come up with, is this the way I should be building my functions to …
3
votes
3answers
208 views
Return a User Defined Data Type in an Excel Cell
I've searched the web and I've searched the questions here on stackoverflow, but I haven't been able to find a solution.
Here is what I'd like to do:
Suppose I have the following …
2
votes
5answers
111 views
How do I test a Table-Valued Function in SQL Server Management Studio?
I've never worked with Database Functions, but my current project requires it. I need to put a common sql query into a function so we don't have to type it out in our code hundred …
2
votes
2answers
159 views
User Defined Functions in Excel and Speed Issues
I have an Excel model that uses almost all UDFs. There are say, 120 columns and over 400 rows. The calculations are done vertically and then horizontally --- that is first all the …
2
votes
3answers
147 views
Increasing Alphanumeric value in user defined function
Hello,
I'm trying to code a user defined function under SQL Server 2005 that will increase integer part of alphanumeric value by one. For example, uf_AlphanumericIncrease ('A0002 …
2
votes
3answers
430 views
What does it mean by “Non-deterministic User-Defined functions can be used in a deterministic manner”?
According to MSDN SQL BOL (Books Online) page on Deterministic and Nondeterministic Functions, non-deterministic functions can be used "in a deterministic manner"
The followin …
2
votes
2answers
346 views
Does query plan optimizer works well with joined/filtered table-valued functions?
In SQLSERVER 2005, I'm using table-valued function as a convenient way to perform arbitrary aggregation on subset data from large table (passing date range or such parameters).
I' …
1
vote
4answers
214 views
SQL Server: Inline Table-Value UDF vs. Inline View
I'm working with a medical-record system that stores data in a construct that resembles a spreadsheet--date/time in column headers, measurements (e.g. physician name, Rh, blood typ …
1
vote
2answers
83 views
How does SQL server evaluate the cost of an execution plan which contains a user defined function?
I have a stored procedure which filters based on the result of the DATEADD function - My understanding is that this is similar to using user defined functions in that because SQL s …
1
vote
3answers
188 views
User-defined derived data in Django
How do I let my users apply their own custom formula to a table of data to derive new fields?
I am working on a Django application which is going to store and process a lot of dat …
1
vote
1answer
92 views
How can I use the SqlFunctionAttribute in a database project to generate the SQL to deploy the functions myself? Visual studio fails.
Background:
Visual studio fails at deploying a database project. It tries to drop functions that are already referenced (e.g. in a check constraint), rather than just adding the …
1
vote
7answers
187 views
How can I optimize this horrendously inefficient User Defined Function in SQL Server 08
Is there anyway to optimize this horrible inefficient UDF in SQL Server 08. I am fairly new to UDF's and especially looking at them for optimizations.
UPDATE:
Should I be sending …
1
vote
2answers
568 views
Create a custom worksheet function in Excel VBA
I have a faint memory of being able to use VBA functions to calculate values in Excel, like this (as the cell formula):
=MyCustomFunction(A3)
Can this be done?
EDIT:
This is m …
1
vote
2answers
97 views
Union two or more tables, when you don’t know the number of tables you are merging
I am working with MS SQL 2005.
I have defined a tree structure as:
1
|\
2 3
/|\
4 5 6
I have made a SQL-function Subs(id), that gets the id, and returns th …
