Re: How to: copy records from one table to another?

2019-03-25 Thread Isaias Sanchez
The first post have lot's of constraint about the ID and different order of columns, you can use copy of select's to do that stuff very easy with psql. Example: server_origin, db_origin, table1 (id integer, data1 text, data2 numeric, data3 jsonb) server_destination, db_destination, table2(i

Re: Error Exporting to CSV

2019-03-18 Thread Isaias Sanchez
: Hi, Please log this issue @ https://redmine.postgresql.org/projects/pgadmin4 Also, mention the OS details, Browser details, and the sample query to reproduce this issue. Thanks, Khushboo On Mon, Mar 18, 2019 at 1:57 PM Isaias Sanchez mailto:isaias.sanche...@gmail.com>> wrote: Hi,

Error Exporting to CSV

2019-03-18 Thread Isaias Sanchez
Hi, Is this caused by any version of flask or so? Regards, Isaias S. On 14/3/19 12:21, Isaias Sanchez wrote: Hi, I am getting error even in Chromium when exporting to CSV it says [Object Blob] and  in the log I can see this: 2019-03-14 12:16:27,375: ERROR  pgadmin:    object of type

Re: pgAdmin 4 v3.1 Released

2018-06-28 Thread Isaias Sanchez
ver installed? If yes then I suspect it is causing the issue because I can see in the code that we are sending MIME headers properly as /{'Content-Type': 'text/css'}/ for browser.css On Thu, Jun 28, 2018 at 5:17 PM, Isaias Sanchez mailto:i

Re: pgAdmin 4 v3.1 Released

2018-06-28 Thread Isaias Sanchez
:50 PM, Isaias Sanchez mailto:isaias.sanche...@gmail.com>> wrote: look at the screenshots: On 28/06/18 11:15, Murtuza Zabuawala wrote: Sorry, ​I didn't get you, what do mean when you say 'web is like only text'? ​ On Thu, Jun 28, 2018

Re: pgAdmin 4 v3.1 Released

2018-06-28 Thread Isaias Sanchez
look at the screenshots: scren1 screen2 On 28/06/18 11:15, Murtuza Zabuawala wrote: Sorry, ​I didn't get you, what do mean when you say 'web is like only text'? ​ On Thu, Jun 28, 2018 at 4:35 PM, Isaias Sanchez mailto:isaias.sanche...@gmail.com>> wrote: This hel

Re: pgAdmin 4 v3.1 Released

2018-06-28 Thread Isaias Sanchez
pany On Thu, Jun 28, 2018 at 4:13 PM, Isaias Sanchez mailto:isaias.sanche...@gmail.com>> wrote: I just installed the Python Wheel 3.1 version on a centos 6 server and the app doesn't start, the error is this: 2018-06-28 10:37:23,668: ERROR  werkzeug:   Error on re

Re: pgAdmin 4 v3.1 Released

2018-06-28 Thread Isaias Sanchez
I just installed the Python Wheel 3.1 version on a centos 6 server and the app doesn't start, the error is this: 2018-06-28 10:37:23,668: ERROR  werkzeug:   Error on request: Traceback (most recent call last):   File "/usr/local/lib/python3.6/site-packages/werkzeug/serving.py", line 177, in

Re: User management via sqlite / pgadmin4.db

2018-04-27 Thread Isaias Sanchez
The password encryption are handled by flask (python code), so my guess is there is no way to do the same inside sqlite as it is. If you insist in doing that, insert any string into password field and the user must click on "Forgot Password" to configure a valid one. INSERT INTO user (email,

Re: My pgAdmin is broken

2018-04-19 Thread Isaias Sanchez
pgrade not working and how frustrating recovering from it was. I'm glad you figured out what the problem was, I had never even heard of pycrypto before to day. Awesomesauce On Thu, Apr 19, 2018 at 8:57 AM, Isaias Sanchez mailto:isaias.sanche...@gmail.com>> wrote: I also had this p

Re: My pgAdmin is broken

2018-04-19 Thread Isaias Sanchez
I also had this problem, but the issue is some incompatibilities in pycryptodome and pycrypto: 1. Install v3.0: pip install ./pgadmin4-3.0-py2.py3-none-any.whl 2. Unistall pycryptodome: pip uninstall pycryptodome 3. Uninstall/Install pgcrypto: pip uninstall pycrypto pip3 install pycrypto