Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
15
votes
5answers
5k views

How to report an error from a SQL Server user-defined function

I'm writing a user-defined function in SQL Server 2008. I know that functions cannot raise errors in the usual way - if you try to include the RAISERROR statement SQL returns: Msg 443, Level 16, ...
8
votes
4answers
9k views

TSQL How do you output PRINT in a user defined function?

Basically I want to use PRINT statement inside a user defined function to aide my debugging. However I'm getting the following; Invalid use of side-effecting or time-dependent operator in 'PRINT' ...
6
votes
1answer
120 views

Handling flexible arguments in Mathematica functions

This is an offshoot and extension of: Is it safe to turn off Pattern::patv? Many built-in Mathematica functions allow flexible arguments. In user-defined functions I have been using Alternatives for ...
6
votes
3answers
247 views

Excel is calculating a formula with a VBA function as an error unless it is re-entered

I've got a simple if statement set up in a worksheet where the if condition is VBA user defined function: Function CellIsFormula(ByRef rng) CellIsFormula = rng(1).HasFormula End Function This ...
6
votes
4answers
1k views

Why is a UDF so much slower than a subquery?

I have a case where I need to translate (lookup) several values from the same table. The first way I wrote it, was using subqueries: SELECT (SELECT id FROM user WHERE user_pk = created_by) AS ...
5
votes
2answers
246 views

How to distinguish user-defined / library functions from a compiled file?

EDIT: What I want is to distinguish statically linked library functions and user self-written functions within a compiled file (e.g. PE file). How to achieve that? (I am thinking of database ...
5
votes
4answers
1k views

SQL Server 2008 - How do i return a User-Defined Table Type from a Table-Valued Function?

Here's my user-defined table type... CREATE TYPE [dbo].[FooType] AS TABLE( [Bar] [INT], ) This is what ive had to do in my table-valued function to return the type: CREATE FUNCTION ...
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
4answers
242 views

Confused about return statement in user defined function

i have few question regarding the return statement. a) is it compulsory to define a return statement in a user defined function.? b) is it still valid if i just define a return statement without any ...
4
votes
10answers
330 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 handle optional ...
4
votes
4answers
11k views

SQL User Defined Function Within Select

I have a user defined function in SQL called getBuisnessDays it takes @startdate and @enddate and returns the number of business days between the two dates. How can I call that function within my ...
3
votes
2answers
66 views

SQL Server 2008R2 User Defined Function (Table valued) Performance

I am using SQL Server 2008R2. I've got the following setup: -- Query #1 SELECT * FROM Product P INNER JOIN ProductComments C ON C.ProductId = P.ProductId -- Query #2 SELECT * FROM GetAllProducts() ...
3
votes
8answers
103 views

Php user defined functions, (im new need help)

I understand I can define a function like this: <?php function say_hello() { echo "hello world!"; } say_hello(); ?> ...and then reuse this function elsewhere as many ...
3
votes
4answers
155 views

Disadvantages of using a lot of parameters

I am re-writing some code to make functional changes and I am stuck at a situation where either I will need to overload a function to accommodate two or three types of parameters (but performing ...
3
votes
7answers
397 views

Difference between operator and function in C++?

I could use some help understanding the following in C++, particularly the difference between an operator and a function: What is an operator? What is a function? What is the difference between ...
3
votes
1answer
105 views

In R, how can an element of a vector of functions be selected and applied?

I have an R question--I want to make a vector of functions, and then be able to call one of the functions by name. However, when I use this name, I want to use a tag which maps to that name, so that ...
3
votes
4answers
162 views

SQL function returns wrong value

I have a function that takes 2 parameters: @iEmployeeID and @dDate. It's purpose is to find a budget rate for the given parameters. In other words, it should find the largest date being smaller or ...
3
votes
2answers
363 views

SQL Server - CASE within a CASE checking for NULL

I am still learning SQL so this may seem a very odd question, but is this the best way to use CASE within a CASE to check for NULL? @FN_InputDt datetime) RETURNS varchar(3) as BEGIN DECLARE ...
3
votes
4answers
365 views

Is there any way to make this UDF deterministic?

I assume this is not deterministic simply because DB_NAME() is not deterministic? If DB_NAME() is not deterministic, why is it not deterministic? ALTER FUNCTION [TheSchema].[udf_IS_PRODUCTION] () ...
3
votes
4answers
2k 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 type) in first column ...
3
votes
3answers
2k 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 following functions are not ...
2
votes
3answers
145 views

Functional Programming with Clojure

gurus Here's a question for you: I am working on a clojure program that involves passing functions to functions. I have something like: (defn funct-op [args] ((first args) (second ...
2
votes
1answer
285 views

How to call a user defined Matlab from Java using matlabcontrol.jar

I am trying to call a user defined Matlab Function(M file) which takes 3 arguments(Java Strings) from my Java application which is developed in Eclipse. At the moment I am able to call proxy.eval and ...
2
votes
2answers
202 views

Make a UDF independent of DATEFIRST setting

With the help of answers on SO, I have created a SQL Server UDF (below) which returns the next working day (weekday), given a date and a number of days to add. For example, if the date is a Friday ...
2
votes
4answers
88 views

Enforcing Common Method Names

Note: This is a follow-up question to this. I have a group of template classes that do completely different things in completely different ways using completely different datatypes. They do, ...
2
votes
3answers
205 views

Are variables used in PHP functions automatically unset after function execution?

I have a question regarding the variables/arrays used in PHP functions. After executing the function, are all the variables automatically unset? If not, when do they unset exactly, after executing the ...
2
votes
3answers
147 views

Is there a way to use a function on a Microsoft SQL Server Query without using “dbo.” before the function?

Thats the question, i want to call a User defined function without using "dbo." before the function name and parameters in example: Using: SELECT USERFUNCTION(PARAM1,PARAM2,PARAM3,PARAMN) ...
2
votes
6answers
595 views

Is main() a User-Defined Function?

The programmer does define what happens inside main(), after all. So, should it be considered a user-defined function?
2
votes
9answers
225 views

Declaration and Implementation of Functions

According to my teacher, it's bad practice to write user-defined functions like this: int DoubleNumber(int Number) { return Number * 2; } int main() { cout << DoubleNumber(8); } ...
2
votes
4answers
209 views

PHP Optional Parameters - specify parameter value by name?

I was just wondering... I know it is possible to use optional arguments as follows: function doSomething($do, $something = "something") { } doSomething("do"); doSomething("do", "nothing"); But ...
2
votes
3answers
840 views

MySQL does not support recursive functions? why? since when?

I've written a stored FUNCTION that calls itself, recursively. However when I run it in a query I get this shameless error: Error: 1424 SQLSTATE: HY000 (ER_SP_NO_RECURSION) Message: ...
2
votes
3answers
350 views

Sql string manipulation within stored procedure

I have a field which contains article titles. I need to create friendly or pretty url's out of the article titles. I need help manipulating the string with SQL. This has to be done within a stored ...
2
votes
2answers
555 views

T-SQL: How Do I Create A “Private” Function Inside A Stored Procedure

Okay so im writing a SQL Server 2008 Stored Procedure (maintenance script). In doing so, being a good boy i've done plenty of error handling, checking rowcounts, printing output messages, etc But in ...
2
votes
1answer
332 views

Optimize MySQL query to avoid unnecessary calls to user-defined function

I have a query that makes several calls within a SELECT statement to a user-defined function. The function (vfget) returns the value back from key=value pairs contained within a string. Is it ...
2
votes
5answers
148 views

SQL Server: what can a stored procedure do that a user defined function cannot?

Can you tell me what is the need for a stored procedure when there is UDF?
2
votes
1answer
675 views

Linq To NHibernate Plus sql user defined function

I have a rather large linq-to-nhibernate query. I now need to add a filter based on a user-defined function written in t-sql that i have to pass parameters into. In my case, I need to pass in a ...
2
votes
1answer
283 views

SQL Server 2008: Can a multi-statement UDF return a UDT?

Is it possible that a multi-statement UDF return a User Defined Table Type, instead of a table that is defined within it's return param? So instead of: CREATE FUNCTION MyFunc ( @p1 int, @p2 ...
2
votes
1answer
398 views

How to use UDF output as LINQ to SQL entity class property value?

Just starting out with LINQ to SQL (you can probably tell - be gentle). I'd like to use the value returned by a user-defined function as an entity class property value and have the the value ...
2
votes
3answers
128 views

optional function inputs in PHP

I notice that in some PHP built in functions such as str_replace there are optional input variables. Can I have have optional input variables in my own functions? If so, how? Thanks, Brian
2
votes
5answers
2k 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 hundreds of times. I've ...
2
votes
3answers
502 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 server cannot store ...
2
votes
1answer
287 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 new ones and ...
2
votes
1answer
3k views

Cannot create index on view with User Defined Function in SQL Server

In SQL Server 2005, I'm trying to use a User Defined Function in a indexed view that will be used in a full-text index. I have been able to get the UDF to work with a stored procedure and the view in ...
2
votes
2answers
858 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'm using theses ...
1
vote
1answer
64 views

Return Different Data Types in C Function

I am having the following situation: void func () { TEST_MACRO(....., ret_type) .......... } some_ptr* func2() { TEST_MACRO(....., ret_type) .......... } int func3() { ...
1
vote
4answers
94 views

C+ program involving functions…Please help me

I am having a hard time with two functions. Here are the project instructions: Assignment: Write a program which keeps track of the number of roaches in two adjacent houses for a number of weeks. The ...
1
vote
2answers
47 views

MySQL Procedure within a Select?

Still learning the ropes on MySQL - I have a procedure that works like this: mysql> call Ticket_FiscalTotals(100307); +---------+--------+----------+------------+------------+ | Service | Items | ...
1
vote
0answers
79 views

Using Dynamic SQL in User Defined Function to return string (not modify data)

Our document storage application has a unique database for each of our clients which are almost identical to each other, but one table DocumentIndexes is unique for each client and can have any number ...
1
vote
1answer
66 views

Problems setting up an SQL User-Defined Function in MySQL using the Java Language

I have had quite some difficulty trying to make a User Defined Function (UDF) in Java for my MySQL Server. I was hoping I could ask for some help on this subject. Here is what I have done so far: I ...

1 2 3 4