All Products
Search
Document Center

MaxCompute:UNINSTALL PACKAGE

Last Updated:Mar 26, 2026

Uninstalls a package that is installed in a MaxCompute project.

Syntax

uninstall package <project_name>.<package_name>;

Parameters

Parameter Required Description
project_name Yes The name of the MaxCompute project that owns the package. To find the project name, log on to the MaxCompute console, select a region in the top navigation bar, and check the Project management tab.
package_name Yes The name of the package to uninstall. To obtain the information about packages that you created, run show packages; on the MaxCompute client.

Example

Uninstall the datashare package (owned by test_project_a) from test_project_b:

-- Uninstall the datashare package.
uninstall package test_project_a.datashare;

Related statements