Tagged Questions

0
votes
0answers
13 views

Doing an INSERT from a C DB2 scalar UDF

Is it possible to do an INSERT statement inside a scalar C-language UDF in DB2? I know it sounds weird to have an UDF with side effects like this, but there's a good reason for it. …
0
votes
1answer
23 views

How to properly compile C++ UDFs on Snow Leopard for MySQL

I am trying to install a Levenshtein UDF for MySQL but I am having a ton of problems, I think mainly because of the lack of documentation for Macs. The specific UDF I am using is t …
0
votes
2answers
38 views

How to refresh the definition of a T-SQL user-defined function after a dependent object is redefined?

Consider the following sequence of events: A view v_Foo is defined A user-defined function GetFoo() is defined that includes all columns from v_Foo (using 'Select * ...') The def …
0
votes
2answers
63 views

Function in SQL Select Statement

CREATE VIEW View1 AS SELECT Col1, Col2, dbo.fn1(col2) as Col3 FROM TestTable /* --Instead of writing below query I created a new View View2 SELEC …
1
vote
2answers
32 views

What’s the difference between “::” and “sys” schemas?

As far as I know, BOL exmaple on fn_trace_getinfo used to use :: instead of sys schema in the example like following From SELECT * FROM ::fn_trace_getinfo(default) To SEL …
1
vote
1answer
117 views

DB2 AS400 Java function always returns same value

Hello, I am writing a user defined function to DB2 on AS/400 in Java and the strangest thing happen.. I am always getting the same result from the function even when i am changing …
0
votes
4answers
115 views

C/C++ Libraries for reading from Universal Disk Format devices or files

Are there any good free C/C++ libraries that enable reading from common devices with filesystems such as UDF, and ISO9660 and extracting files/metadata etc.? So far all I've been …
0
votes
2answers
54 views

Calling a UDF in LINQ without “dbo” database user

Hi every one! I am using LINQ to call a function named "GetTabMenuTheme", I dragged it in the Database Model to generate the function like this: [Function(Name="dbo.GetTabMenuThe …
2
votes
4answers
4k views

Return multiple values from a SQL Server function

How would I go about returning multiple values (say, a number and a string) from a user-defined function in SQL Server?
1
vote
2answers
89 views

UDF - Return a table from a custom sql string execution with “Exec ‘select * from …’ “

Hello everyone, How can I return a table from an UDF that executes a custom query string? Eg: CREATE FUNCTION fx_AdvancedSearch ( @keywords varchar(255), (..... o …
0
votes
2answers
51 views

How to get around UDF restriction on side-effecting operators?

Microsoft Books Online (BOL) on Using Change Data explains a misleading error messages for cdc.fn_cdc_get_all_changes_* & cdc.fn_cdc_get_net_changes_* when an invalid, out-of-r …
7
votes
9answers
2k 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 whic …
0
votes
2answers
40 views

Dynamic tables from UDF in SQL Server

how can i decide this problem? SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO ALTER FUNCTION [dbo].[GetDataById] () RETURNS INT AS BEGIN DECLARE @query NVARCHAR(500) DECLA …
2
votes
5answers
104 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 …
4
votes
3answers
322 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 W …

1 2 3 4 5 next
15 30 50 per page