Heroku PostgreSQL Database How To Start - postgresql

I am attempting to make a database using Heroku's PostgreSQL, but I do not really understand how it works, or how to really begin. My goal is to make a level system for discord.js where I can store things such as userid, username, xp and levels. Can someone help me get started?

Related

Connection String and Connecting to SQL DB

Im hosting a local postgres db and am trying to find open-source programs that will be able to connect to said db so that I can generate reports based on the data.
While I know Jasper is a thing, Im trying to see if there are alternatives and I came across 2:
EasyReport
Seal Report
Both of these ask for Connection Strings that Im not really familiar with.
Came across a site explaining it, but Im still unsure of the format.
Provider=PostgreSQL OLE DB Provider;Data Source=myServerAddress;location=myDataBase;User ID=myUsername;password=myPassword;
Driver={PostgreSQL};Server=IP address;Port=5432;Database=myDataBase;Uid=myUsername;Pwd=myPassword;
Above are some of the examples the site provided with, but Im still confused. What is the Driver? What is the Provider? The site's examples werent cleared on what are these 2 are supposed to be.
I tried creating a Connection String based on the example:
Provider=PostgreSQLData;Data Source=jdbc:postgresql://localhost:5432/<myDBName>;location=<myDBName>;User ID=<myDBUsername>;password=<myDBPassword>;timeout=1000;
This fails. Something about Provider not found and Could not connect to database: Couldn't set provider

How can other people/computers connect to my PostgreSQL database?

I am fairly new to setting up PostgreSQL and I am trying to figure out an issue. I am trying to set up a database in PostgreSQL that my colleague and I can both access and edit. I have pgAdmin set up on my computer and a DB with some info in it. We both need to be able to work on it and access it from different computers. I have been googling around but I can't really seem to get this right. There is no interface that needs to connect, right now we are both simply trying to connect and access the same database.
I feel like this is something that should be fairly simple to implement. Any help?

Load a PostgreSQL database using cloudconnect

On the side of my Gooddata project, I maintain a small PostgreSQL database that contains a few tables.
I would like to be able to integrate both my ETL processes using the same tool, and it seems to me cloudconnect would be the easiest way, since I already have my whole GoodData ETL in it.
Here are the ways I tried to do it without success:
I tried to have a look in the documentation, and it seems to me that all the functionalities of CloverETL that enabled this (DBOutput, PostGreSQLDataWriter) are not available in Cloudconnect.
I managed to connect to the Agile Datawarehouse Service (Database attached to GoodData), but it seems that only the ADS database is able to understand the request:
COPY MyDataBaseTable (field1,field2) FROM LOCAL '${DATA_TMP_DIR}/CIforADS.csv'
even when I adapt the syntax to PostgreSQL because the dynamic addressing I use here does not seem to work.
Is there any way to proceed that I'm missing? Can anyone think of a workaround?
In general this could be achieved by using of "DBExecute" component, but
I'm not sure if I understand it well - do you want to load data into your own Postgres instance using CloudConnect?

Want to make my oracle forms to access online oracle database

A guy made an oracle based web forms and setup oracle database in my computer 3 years before.
Now I want to make my database online.
So that I could access via my two computers.
I do not even know basic thing about oracle.
If any one could tell me how to do this?
someone told me I have to do it via live IP, dedicated server or VPS?
Could any one can give me idea from where should I start?
Should I buy a dedicated server or VPS or any other way to do this.

Postgresql Manager

I have been working with Microsoft SQL Server since 6.5 along with other database like Oracle, MySQL and SQLite. I equally appreciate or hate all these DBMS for some point or the other.
On our forthcoming project, we are considering Postgres in the back-end. I have already started playing with it, pretty interesting for me.
I have always heard good comments on Postgres database, but I don't like the admin studio at all. While creating new a table, I hate the way of creating columns on pgAdmin by having to click add button again and again.
Are there any "Studios" for Postgres database that provide
more organized table creation process (spreadsheet like)
graphical view designer
What's wrong with plain SQL? Writing plain SQL goes much faster than click-wait-click-wait-type-click-wait-ok-wait. You could use any tool for this, pgAdmin as well.
Open Office Base can also connect with PostgreSQL, works like MS Access. And talking about MS Access, MS Access can also connect to PostgreSQL to create tables, views, etc.
See this official list of Administration/Development tools.
EMS SQL Manager seems to be a good option.
for the graphical view of SQL queries
maybe SQLeo can Help