python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How to take pg dump from testing server to my pc
I am trying to take pg dump from testing server to my local machine, i have been logged into my server
root@myproject-staging-development1:~/myproject/current#
Which command should i write in here to ...
Azhar Sheikh
Votes: 0
Answers: 2
TypeScript: postgres column doesn't exist
I am using pg library to make query on postgres by typeScript. I have created a db class like this:
import { Pool } from 'pg';
const pool = new Pool({
host: process.env.PG_HOST,
port: parseI...
Cyrus the Great
Votes: 0
Answers: 1
Why does PG timestamp give incorrect result?
Why
Select timestamptz '2022-03-19T00:00Z' as test1
give result : 2022-03-19 03:00:00+03 ??
Disteonne
Votes: 0
Answers: 1
GO pg prevent default value
Struct sample
type Car struct {
ID uint64
Required bool `pg:"required,notnull"`
Name string `pg:"name"`...
kyrkela
Votes: 0
Answers: 1