检测到您已登录华为云国际站账号,为了您更好的体验,建议您访问国际站服务网站 https://www.huaweicloud.com/intl/zh-cn

不再显示此消息

  • Intl-English
    International
    • English
    • Bahasa Indonesia
    • Español
    • Português
    • Türkçe
    • عربي
    • ไทย
    • 简体中文
    • 日本語
    中国站
    • 简体中文
    Europe
    • English
    • Deutsch
    • Español
    • Français
    • Nederlands
  • Huawei Cloud
    • Activities
    • Products
    • Solutions
    • Pricing
    • KooGallery
    • Partners
    • Developers
    • Support
    • About Us
    Hot
    • Free Packages
    • Elastic Cloud Server (ECS)
    • Object Storage Service (OBS)
    • ModelArts
    • Cloud Container Engine (CCE)
      Show more results for “”
      • Contact Us
      • Documentation
      • Console
        • My Account
        • Billing & Costs
        • Service Tickets
        • Unread Messages
        • Console
        • Partner Center
        • Sign In Sign Up
      • Sign In
      • Sign Up
        • My Account Complete Sign Up
        • Billing & Costs
        • Service Tickets
        • Unread Messages
        • Console
        • Partner Center
        • Log Out
      Cancel
      Hot
      • Free Packages
      • Elastic Cloud Server (ECS)
      • Object Storage Service (OBS)
      • ModelArts
      • Cloud Container Engine (CCE)
        • All
        • Products
        • Solutions
        • Documentation
        • KooGallery
        • Developer
        • Learn
        • Others
        10000 results found.
        • Developer Guide(Centralized_V2.0-2.x) - GaussDB

          Developer Guide(Centralized_V2.0-2.x) - GaussDB

          In this way, the sequence will be deleted when you delete its associated column or the table where the column belongs to. 1 openGauss=# ALTER SEQUENCE seq1 OWNED BY T2.id; If the following information is displayed, the column has been specified: 1 ALTER SEQUENCE The preceding methods

          Help > GaussDB > Developer Guide(Centralized_V2.0-2.x)
        • SQL Syntax - GaussDB

          SQL Syntax - GaussDB

          CREATE SCHEMA CREATE SEQUENCE CREATE SERVER CREATE SYNONYM CREATE TABLE CREATE TABLE AS CREATE TABLE PARTITION CREATE TABLESPACE CREATE TABLE SUBPARTITION CREATE TRIGGER CREATE TYPE CREATE USER CREATE USER MAPPING CREATE VIEW CREATE WEAK PASSWORD DICTIONARY CURSOR DEALLOCATE DECLARE DELETE

          Help > GaussDB > Developer Guide(Centralized_V2.0-2.x) > SQL Reference
        • ALTER AUDIT POLICY - GaussDB

          ALTER AUDIT POLICY - GaussDB

          DML Specifies the operations that are audited in the database: SELECT, COPY, DEALLOCATE, DELETE, EXECUTE, INSERT, PREPARE, REINDEX, TRUNCATE, and UPDATE. ALL Specifies all operations supported by the specified DDL or DML statements in the database.

          Help > GaussDB > Developer Guide(Centralized_V2.0-2.x) > SQL Reference > SQL Syntax
        • Creating and Managing Sequences - GaussDB

          Creating and Managing Sequences - GaussDB

          In this way, the sequence will be deleted when you delete its associated column or the table where the column belongs to. 1 openGauss=# ALTER SEQUENCE seq1 OWNED BY T2.id; If the following information is displayed, the configuration is successful: 1 ALTER SEQUENCE The preceding

          Help > GaussDB > Developer Guide(Centralized_V2.0-2.x) > Database Quick Start > Operating a Database > Other Operations
        • CREATE SERVER - GaussDB

          CREATE SERVER - GaussDB

          Examples -- Create a server. openGauss=# create server my_server foreign data wrapper log_fdw; CREATE SERVER -- Delete my_server. openGauss=# DROP SERVER my_server; DROP SERVER Helpful Links ALTER SERVER and DROP SERVER Parent topic: SQL Syntax

          Help > GaussDB > Developer Guide(Centralized_V2.0-2.x) > SQL Reference > SQL Syntax
        • Bit String Types - GaussDB

          Bit String Types - GaussDB

          converted if it exceeds this length. openGauss=# INSERT INTO bit_type_t1 VALUES(2, B'10'::bit(3), B'101'); -- View data. openGauss=# SELECT * FROM bit_type_t1; bt_col1 | bt_col2 | bt_col3 ---------+---------+--------- 1 | 101 | 00 2 | 100 | 101 (2 rows) -- Delete

          Help > GaussDB > Developer Guide(Centralized_V2.0-2.x) > SQL Reference > Data Type
        • Glossary - Cloud Server Backup Service

          Glossary - Cloud Server Backup Service

          After a backup target is associated with a backup policy, the system will automatically back up data and delete expired backups according to the policy.

          Help > Cloud Server Backup Service > Glossary
        • Billing Overview - Scalable File Service

          Billing Overview - Scalable File Service

          Stopping Billing If you no longer need to use your SFS file system, you can unsubscribe from or delete it to stop the billing. For details, see Billing Termination. Managing Costs You can allocate, analyze, and optimize costs to save more money. For details, see Cost Management.

          Help > Scalable File Service > Billing
        • Billing Overview - Scalable File Service Turbo

          Billing Overview - Scalable File Service Turbo

          Stopping Billing If you no longer need to use your SFS Turbo file system, you can unsubscribe from or delete it to stop the billing. For details, see Billing Termination. Managing Costs You can allocate, analyze, and optimize costs to save more money.

          Help > Scalable File Service Turbo > Billing
        • Replay Overview - Data Replication Service

          Replay Overview - Data Replication Service

          All of the SQL statements (create, delete, update, and query operations) executed in the required period on the source database will be downloaded by a recording tool from the binlog, and then cached and injected into the destination database where you can trigger a replay and review

          Help > Data Replication Service > Workload Replay
        • Updating Statistics - GaussDB

          Updating Statistics - GaussDB

          ALTER TABLE tablename DELETE STATISTICS ((column_1, column_2)); --Delete statistics about column_1 and column_2 of tablename or their statistics declaration.

          Help > GaussDB > Developer Guide(Distributed_V2.0-2.x)
        • Bit String Types - GaussDB

          Bit String Types - GaussDB

          converted if it exceeds this length. openGauss=# INSERT INTO bit_type_t1 VALUES(2, B'10'::bit(3), B'101'); -- View data. openGauss=# SELECT * FROM bit_type_t1; bt_col1 | bt_col2 | bt_col3 ---------+---------+--------- 1 | 101 | 00 2 | 100 | 101 (2 rows) -- Delete

          Help > GaussDB > Developer Guide(Distributed_V2.0-2.x)
        • SET TRANSACTION - GaussDB

          SET TRANSACTION - GaussDB

          The isolation level cannot be changed after data is modified using INSERT, DELETE, UPDATE, FETCH, or COPY in the current transaction. Value range: READ COMMITTED: Only committed data is read. It is the default value. READ UNCOMMITTED: Uncommitted data is probably read.

          Help > GaussDB > Developer Guide(Distributed_V2.0-2.x)
        • Conditional Statements - GaussDB

          Conditional Statements - GaussDB

          ',i; END IF; RETURN; END; / CALL proc_control_structure(3); -- Delete the stored procedure. DROP PROCEDURE proc_control_structure; Parent topic: Control Statements

          Help > GaussDB > Developer Guide(Distributed_V2.0-2.x)
        • Cursor Loop - GaussDB

          Cursor Loop - GaussDB

          CLOSE C2; END; / -- Delete the temporary table. DROP TABLE integerTable1; DROP TABLE integerTable2; Parent topic: Cursors

          Help > GaussDB > Developer Guide(Distributed_V2.0-2.x)
        • Modifying the Change Status - CodeArts Pipeline

          Modifying the Change Status - CodeArts Pipeline

          Type Description repo_id String Repo code repository ID. http_url String HTTP address of the code repository. git_url String Git address of the code repository. feature_branch String Feature branch. main_branch String Default branch. delete_branch_after_released Boolean Whether to delete

          Help > CodeArts Pipeline > API Reference > API > Change Management
        • Taking an API Version Offline - ROMA Connect

          Taking an API Version Offline - ROMA Connect

          URI DELETE /v2/{project_id}/apic/instances/{instance_id}/apis/versions/{version_id} Table 1 Path Parameters Parameter Mandatory Type Description project_id Yes String Project ID.

          Help > ROMA Connect > API Reference > Service Integration APIs > API Management
        • Setting Busy - Cognitive Engagement Center

          Setting Busy - Cognitive Engagement Center

          This interface supports only the POST method and does not support PUT, GET, DELETE, or other methods. URI https://ip:port/agentgateway/resource/onlineagent/{agentid}/saybusy?

          Help > Cognitive Engagement Center > API Reference > Agent Workbench Interface Reference > Agent Control > Agent Operation Interfaces: onlineagent
        • Billing Overview - Elastic Cloud Server

          Billing Overview - Elastic Cloud Server

          Stopping Billing If you no longer need to use your cloud service, you can unsubscribe from or delete it to stop the billing. For details, see Billing Termination. Managing Costs You can allocate, analyze, and optimize costs to save more money. For details, see Cost Management.

          Help > Elastic Cloud Server > Billing
        • Arrears - Elastic Cloud Server

          Arrears - Elastic Cloud Server

          If an ECS is no longer used, you can delete it and its associated resources to avoid generating further expenditures. To help make sure your account never falls into arrears, you can configure the Balance Alert on the Overview page of the Billing Center.

          Help > Elastic Cloud Server > Billing
        Total results: 10000
        • Previous
        • 1
        • ...
        • 487
        • 488
        • 489
        • ...
        • 500
        • Next
        • Go
        Load More
        Was this helpful?
        Feedbacks
        /200
        Submit Feedback Cancel
        Contact Sales After-Sales Self Service
        • Site Terms
        • Privacy Statement

        Explore Huawei Cloud

        Why Us Customer Stories Trust Center Legal Press Releases

        Featured Services

        Elastic Cloud Server (ECS) Elastic IP (EIP) RDS for MySQL Elastic Volume Service (EVS) MapReduce Service (MRS)

        Service and Support

        Documentation Contact Us Public Notices Support Plans Service Health Dashboard

        Account and Payment

        Top Up Invoices Billing Center My Account Payment Method

        Quick Links

        Huawei Corporate Huawei Enterprise Huawei Consumer Business Huawei Developers

        © 2025, Huawei Cloud Computing Technologies Co., Ltd. and/or its affiliates. All rights reserved.

        • Site Terms
        • Privacy Statement