usql.functions (U-SQL)

 

Updated: September 26, 2017

Contains one row per function belonging to the schemas in the current database context.

Column nameData typeDescription
<inherited columns>For a list of columns that this view inherits, see usql.objects.
is_user_definedboolIndicates if it is a user defined function
definitionstringFunction's definition (if available)

Examples

The examples can be executed in Visual Studio with the Azure Data Lake Tools plug-in.

Query the usql.functions view

USE TestReferenceDB;

OUTPUT usql.functions
TO "/ReferenceGuide/CatalogViews/functions.txt"
USING Outputters.Tsv(outputHeader:true);

See Also

Community Additions

ADD
Show: