ibm-information-center/dist/eclipse/plugins/i5OS.ic.sqlp_5.4.0.1/rbafyudfuudf.htm

67 lines
5.1 KiB
HTML
Raw Normal View History

2024-04-02 14:02:31 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en-us" xml:lang="en-us">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="security" content="public" />
<meta name="Robots" content="index,follow" />
<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
<meta name="DC.Type" content="reference" />
<meta name="DC.Title" content="Use UDFs in SQL statements" />
<meta name="abstract" content="Scalar and column UDFs can be called within an SQL statement almost everywhere that an expression is valid. Table UDFs can be called in the FROM clause of a SELECT. There are a few restrictions of UDF usage, however." />
<meta name="description" content="Scalar and column UDFs can be called within an SQL statement almost everywhere that an expression is valid. Table UDFs can be called in the FROM clause of a SELECT. There are a few restrictions of UDF usage, however." />
<meta name="DC.subject" content="UDFs (User-defined functions), calling, examples of invocations" />
<meta name="keywords" content="UDFs (User-defined functions), calling, examples of invocations" />
<meta name="DC.Relation" scheme="URI" content="rbafyudf.htm" />
<meta name="DC.Relation" scheme="URI" content="rbafyuseparameter.htm" />
<meta name="DC.Relation" scheme="URI" content="rbafyusquref.htm" />
<meta name="DC.Relation" scheme="URI" content="rbafyuseunqualified.htm" />
<meta name="DC.Relation" scheme="URI" content="rbafysummary.htm" />
<meta name="copyright" content="(C) Copyright IBM Corporation 1998, 2006" />
<meta name="DC.Rights.Owner" content="(C) Copyright IBM Corporation 1998, 2006" />
<meta name="DC.Format" content="XHTML" />
<meta name="DC.Identifier" content="rbafyudfuudf" />
<meta name="DC.Language" content="en-us" />
<!-- All rights reserved. Licensed Materials Property of IBM -->
<!-- US Government Users Restricted Rights -->
<!-- Use, duplication or disclosure restricted by -->
<!-- GSA ADP Schedule Contract with IBM Corp. -->
<link rel="stylesheet" type="text/css" href="./ibmdita.css" />
<link rel="stylesheet" type="text/css" href="./ic.css" />
<title>Use UDFs in SQL statements</title>
</head>
<body id="rbafyudfuudf"><a name="rbafyudfuudf"><!-- --></a>
<!-- Java sync-link --><script language="Javascript" src="../rzahg/synch.js" type="text/javascript"></script>
<h1 class="topictitle1">Use UDFs in SQL statements</h1>
<div><p>Scalar and column UDFs can be called within an SQL statement almost
everywhere that an expression is valid. Table UDFs can be called in the FROM
clause of a SELECT. There are a few restrictions of UDF usage, however.</p>
<div class="section"><ul><li>UDFs and system generated functions cannot be specified in check constraints.
Check constraints also cannot contain references to some built-in functions
that are implemented by the system as UDFs. </li>
<li>External UDFs, SQL UDFS and the built-in functions DLVALUE, DLURLPATH,
DLURLPATHONLY, DLURLSCHEME, DLURLCOMPLETE, and DLURLSERVER cannot be referenced
in an ORDER BY or GROUP BY clause, unless the SQL statement is read-only and
allows temporary processing (ALWCPYDTA(*YES) or (*OPTIMIZE)).</li>
</ul>
</div>
</div>
<div>
<ul class="ullinks">
<li class="ulchildlink"><strong><a href="rbafyuseparameter.htm">Use parameter markers or the NULL value as function arguments</a></strong><br />
An important restriction involves both parameter markers and the NULL value.</li>
<li class="ulchildlink"><strong><a href="rbafyusquref.htm">Use qualified function reference</a></strong><br />
If you use a qualified function reference, you restrict the search for a matching function to that schema.</li>
<li class="ulchildlink"><strong><a href="rbafyuseunqualified.htm">Use unqualified function reference</a></strong><br />
You can use an unqualified function reference instead of a qualified function reference. In this case, DB2's search for a matching function normally uses the function path to qualify the reference.</li>
<li class="ulchildlink"><strong><a href="rbafysummary.htm">Summary of function references</a></strong><br />
For both qualified and unqualified function references, the function selection algorithm looks at all the applicable functions, both built-in and user-defined functions, that have the given name, the same number of defined parameters as argument, and each parameter identical to or promotable from the type of the corresponding argument.</li>
</ul>
<div class="familylinks">
<div class="parentlink"><strong>Parent topic:</strong> <a href="rbafyudf.htm" title="In writing SQL applications, you can implement some actions or operations as a UDF or as a subroutine in your application: Although it may appear easier to implement new operations as subroutines in your application, you might want to consider the advantages of using a UDF instead.">Use user-defined functions (UDFs)</a></div>
</div>
</div>
</body>
</html>