After completing operations in this tutorial, if you no longer need to use the resources created during the operations, you can delete them to avoid resource waste or quota occupation.
DROP TABLE product_info;
DROP FOREIGN TABLE foreign_product_info;
If operations in Manually Creating a Foreign Server have been performed, perform the following steps to delete the foreign server, database, and user:
You can use the gsql client to log in to the database in either of the following ways:
\c mydatabase dbuser;
Enter the password as prompted.
gsql -d mydatabase -h 192.168.2.30 -U dbuser -p 8000 -r
Enter the password as prompted.
Run the following command to delete the server. For details about the syntax, see DROP SERVER.
DROP SERVER hdfs_server_8f79ada0_d998_4026_9020_80d6de2692ca;
The foreign server is deleted if the following information is displayed:
DROP SERVER
View the foreign server.
SELECT * FROM pg_foreign_server WHERE srvname='hdfs_server_8f79ada0_d998_4026_9020_80d6de2692ca';
The server is successfully deleted if the returned result is as follows:
srvname | srvowner | srvfdw | srvtype | srvversion | srvacl | srvoptions ---------+----------+--------+---------+------------+--------+------------ (0 rows)
Connect to the default database gaussdb through the database client tool provided by GaussDB(DWS).
If you have logged in to the database using the gsql client, run the following command to switch the database and user:
\c gaussdb
Enter your password as prompted.
Run the following command to delete the customized database:
DROP DATABASE mydatabase;
The database is deleted if the following information is displayed:
DROP DATABASE
Connect to the database as a database administrator through the database client tool provided by GaussDB(DWS).
If you have logged in to the database using the gsql client, run the following command to switch the database and user:
\c gaussdb dbadmin
REVOKE ALL ON FOREIGN DATA WRAPPER hdfs_fdw FROM dbuser;
The name of FOREIGN DATA WRAPPER must be hdfs_fdw. dbuser is the username for creating SERVER.
Run the following command to delete the user:
DROP USER dbuser;
You can run the \du command to query for the user and check whether the user has been deleted.