Re: Desktop Version of pgAdmin 4

2020-03-31 Thread Aditya Toshniwal
Hi Curtis, The installer by default runs in desktop mode. Please note, the desktop mode will still run the app in the browser with a backend server running on your desktop. You can find the pgAdmin server in your system tray. On Wed, Apr 1, 2020 at 2:05 AM Johnson, Curtis wrote: > Hey Folks > >

Re: Query Editor and SELECT output in transaction

2020-03-31 Thread Khushboo Vashi
Hi, On Tue, Mar 31, 2020 at 7:15 PM Yann Papouin wrote: > Hello, > > I want to test a simple update statement on pgAdmin (4.16 in a docker > container). > I'm running this update between BEGIN and ROLLBACK to not alter database > content: > > BEGIN; > UPDATE ---; > SELECT ---; > ROLLBACK; > > B

Desktop Version of pgAdmin 4

2020-03-31 Thread Johnson, Curtis
Hey Folks I downloaded the latest version of pgAdmin 4 and installed it. The write-up said it contained both the server version and the local desktop version. However, I only see one application in the folder and it goes to the browser version. I must have the local desktop version. How do

Re: migrate off oracle data to postgres

2020-03-31 Thread JC JC
Though I am not very experienced in this, I am working on a migration project from Oracle to Postgres using ora2pg from around 5+ months. The source data from which I migrate is of size 64 GB and I use AWS environment and run ora2pg in parallel by specifying the parameters in ora2pg utility. I m

Re: migrate off oracle data to postgres

2020-03-31 Thread Pepe TD Vo
@JC - I do have ora2pg set up last year in test environment already and that what I suggested team using insert script to run in Postgres.  And I am not sure how long it would take to load? 1T data. Though if there's a tool liked MySQL workbench to pull the oracle export data pump and import int

Re: migrate off oracle data to postgres

2020-03-31 Thread JC JC
I am sure you might be referring this https://ora2pg.darold.net/documentation.html You need to create ora2pg conf file with TYPE COPY, and ALLOW and remaining other attributes like ORACLE_DSN ORACLE_PWD ORACLE_USER similarly PG_DSN PG_USER PG_PWD etc etc. Cheers jc

Re: migrate off oracle data to postgres

2020-03-31 Thread Virendra Kumar
FDW for oracle and ora2pg both are too slow compared to offload data in a file and load into PostgreSQL. When I was doing one of my migrations I found the best solution was to download data using sqlldr on to the database host where PostgreSQL instance is running and load it using COPY command.

Re: migrate off oracle data to postgres

2020-03-31 Thread Adrian Klaver
On 3/31/20 8:51 AM, Pepe TD Vo wrote: I have tables ddl data definitions already.  Only need to move the data over off Oracle to Postgres PostgreSQL Foreign Data Wrapper for Oracle: http://laurenz.github.io/oracle_fdw/ -- Adrian Klaver adrian.kla...@aklaver.com

Re: migrate off oracle data to postgres

2020-03-31 Thread Pepe TD Vo
I have tables ddl data definitions already.  Only need to move the data over off Oracle to Postgres Bach-Nga No one in this world is pure and perfect.  If you avoid people for their mistakes you will be alone. So judge less, love and forgive more.To call him a dog hardly seems to do him justice

Re: migrate off oracle data to postgres

2020-03-31 Thread JC JC
In my view ora2pg can do most of the stuff you requested. ora2pg can be used to generate the DDL from oracle to postgres based on attributes set in ora2pg conf file (for example TYPE TABLE, will allow getting oracle DDL in an output file, TYPE COPY will bring the data). No doubt you need to set

Re: migrate off oracle data to postgres

2020-03-31 Thread Jan Birk
tir, 31 03 2020 kl. 14:15 +, skrev Pepe TD Vo: > I have a huge data on Oracle, would you please suggest how to migrate all data > off Oracle to Postgres? Do I need to export into csv and upload to postgres? > Ora2pg is limited data from oracle to postgresql right? How huge is huge? We have u

Re: migrate off oracle data to postgres

2020-03-31 Thread John Wiencek
You should explore EnterprisDB’s Migration ToolKit (MTK). Regards John Wiencek > On Mar 31, 2020, at 9:15 AM, Pepe TD Vo wrote: > > Hello, > > I have a huge data on Oracle, would you please suggest how to migrate all > data off Oracle to Postgres? Do I need to export into csv and upload to

migrate off oracle data to postgres

2020-03-31 Thread Pepe TD Vo
Hello, I have a huge data on Oracle, would you please suggest how to migrate all data off Oracle to Postgres?  Do I need to export into csv and upload to postgres?  Ora2pg is limited data from oracle to postgresql right? Bach-Nga No one in this world is pure and perfect.  If you avoid people fo

Query Editor and SELECT output in transaction

2020-03-31 Thread Yann Papouin
Hello, I want to test a simple update statement on pgAdmin (4.16 in a docker container). I'm running this update between BEGIN and ROLLBACK to not alter database content: BEGIN; UPDATE ---; SELECT ---; ROLLBACK; But pgAdmin does not print anything in the "Data Output" tab. Is it a normal behavio

RE: ASC files not verifying Windows pgAdmin 4 installers

2020-03-31 Thread J Paz
Hi Dave, Thank you for your note. I was wondering why there was a disconnect. I had to download gpg4Win and reference a StackOverflow post for the public key for pgAdmin before I could verify the asc file and the exe file. I think you path is much easier unless there is a pointer to the corr