A function provided by the user of a program or an environment
1
vote
1answer
25 views
Passing a row range to Excel User Define Function and assign it to an array
I am trying to
pass two ranges - multiple column single row - to a user defined function in Excel 2007,
then assigning it to an array for processing.
Function MAE(actualData As Range, forecastData ...
0
votes
0answers
10 views
EDF #NAME Error but works with Sub
I have exhausted EVERY piece of reference and I can't seem to figure out why this function isn't working. I'm new to creating UDFs so here's my problem: I get a #NAME error when I try to call the ...
-1
votes
0answers
30 views
Have someone a function in SQL that given a initial date, a day number and a final date calculate next matching day number and month? [closed]
I would like to know if someone have a function in SQL that given a initial date, a day number, a frecuency and a final date calculate next matching day number and month?
For example
...
0
votes
0answers
65 views
SQL Server Updating the database through a select statement
We have a 3rd party application that takes a SQL select statement and runs it against a SQL Server database at a regular scheduled interval. It wakes up regularly, runs the select for input and does ...
0
votes
1answer
20 views
SQL function that given a date calculates the next date based on an day of week parameter
i would like to know if someone have a function in SQL, than given a initial date and a day of week (tuesday for example) it can calculate when is the next date since de initial date that will be ...
0
votes
1answer
21 views
Unit Testing nHibernate Mappings
I am mapping some table valued functions in nHibernate using HBM files. Our table functions have been changing quite a bit lately, so I want to make sure our mapping files are updated when these ...
0
votes
1answer
59 views
VBA user-defined function to copy value, text formation and hyperlink of a cell?
Given a sample plain excel file here, what is the VBA code to copy value, formation and hyperlink of a cell?
i.e. At cell B5 we will call =myCopyCellFunction(B2) and we will get the exact cell value ...
0
votes
1answer
28 views
Javascript personalized function
I need to know how to make something like a jQuery function, not with the CSS selectors, just like this:
function getId( item ) {
return document.getElementById( item );
}
...
0
votes
4answers
98 views
SQLite - WHERE Clause & UDFs
Intro
I have the following SQLite table with 198,305 geocoded portuguese postal codes:
CREATE TABLE "pt_postal" (
"code" text NOT NULL,
"geo_latitude" real(9,6) NULL,
"geo_longitude" real(9,6) ...
0
votes
4answers
50 views
Can't connect to database from a function
Let me apologize in advance. I've been working on this project all day and I'm tired and probably just need sleep but I can't seem to connect to a mysql database from a function.
I have a database ...
0
votes
1answer
34 views
How do I use variables across multiple functions?
Suppose I have a simple console program as follows:
(haven't tested it and it may contain errors since I'm sort of a newbie)
#include <iostream>
using namespace std;
void startProgram();
int ...
0
votes
0answers
30 views
recursive UDF inaccurate in SSRS with embedded SQL
I am creating a report in Report Designer. The dataset uses a query that looks like:
SELECT LE.Amount, dbo.fnMoneyToEnglish(LE.Amount)
FROM tblXXX LE
WHERE LE.ID = @ID
The UDF fnMoneyToEnglish ...
6
votes
2answers
152 views
sql server CLR scalar function with default column name
I was wondering, if there's any way to add a column names to my CLR scalar functions in Sql Server. I mean that after I run my query, I'd like to see a column with a result of this function already ...
0
votes
1answer
68 views
ERROR 1066: Unable to open iterator for alias in certain fields, but works for others
I am unable to use my udf on some fields, yet I can do it on others. If I use my first field, ipAddress, the udf works as intended. However, if I change it to be date I got the 1066 error. Here is my ...
0
votes
1answer
20 views
Can't trigger class function after nesting object (AS3)
I created a class called item. This class returns its variables with the function itemdata();
I'm creating object instances of this class and adding them to another object through this:
//Item ...
-6
votes
2answers
41 views
I can't write a python average function that will average 3 input integers from user. (average has to be in float) [closed]
Can't write a functional python code that asks users to enter three integers, pass through a function named (avg) and will return the average as a (float) value.
0
votes
0answers
100 views
Pig ERROR 1066: Unable to open iterator for alias returned from UDF
I am trying to load up my own UDF in pig. I have made it into a jar using eclipse's export function. I am getting this 1606 error when running my pig script. I am not sure B = .. as I can dump A, but ...
0
votes
3answers
73 views
How to print out 2d arrays with function in C++?
I am trying to make a function that prints out two dimensional arrays.
I did one that prints out 1d arrays.
#include <iostream>
using namespace std;
void printArray (int theArray[],int ...
0
votes
1answer
24 views
Pig error 1070 when doing UDF
I am trying to load up my own UDF in pig. I have made it into a jar using eclipse's export function. I am trying to run it locally so I can make sure it works before I put the jar on HDFS. When ...
1
vote
1answer
59 views
inserting result of a function into a table
I get consequent 24 months from the following table valued function. I need to insert these months in another table where the result should be like this:
Week Period
1 2010-02-01
2 ...
0
votes
1answer
36 views
Cannot locate user defined functions in SQL Server 2008
First time using SQL Server 2008 this morning.
I am trying to find a user defined function that I created. I cannot locate it in the "Programmability>Functions" branch of the object explorer. Here is ...
2
votes
1answer
24 views
How can I define a vectroized function to make a list of 2 by 2 matrices?
I'm trying to define a function that return a 2 by 2 matrix. Specifically, I have:
def f(d,n):
return scipy.mat([[1,d/n],[0,1]])
This works fine when d and n are scalar input. But if d and n ...
1
vote
3answers
43 views
Adding a column to a data frame with a multi-parameter user defined function in R
I have a data frame 'x' with 8 integer columns (and about 1000 rows of data). I have created a UDF 'test' that takes 8 integer parameters and return a single value. I have tested the UDF by passing it ...
-2
votes
5answers
87 views
PHP Code to generate random ID number for database [closed]
Here is one for those well versed in PHP as well as MYSQL.
I'm looking for a way to generate unique but yet random long numbered IDs for each entry into the database.
I don't want it to start with ...
0
votes
0answers
15 views
differentiate the error function
Beginner's question: I have an expression for which I had to define the error function:
erf <- function(x) 2 * pnorm(x * sqrt(2)) - 1
I want to find its max- and min points, but deriv() will not ...
0
votes
0answers
48 views
Remote table-Valued Function Calls are not allowed
How can I make this work?Im running a table valued function from a remote linked server. i tried adding no lock to this 4 part naming but still i get the same error. Im using mssql-2008
select * from ...
0
votes
3answers
50 views
writing user defined functions
I am new to writing functions and I'm not really sure where to start. Below is a subset of a data frame named m1 for this example. I would like to write a function that will go through the data set ...
1
vote
1answer
42 views
How a function can take array or set values as parameter(IN) for an user defined function in PostgreSQL
I was about to make an user defined function to implement faceted search in a hypergraph based database where the function will return facets with counts. problem is I need to pass the set of fields ...
0
votes
0answers
12 views
can we use a class as UDF return value
I have a class-module CTest:
Option Explicit
Public Function TestFct() As String
TestFct = "Test string"
End Function
And a public UDF that returns an instance of that class:
Public Function ...
0
votes
0answers
95 views
SQL Server 2008 Computed Column / Trigger / Function to link multiple tables and enter data into another table
I've got the following problem, which I'd like to solve in SQL Server 2008.
I have a table Products, each product with a range of up to 3 different areas, which contains information about the total ...
0
votes
2answers
36 views
Changing values in matrix in matlab via a function call
I have a matrix full of zeros. I would then like to change one 0 at a time to the value one. It has to be me deciding which element I would like to change. I have tried the following:
classdef ...
1
vote
1answer
33 views
VB Function error message
So I want to create a function to calculate the 'cost' of a solution to a problem.
I have created a 1 dimensional array Sum(m) that contains integer values. This is referenced in a different sub ...
0
votes
0answers
32 views
Writing a Hive UDF using jRuby
Can it be done? Here's a test UDF I had tried writing:
java_package "com.foo.hive.udf"
java_import org.apache.hadoop.hive.ql.exec.Description
java_import org.apache.hadoop.hive.ql.exec.UDF
...
0
votes
1answer
45 views
Resursive function calling in user created smarty functions in smarty plugin directory
I am trying to write a smarty function inside smarty plugin directory. It is a recursive function . It is working well in normal php files and will generate a drop down select box. Now I would like to ...
0
votes
2answers
82 views
How to loop through the resultset of query in the sql server user defined function?
I want to apply loop in the resultset of query in the user defined function in sql server.
Here is the query:
select acc_no, balance from sav_acc_mcg where scheme_id ='001'
This query gives a no. ...
2
votes
4answers
90 views
going nuts trying to write a simple function that operates on one column of a dataframe
I am trying to write a function that "variabilizes" the ddply call:
december <- ddply(adk47, .(PeakName, Elevation), summarize,
needThese=if(sum(dec) == 0) "needThis"
else character(0), ...
0
votes
0answers
40 views
Convert Extended Stored Procedure to User-defined Function
I have a .dll which have attached to SQL Server using an extended stored procedure.
Is there any way to use the dll in a function?
0
votes
0answers
19 views
Heroku PostgreSQL 9.1 , copying user defined functions
I have a production database in Heroku . I use PostgreSQL 9.1
I want to get a test environment with test database. It doesn't matter for me where the test database should be - on local or in Heroku.
...
0
votes
0answers
46 views
Extending Hive: writing a UDF that does both Map and Reduce operations
I am working on a project to extend Hive to support some image processing functions.
To do this, we need to read in an image, break it up into multiple files, pass each into a separate Map task that ...
0
votes
0answers
47 views
I want to write a User-Defined Function for SQL Server with Visual C++
I want to write a SQL Server User-Defined Functions with Visual C++.
before this i wrote a dll and brought to SQL Server as Extended Stored procedure.
but this page said that the way is Deprecated ...
2
votes
1answer
45 views
Is it possible to write a UDF in VBA that conatins a period in the name?
Excel 2010 ships with some functions that contain a period in their name. For example STDEV.S and PERCENTILE.EXC
Is it possible to assign a name to my own function with a name such as ...
2
votes
1answer
86 views
Operand type clash using user defined table type on SQL Server
I have created a user defined type (with script to CREATE) given below:
CREATE TYPE [dbo].[udt_ProductID_SellingPrice] AS TABLE(
[Product_Id] [int] NOT NULL,
[Selling_Price] [money] NULL,
...
0
votes
1answer
105 views
Let MySQL AFTER INSERT trigger fire after transaction finishes
I have a mysql database, where entries are added in two related tables within an explicit transaction block. When the transaction finishes successfuly (and only then), another process should be ...
3
votes
2answers
124 views
Delphi Firebird UDF return only one char
I'm using Firebird 2.5.
I'm trying to write a Delphi XE2 UDF to return some string from some input params.
Here is the function in Delphi:
function FormatRasaSingle(var formatRasa : PChar; var ...
0
votes
1answer
144 views
How to get multiple values along with null values in sql server and ssrs
I am working on this SSRS report, where user is asking me to create a report that has three parameters: Term, Student Status, and Admission Offer.
Description:
There are following distinct admission ...
1
vote
3answers
52 views
Return a table from a User defined function
CREATE FUNCTION dbo.ta_OTMultiplierstest (@id int)
RETURNS nvarchar (100)
AS
BEGIN
DECLARE @text nvarchar(100)
set @text = ( SELECT CONVERT(nvarchar(5), b.Duration), CONVERT(nvarchar(5),b.Mon), ...
3
votes
1answer
141 views
Passing a range to Excel User Defined Function and assigning it to an array
I am trying to
pass two ranges - multiple rows single column - to a user defined function in Excel 2007,
then assign it to an array for processing.
Can anybody tell me how to assign such range ...
0
votes
3answers
65 views
How to write functions with variable arguments in C
I want to write a function with variable number of arguments in c..can some one guide me..
0
votes
0answers
52 views
Performance and usage of CLR functions in SQL
SQL Server allows you to create CLR functions, stored procedures, user types and other objects, for purpose that are really complex to be done inside SQL.
But, can someone compare those two things: ...
0
votes
1answer
28 views
UDFRowSequence not working
I am trying to use auto increment UDF (http://svn.apache.org/repos/asf/hive/trunk/contrib/src/java/org/apache/hadoop/hive/contrib/udf/UDFRowSequence.java)
I am getting error when i used this UDF.
...







