Federico Cuozzo
Federico Cuozzo

Reputation: 361

Copy data from a DataGrip installation to another

I've two different pc I use to code and I've inserted data just on the laptop, where DataGrip is installed. Now I would want to clone data on the desktop where I've installed DataGrip and set the Postgres driver and database. Which is the faster way to do this?

Thanks!

Upvotes: 1

Views: 1553

Answers (1)

moscas
moscas

Reputation: 10345

In DataGrip there are dump/restore tools for PostgreSQL

To dump the objects, use the Dump with… context menu option. Restore tools for MySQL and PostgreSQL also can be accessed from the context menu. In the case of PostgreSQL, the restore operation can be done with pg_dump or psql: there is a way to choose in the Restore dialog.

enter image description here

Upvotes: 1

Related Questions