Sunday 29 May 2022

How to Create Server And Database Using pgAdmin 4 || Postgresql Tips Tut...

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 😢.



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';


-- Table: public.test

-- DROP TABLE IF EXISTS public.test;

CREATE TABLE IF NOT EXISTS public.test
(
    id integer NOT NULL,
    CONSTRAINT test_pkey PRIMARY KEY (id)
)

TABLESPACE pg_default;

ALTER TABLE IF EXISTS public.test
    OWNER to postgres;

COMMENT ON TABLE public.test
    IS 'For demo';
insert into test values (1);

select * from test;


Thursday 26 May 2022

How To Take Database Backup As TAR File And SQL File Using pgAdmin 4 | P...

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 😢.




How to take Backup as TAR file and SQL File using pgAdmin 4 1. Backup as TAR file (Tape Archive files) 2. Backup as SQL file (Structured Query Language) In the next video, we will see how to load a database using Command Prompt or CMD, or PSQL. We will use both TAR and SQL files. Please subscribe to the channel to get updates. Thank You...


How To Download And Load/Restore/Setup PostgreSQL Sample Database Using ...

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 😢.



In this video, I have explained How To Download And Load/Restore/Setup PostgreSQL Sample Database Using pgAdmin4 PostgreSQL 14

How To Resolve Utility File Not Found | Correct The Binary Path || pgAdm...

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 😢.



I have explained How To Resolve Utility File Not Found Correct The Binary Path pgAdmin 4 PostgreSQL 14. We need to set the bin path of the PostgreSQL installation which is not done at the time of installation.


Monday 23 May 2022

How To Download And Install PostgreSQL 14 pgAdmin 4 On Windows 7/10/11 |...

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 😢.






Download link: https://www.enterprisedb.com/download... Hello Friends, I am Akram and in this video, I will tell you how to download and install the PostgreSQL 14, the latest release on your windows 10 PC of 64-bit. 1. Click the link to download the installation file, which is 299 MBs. 2. Install the file and follow step by step procedure. 3. When the installation is done, click on the finish. 4. Search for PgAdmin. 5. Now Enter the password you had given while installing (root). 6. You can check the same using psql command prompt tool as well. Note:- Please take a screenshot of the configuration summary. If you forgot to, please watch the video again and uninstall the file and again install it