How to create postgresql user and database

preview_player
Показать описание

Рекомендации по теме
Комментарии
Автор

Very insightful video. I had my development done locally in my laptop and production on an AWS cloud with a US location. I was wondering how to handle encoding, locale, etc. This is beautifully explained in this video. We can try and achieve consistency so we don't run into issues in Production that we didn't get in Development or Testing.

anandakumarsanthinathan
Автор

On point video... very hard to find these days. Keep up with the content brother.

pratishjoshi
Автор

This was very useful
Also for some reason I have to type psql after i type sudo su - postgres

aa-gcwc
Автор

What to do with the warning that the console code page differs from the Windows code page? For me this really matters because I use a German character set and some characters are not going to be displayed coffectly.

spinout
Автор

excellent material in a jungle of dead ends..!

ClickScott
Автор

слышно ж что акцент русский, сделал бы субтитры:()

makaron
Автор

Thank you so much! worked well for me! How can I display easily items from database in html site? Can anyone help?

kristynasodomkova
Автор

I had to use UTF-8, yes all caps and -8 I have no Idea why and the Encoding same thing

AlThePal
Автор

Server FATAL: role "postgres" is not permitted to log in.
Kindly help me to resolve this problem

AshutoshSaini
Автор

Where I can found this database in my computer

divyanshiverma
Автор

Where I can get this created database in my pc

divyanshiverma
Автор

Hello! I hope it's not a sin to ask this to a Linux user 😂
I wanted to ask if the commands are same for using in cmd in windows OS?

vivekjoshi
Автор

127.0.0.1 where from u got this ip
same u can also used please help

itboy
Автор

How to fix pg_connect () fatal error sir?

swapniljadhavrao
Автор

Specify that this video is for Linux users

jaymo
Автор

postgres=# CREATE USER repmgr WITH SUPERUSER;
ERROR: cannot execute CREATE ROLE in a read-only transaction

emanfeah
Автор

In ubuntu type, utf8 encoding is now defined as UTF-8.

CREATE DATABASE mydb WITH OWNER myuser ENCODING='UTF-8' LC_COLLATE='en_US.UTF-8' LC_CTYPE='en_US.UTF-8';

space