Re: No primary key table

From: Ron <ronljohnsonjr(at)gmail(dot)com>
To: pgsql-general(at)lists(dot)postgresql(dot)org
Subject: Re: No primary key table
Date: 2019-09-13 15:45:39
Message-ID: 76c2bb56-e81b-9086-433a-8ee5a35d72f2@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 9/13/19 10:34 AM, Ertan Küçükoglu wrote:
> Hello,
>
> We are using PostgreSQL 10.0 on a Windows VM.
>
> There is one database in that server.
> There are several tables that will be used for data warehouse purposes.
>
> There are daily inserts and relatively heavy bulk (whole month data at once) reads at end of months. Reads will be from several hundred clients and will be over internet and no local network connection.
>
> Daily data saving application check for duplicate entries of a single record using an sql before each insert. That is only select statement during in month days.
>
> End of the month queries will be selecting bulk data from previous month records and will filter on GUID field and a varchar(25) field.
>
> There is one primary key of a bigint identity column on each table. Primary key won't be used for any purpose for any queries.
>
> We wonder if it maybe a suggested to remove primary key index and column. There is no unique key index on these tables otherwise.

Don't you need an index to "check for duplicate entries of a single record
using an sql before each insert"?

--
Angular momentum makes the world go 'round.

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Bernard Quatermass 2019-09-13 16:43:38 Suitable licence for schema components
Previous Message Ertan Küçükoglu 2019-09-13 15:34:06 No primary key table