> For the complete documentation index, see [llms.txt](https://docs.deltastream.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.deltastream.io/reference/sql-syntax/command/list-function_sources.md).

# LIST FUNCTION\_SOURCES

## Syntax <a href="#synopsis" id="synopsis"></a>

```sql
[ LIST | SHOW ] FUNCTION_SOURCES;
```

## Description

This command provides a list of [function sources](/overview/core-concepts/function.md) within the [organization](/overview/core-concepts/access-control.md#_organiation).

Function sources are listed only if the current role has USAGE privileges on them.

## Examples

```sh
demodb.public/demostore# LIST FUNCTION_SOURCES;
+---------+---------+-----------+--------------+------------------------------+----------+-------------------------------+-------------------------------+
|  Name   |  State  |  Language |  Description |  Url                         |  Owner   |  Created At                   |  Updated At                   |
+=========+=========+===========+==============+==============================+==========+===============================+===============================+
| myFuncs | ready   | Java      | my functions | https://download/url/myFuncs | sysadmin | 2024-07-17 20:32:56 +0000 UTC | 2024-07-17 20:32:56 +0000 UTC |
+---------+---------+-----------+--------------+------------------------------+----------+-------------------------------+-------------------------------+
```
