tencent cloud

Tencent Cloud WeData

Release Notes
Dynamic Release Record (2026)
Product Introduction
Product Overview
Product Advantages
Product Architecture
Product Features
Application Scenarios
Purchase Guide
Billing Overview
Product Version Purchase Instructions
Execute Resource Purchase Description
Billing Modes
Overdue Policy
Refund
Preparations
Overview of Account and Permission Management
Add allowlist /security groups (Optional)
Sign in to WeData with Microsoft Entra ID (Azure AD) Single Sign-On (SSO)
Operation Guide
Console Operation
Project Management
Data Integration
Studio
Data Development
Data Analysis
Data Science
Data Governance (with Unity Semantics)
API Documentation
History
Introduction
API Category
Making API Requests
Smart Ops Related Interfaces
Project Management APIs
Resource Group APIs
Data Development APIs
Data Asset - Data Dictionary APIs
Data Development APIs
Ops Center APIs
Data Operations Related Interfaces
Data Exploration APIs
Asset APIs
Metadata Related Interfaces
Task Operations APIs
Data Security APIs
Instance Operation and Maintenance Related Interfaces
Data Map and Data Dictionary APIs
Data Quality Related Interfaces
DataInLong APIs
Platform Management APIs
Data Source Management APIs
Data Quality APIs
Platform Management APIs
Asset Data APIs
Data Source Management APIs
Data Types
Error Codes
WeData API 2025-08-06
Service Level Agreements
Related Agreement
Privacy Policy
Data Processing And Security Agreement
Contact Us
Glossary

TCHouse-P

PDF
Mode fokus
Ukuran font
Terakhir diperbarui: 2026-01-07 17:48:31
Note:
You need to bind TCHouse-P engine.
Permissions for the corresponding TCHouse-P databases and tables need to be set in TCHouse-P.

Feature Overview

Submit a TCHouse-P task execution to the WeData workflow scheduling platform.

Sample code:

-- Create a database
CREATE DATABASE wedata_demo_db;
Switch the database to the corresponding one in the TCHouse-P task.



Execute SQL on the task page:
-- Create schema
CREATE SCHEMA demo;

-- Create a table
CREATE TABLE demo.user_info (
id SERIAL PRIMARY KEY,
name VARCHAR(255) NOT NULL
);

-- Insert data
INSERT INTO demo.user_info (name) VALUES ('Alice'), ('Bob');


-- View data
select * from demo.user_info;

-- View the schema of the corresponding database
SELECT schema_name
FROM information_schema.schemata
WHERE catalog_name = 'wedata_demo_db';

-- View tables in the corresponding schema
SELECT table_name
FROM information_schema.tables
WHERE table_schema = 'demo';


Bantuan dan Dukungan

Apakah halaman ini membantu?

masukan