About 1,206,528 results (3,161 milliseconds)

Versioned Model EBEAN ( property version incrementable)

https://groups.google.com/g/ebean/c/e2LHhhARLD4
by adding this annotation, i delete all rows and insert new ones....but the version is not incrementable and have an error too : duplicate key..... Rob ...

Migrate primary keys | Spanner | Google Cloud

https://cloud.google.com/spanner/docs/migrating-primary-keys
This page describes how to migrate primary keys from your source database tables to Spanner GoogleSQL-dialect databases and PostgreSQL-dialect databases.

Work with IndexedDB | Articles | web.dev

https://developers.google.com/web/ilt/pwa/working-with-indexeddb
Jan 15, 2024 ... How to define primary keys. When you define object stores, you can define how data is uniquely identified in the store using a primary key. You ...

SyncError: Weewx and Mesowx - weewx dies as a response to a ...

https://groups.google.com/g/weewx-user/c/Z4sW4oDDboo
... Duplicate entry '1463786450' for key 'PRIMARY'. May 21 01:21:05 raspberrypi weewx[2747]: sync: http request failed (500 Internal Server Error): Unable to ...

REST and confirmation of DELETE operation

https://groups.google.com/g/pylons-discuss/c/HKSAhlHLmNo
Jan 29, 2010 ... and JSON resources which is data that goes to and from the GUIs. But if you need one, think of it as a "Deletion resource". POST to create a " ...

Make schema updates | Spanner | Google Cloud

https://cloud.google.com/spanner/docs/schema-updates
... key, you can't remove ENUM values from the proto enums. ... Spanner is optimized to use primary keys to partition data for multi-tenancy solutions.

Find and fix inconsistent indexes | Cloud SQL for PostgreSQL ...

https://cloud.google.com/sql/docs/postgres/find-fix-inconsistent-indexes
Check for inconsistent indexes. One statement identifies unique and primary key violations, and another statement detects a variety of other inconsistencies.

Stream table updates with change data capture | BigQuery | Google ...

https://cloud.google.com/bigquery/docs/change-data-capture
... records with the same primary key. The pseudocolumn _CHANGE_SEQUENCE_NUMBER ... Mixing rows that have UPSERT or DELETE values for _CHANGE_TYPE with rows ...

Schema design best practices | Spanner | Google Cloud

https://cloud.google.com/spanner/docs/schema-design
Jan 25, 2016 ... As mentioned in Schema and data model, you should be careful when choosing a primary key in the schema design to not accidentally create ...

Paradox Database and Index Corruption using BDE

https://groups.google.com/g/borland.public.delphi.database.desktop/c/JANyUei9fFw
- Secondary Index (Delete This). We have tried this. The problem we have found is that you can not create a primary key once the table is created. (At least ...

Identity vs GUIDs vs COMB GUIDs vs NewSequentialID?

https://groups.google.com/g/microsoft.public.sqlserver.programming/c/c7o0ydGwzVM
how the key is generated. If you are using SQL Server and move to Oracle or ... we put it into production, it failed and we go Primary Key Duplicate attempt

How to test a query's syntax using MySQL without ... - Google Answers

http://answers.google.com/answers/threadview/id/730396.html
May 19, 2006 ... 6.Retrieve the ID from the master order record you just entered. 7.Insert records into the line items table for each item ordered. 8.If ...

Saga NHibernatePersistence & SQL Deadlocks?

https://groups.google.com/g/particularsoftware/c/sHcvIn8Z8dA
Jul 28, 2016 ... Doing that will result in a lean method to add an object without needing to read all rows from the database first. ... The SQL Server key lock ...

GoogleSQL data definition language | Spanner | Google Cloud

https://cloud.google.com/spanner/docs/reference/standard-sql/data-definition-language
The generated primary key can't depend on a non-key column with a DEFAULT clause. The following rules apply when using generated key columns: Read APIs: You ...

Orthanc as a Hospital PACS?

https://groups.google.com/g/orthanc-users/c/rSSbfLMdk-U
Imagine a situation where the patient id in dicom is being recycled or duplicated. For instance, 2 hospitals each use an internal id generator and there is a ...

Do all tables need primary keys?

https://groups.google.com/g/microsoft.public.sqlserver.programming/c/ACb363vq2F8/m/0lSD6HaUoq8J
Mar 3, 2003 ... and it is needed to avoid duplicate records. Imagine if a ... > thing in SQL server? I know SqlServer 2000 has scema capability ...

Recursive Delete in Stored Proc

https://groups.google.com/g/microsoft.public.sqlserver.programming/c/urWrFp8m3CM
better example of "NOT elegant". While SQL Server currently only supports 31 levels of recursion, it can still be very useful, and if the Yukon Beta 1 features ...

Failed to update DB because of duplicated patient identity

https://groups.google.com/g/dcm4che/c/sg6eHULhxhs
Instead if a given combination of Patient ID + Issuer already exists, this record is used for update / storing objects etc. You could also share the test steps ...

Clementine creates duplicates in library · Issue #1785 · clementine ...

https://code.google.com/p/clementine-player/issues/detail?id=1785
Dec 9, 2013 ... I'm currently working on a sql query I use to remove all the duplicates. ... I first manually removed the bad/duplicate entries with lower id.

How to store Ongoing chess games in SQL

https://groups.google.com/g/microsoft.public.sqlserver.programming/c/U5ZeC5luf2U/m/HnvRhpHLfY8J
ON DELETE CASCADE ON UPDATE CASCADE, CHECK (white_player_id <> black_player_id), PRIMARY KEY (white_player_id, black_player_id, game_nbr), board_forsyth ...