Get support for himanshua790/store-monitoring
If you're new to LTH, please see our FAQ for more information on what it is we do.
Qualified Helpers
himanshua790
*This user needs to complete their payout settings before they can accept help requests
himanshua790/store-monitoring
start pg service from services.msc on ctlr + r
open sql shell using psql -U postgres
open sql shell and login with default server database port username and your password.
"\l" to check all existing databases. "\l+" for detailed list.
To list only the databases that you have access to, you can use the \du command. This command will show a list of all roles (including databases) and the privileges that each role has.
create new db using CREATE DATABASE name_of_database;
postgres=# CREATE DATABASE store_monitoring; CREATE DATABASE
when working with servers that manage multiple databases, you’ll find the need to jump between databases frequently. This can be done with the \connect meta-command or its shortcut \c.
'\c store_monitoring' postgresql://[user[:password]@][netloc][:port][/dbname] postgresql://postgres:08031998@localhost:5432/store_monitoring
Our Mission
We want to make open source more sustainable. The entire platform was born from this and everything we do is in aid of this.
From the Blog
Interesting Articles
-
Generating income from open source
Jun 23 • 8 min read
-
2023 State of OSS
Apr 23 • 45 min read ★
-
A funding experiment...
Aug 19 • 10 min read
-
But You Said I could
Aug 19 • 2 min read
Thank you for checking out LiveTechHelper |
2025 © lth-dev incorporated
p-e622a1a2