Files
doris/docs/en/sql-manual/sql-reference-v2/Data-Manipulation-Statements/Load/PAUSE-ROUTINE-LOAD.md
jiafeng.zhang 267e8b67c2 [refactor][doc]The new version of the document is online (#9272)
replace the `docs/` with `new-docs/`
2022-04-28 15:22:34 +08:00

1.3 KiB

title, language
title language
PAUSE-ROUTINE-LOAD en

PAUSE-ROUTINE-LOAD

Name

PAUSE ROUTINE LOAD

Description

Used to pause a Routine Load job. A suspended job can be rerun with the RESUME command.

PAUSE [ALL] ROUTINE LOAD FOR job_name

Example

  1. Pause the routine import job named test1.

    PAUSE ROUTINE LOAD FOR test1;
    
  2. Pause all routine import jobs.

    PAUSE ALL ROUTINE LOAD;
    

Keywords

PAUSE, ROUTINE, LOAD

Best Practice