Re: Should I use JSON?

From: Adrian Klaver <adrian(dot)klaver(at)aklaver(dot)com>
To: stan <stanb(at)panix(dot)com>, pgsql-general(at)postgresql(dot)org
Subject: Re: Should I use JSON?
Date: 2020-05-21 15:42:42
Message-ID: b12e1551-5c89-e6ff-2ece-6d1d1c002219@aklaver.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 5/21/20 8:37 AM, stan wrote:
> Worming on a small project, and have been doing a lot of Perl scripting to
> parse various types of files to populate the database. Now I need to get
> data from a cloud services provider (time-keeping). They have a REST API
> that returns data in a JSOSN format.
>
> So here is the question, should I just manually parse this data, as I have
> been doing to insert into appropriate entities into the database? Or should I
> insert the JSON data, and use some queries in the database to populate my
> tables from the JSON tables?
>

I use Python for this sort of thing. A JSON array of objects maps so
nicely to a Python list of dicts that I just do the parsing in Python
and INSERT the parsed data into the table.

>

--
Adrian Klaver
adrian(dot)klaver(at)aklaver(dot)com

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Israel Brewster 2020-05-21 15:53:11 Re: Table partitioning for cloud service?
Previous Message stan 2020-05-21 15:37:42 Should I use JSON?