About 1,642,531 results (2,356 milliseconds)

Multiple copies and numbering

https://groups.google.com/g/xmpie-users/c/PP7bkCs1qxk
Order by Customers.ID ,ShowCounter.ShowCount. that query will create duplicate number of records for each recipient as NumberOfCopies. duplicating records can ...

Data definition language (DDL) statements in GoogleSQL ...

https://cloud.google.com/bigquery/docs/reference/standard-sql/data-definition-language
If you haven't configured a default project, prepend a project ID to the dataset name in the example SQL, and enclose the name in backticks if project_id ...

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.

How to store session data server side?

https://groups.google.com/g/pylons-discuss/c/KPOI21g2iW0
Apr 22, 2014 ... Others maintain a session ID but store all the data in ordinary database tables. (That gets complex ... only request data, without loading the ...

Online, Asynchronous Schema Change in F1

https://research.google.com/pubs/archive/41376.pdf
Aug 26, 2013 ... value pairs, one pair for each non-primary-key column. Each key ... delete(R, vkr) deletes row r with primary key values vkr from table ...

Linking 2 or more projects

https://groups.google.com/g/redcap_open/c/o9SE6QJ_qBs
These newer child projects would pipe data from the demographics (parent database) and that way I could avoid data duplicates of having the same patient in each ...

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 ...

deadlock on INSERT IGNORE ... SELECT ... WHERE NOT EXISTS ...

https://groups.google.com/g/comp.databases.mysql/c/DyHAWQNMjE0
review to understand the behavior of some SQL under MySQL. ... SELECT COALESCE(MAX(id)+1, 0), ? ... subselect would do the right thing regarding duplicate paths. I ...

7.0 - Google Search Appliance Help Center

https://www.google.com/support/enterprise/static/gsa/docs/admin/70/admin_console_help/crawl_database.html
Select the database type from the following options: DB2, Oracle, MySQL, MS SQL Server, or Sybase. Check that your database supports the JDBC driver that is ...

Working with joins in LookML | Looker | Google Cloud

https://cloud.google.com/looker/docs/working-with-joins
Note: To correctly handle joined measures, Looker relies on you specifying a primary key where the values are completely unique, non-NULL values. If your data ...

Inserting a collection using MyBatis

https://groups.google.com/g/mybatis-user/c/OiYvut4IyVc
because 'getGeneratedKeys' will return the next ID in the sequence and not the ID of the duplicate. Obviously a bug somewhere in MySQL or JDBC. Cheers. François.

Make schema updates | Spanner | Google Cloud

https://cloud.google.com/spanner/docs/schema-updates
Create or delete a table with a foreign key. Add or remove a foreign key from an existing table. Add a non-key column to any table. New non-key columns cannot ...

unique constraint of multiple columns (at database level)

https://groups.google.com/g/web2py/c/yq9o3j-8C68
Dec 28, 2010 ... Then I tried with integers and works ok. ... Is there a way to have string fields as primary keys? villas's ...

Schema design best practices | Spanner | Google Cloud

https://cloud.google.com/spanner/docs/schema-design
Jan 25, 2016 ... This pattern is undesirable because Spanner uses key ranges to divide data among servers, which means all your inserts are directed at a single ...

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 ...

BigQuery gains change data capture (CDC) functionality | Google ...

https://cloud.google.com/blog/products/data-analytics/bigquery-gains-change-data-capture-functionality
Apr 11, 2023 ... BigQuery change data capture lets you replicate, insert, update, and/or delete changes from source systems without DML MERGE-based ETL ...

CN104850572A - HBase non-primary key index building and ...

https://patents.google.com/patent/CN104850572A/en
... server can be regular is pushed to index data on SolrCloud service cluster.The ... CN104408111A 2015-03-11 Method and device for deleting duplicate data.

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 ...

Gearman Job Failed

https://groups.google.com/g/ica-atom-users/c/2EzANty2BM8
I checked my earlier atom 2.3 databases and I did notice that the jobs table had a record with the "18840" ID in it. So it looks like somehow I'm pointed to two ...

[DDD/CQRS] Checking if a unique value is already in use

https://groups.google.com/g/dddcqrs/c/dF6GtQeMMuc
Sep 2, 2010 ... 1) check the UserReport in the read repository from the client before submitting the command and notify that the email address is already in use.