Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the wordpress-seo domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/vinascript/html/wp-includes/functions.php on line 6114
Chỉnh sửa (Alter) Database trong PostgreSQL - VinaScript

Latest Post

Triển khai dự án PHP, Mysql với Nginx trên Docker Tìm hiểu về HTML – Ưu điểm, nhược điểm và cách hoạt động của HTML

Khi bạn đã tạo một database trong PostgreSQL, nếu bạn muốn chỉnh sửa thông tin của cơ sở dữ liệu đó, bạn có thể sử dụng lệnh SQL ALTER trong PostgreSQL để thực hiện việc này.

Đổi tên (rename) database

  
ALTER DATABASE <old_database> RENAME TO <new_database>;

Với:

  • <old_database>: Tên của database cũ
  • <new_database>: Tên của database mới

Thay đổi owner (chủ sở hữu – User quản lý database)

ALTER DATABASE <database> OWNER TO <new_onwer>;
  • <database>: là database cần thay đổi user quản lý
  • <new_onwer>: Là tên của user mới sẽ quản lý của database

Thay đổi Tablespace

ALTER DATABASE <database> SET TABLESPACE <new_tablespace>;
  • <new_tablespace>: tablespace mới

Ngoài ra, nếu sử dụng công cụ quản lý PgAdmin4, để chỉnh sửa database hiện có thì chỉ cần kích chuột phải vào database cần chỉnh sửa, chọn [ Properties ]

Chinh sua - Alter Database

Để lại một bình luận

Email của bạn sẽ không được hiển thị công khai. Các trường bắt buộc được đánh dấu *