To drop a tablespace in Postgres, execute the DROP TABLESPACE statement followed by the name of the tablespace to be discarded.
Education
Professional Postgres and Open Source support
Command Prompt, Inc., is the oldest Postgres Company in North America and one of the oldest Open Source firms still operating today. We serve our clients with best in class expertise and professionalism. You can read more about support and services here:
- Postgres Support
- PgLTS: Extended Support for EOL Postgres
- Open Source Full Stack Support
- Try the latest PgManage (Open Source) and get rid of PgAdmin!
You have landed at the largest single source of Postgres education blogs in the world. At Command Prompt, we believe deeply that the education of the community is critical to the continued success of Postgres and related technologies. We hope you find content you are looking for and don't hesitate to Contact us today for all your Postgres and Open Source consulting and support needs.
How to Alter a Tablespace in PostgreSQL
To alter a tablespace in PostgreSQL, the “ALTER TABLESPACE” statement is used with “RENAME TO”, “OWNER TO”, and “SET” clauses.
How to Log Queries in PostgreSQL
To log queries in Postgres, first, locate the config file, then locate the data directory path. After that, configure the configurations and direct the output to the log file.
PostgreSQL UPDATE Vs. UPDATE...FROM - What's the Difference
The UPDATE statement updates the table's data with the new values provided in the query. While the UPDATE FROM statement updates a table's data in accordance with the values of the other table.
How to Write Case-Insensitive Queries in PostgreSQL
There are four methods to write the case-insensitive matching in PostgreSQL. Those are CITEXT extension, LOWER() function, ILIKE operator, and Case conversion.
How to Connect to PostgreSQL From Visual Studio Code
To Connect to PostgreSQL From VS Code, launch the VS Code, press “CTRL + Shift + X” to open the Extensions view, select the “PostgreSQL” extension, and Install” it.
PostgreSQL transaction_timestamp() Function
The transaction_timestamp() function returns the timestamp for the current transaction. This function does not need any argument.
What Does starts_with() Function Do in PostgreSQL
The starts_with() function takes a string and checks whether that string starts with another specified string passed as an argument in the function and returns a boolean.
Raise Notice Statement in PostgreSQL
RAISE NOTICE is used to raise an error and report a message and that error is reported back to the user. It is followed by a format that is basically the string we want to show to the user.
How to Use strpos() Function in PostgreSQL
The strpos() is a built-in function in PostgreSQL that is used to determine the position/location of a sub-string in a main string.