What Should I Do If There Are ctid, xc_node_id, and tableoid Columns in GaussDB?
Symptom
To migrate a heterogeneous database to GaussDB, you need to manually rename the ctid, xc_node_id, tableoid, and ctrd columns.
Causes
There are the system columns ctid, xc_node_id, tableoid, and ctrd both in GaussDB and the source database. You need to manually rename these columns when migrating data to GaussDB.
Solution
- Run the following command to connect to the GaussDB database:
gsql -U username -d database -p 4000 -W pwd
In the preceding command, username indicates the database username, database indicates the database name, and pwd indicates the password of the username.
- Run the following SQL statement to rename the columns ctid, xc_node_id, tableoid, and ctrd:
create table test("CTRD" int);
create table test("XC_NODE" int);
create table test("TABLEO" int);
create table test("CTRD" int);
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot