How To Create Server And Database Using pgAdmin 4 || Postgresql Tips Tutorials || Knowledge 360

preview_player
Показать описание
#knowledge360 #akramsohail #akramsohailproject
You Are Hearty Welcomed To My Channel Knowledge 360. Here I post technical videos, mainly related to computer science and programming. I am posting project videos with coding explanations. I make tutorial videos on Technical Topics. Stay Connected, Stay Tuned, Study Smart.
- Knowledge 360 (Akram Sohail)

Only 3.9% of viewers are subscribing to my channel 😓.
I request you to please give click on Subscribe button.
It really helps me grow 😢.

Please Like, Comment, and Subscribe to my channel. ❤

Follow me on Social Media
--------------------------------------------------

Source Codes -
Topics
---------
Oracle
MySQL
PostgreSQL
SQL Server
PHP
C
C++
Python
Java
JavaScript
HTML/CSS
jQuery
Ajax
Bootstrap
Angular
Linux
Ubuntu
Windows
Miscellaneous

Description
------------------

password as root

-- Database: MyDatabase

-- DROP DATABASE IF EXISTS "MyDatabase";

CREATE DATABASE "MyDatabase"
WITH
OWNER = postgres
ENCODING = 'UTF8'
LC_COLLATE = 'English_United States.1252'
LC_CTYPE = 'English_United States.1252'
TABLESPACE = pg_default
CONNECTION LIMIT = -1;

COMMENT ON DATABASE "MyDatabase"
IS 'This Database is for demo';

(
id integer NOT NULL,
CONSTRAINT test_pkey PRIMARY KEY (id)
)

TABLESPACE pg_default;

OWNER to postgres;

IS 'For demo';

insert into test values (1);

select * from test;
Рекомендации по теме
Комментарии
Автор

*Please help me get that beautiful YouTube Silver button. Do subscribe to the channel if my video was helpful.* ❤

KnowledgeChannel
Автор

This cleared up all the confusions I previously had about pgAdmin.

codermuyi
Автор

You skipped the entire CREATE part from the title. This is just a video on using postgreSQL from pgAdmin

GmanGavin
Автор

Thanks for this video, helped me to resolve my issue

victorudochukwu
Автор

so is that for local host or can be used anywhere?

Harsh-ghrx
Автор

@Knowledge360Channel Please, consider making black screen.

kenadams
Автор

Hi, I am facing a problem connection timwd out how to fix it

iam_shadow__
Автор

In server nothing is there what to do
Do I need to install any server?

aswinkumar
Автор

Is it possible to install pgadmin and postgre on /D: i DO NOT KNOW WHY it doesnt work !

TheAlirezak
Автор

Mine doesn't have the explain tab in the end

tamisunshine
Автор

I'm setting the password as root still getting the error FATAL: password authentication failed. Can you let me know any solution?

snehalsingh
Автор

how can I fix it it says file name doest not exist?

idulsacalvenjohn
Автор

No option using Pgadmin4 to CREATE SERVER. Only CREATE SERVER GROUP or REGISTER SERVER.

donovanraymond
Автор

It's not working at my end I have followed the same process but still showing the error as
" Unable to connect to server" Is there any solution???

shubhampatil