How to shrink database in postgresql

Поиск
Список
Период
Сортировка
Искать

How to shrink database in postgresql

От:
Rehan Saleem <pk_rehan@yahoo.com>
Дата:
hi ,
how can i shrink database in postgresql here is a MS-SQL store procedure which shrinks the database. how same task can be achieved in postgresql.

ALTER PROCEDURE [dbo].[sp_CleanUpDB]
AS
declare @db nvarchar(50)
select @db = db_name()
DBCC SHRINKDATABASE (@db, 10)

thanks

Re: How to shrink database in postgresql

От:
Mario Marín <mmfmarin@gmail.com>
Дата:

Re: How to shrink database in postgresql

От:
Pavel Stehule <pavel.stehule@gmail.com>
Дата:
FAQ