Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 988 Bytes

File metadata and controls

30 lines (21 loc) · 988 Bytes
title EXECUTE TASK
sidebar_position 4

import FunctionDescription from '@site/src/components/FunctionDescription';

The EXECUTE TASK statement is used to execute an existing task manually

Syntax

EXECUTE TASK  <name>
Parameter Description
name The name of the task. This is a mandatory field.

Usage Notes:

  • The SQL command can only execute a standalone task or the root task in a DAG. If a child task is input, the command returns a user error.

Usage Examples

EXECUTE TASK  mytask;

This command executes the task named mytask.