About 1,604,011 results (2,773 milliseconds)

Performance Issue with Jdbc source connector

https://groups.google.com/g/confluent-platform/c/5JvQqnBvNZc
You can easily find out what is going on at source by looking at Oracle connections. Are these 54 Oracle tables have primary key and are you reading data from ...

[REQUEST FOR FEEDBACK]: What small but incredibly useful utility ...

https://groups.google.com/d/msg/jooq-user/7hfDlmEwfQI/OfRCmB-hDQAJ
is actually stored, but I find myself using the autogenerated records and POJOs a good bit. It would be nice if there was an easy way to going from say:.

JSON functions | BigQuery | Google Cloud

https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions
An error is produced if the array of JSON keys or JSON values is a SQL NULL . -- Error: The keys array cannot be NULL. SELECT JSON_OBJECT(CAST(NULL AS ARRAY ...

CS503-DBMS-LABMANUAL

https://docs.google.com/document/d/1P-HnND0M09S0gKJpq8S3Ocmrc5kqH1YZ8nsqFdZhaqI/preview?hgd=1
Delete duplicate row from the table. DELETE FROM DEPT WHERE DEPTNO IN (SELECT ... Write a pl/sql block to delete a record. If delete operation is successful ...

telling apart errors returned by database/sql

https://groups.google.com/g/golang-nuts/c/Bmgvsn-SZ64
Jun 8, 2013 ... When somebody tries to add a new account, I need to tell apart duplicate ... oracle*/ where not exists ( select * from table where keyField != key )).

[ ANNOUNCEMENT ] jOOQ 3.10 released with Java 9 support, scala ...

https://groups.google.com/g/jooq-user/c/b655c_mMrsQ
Sep 29, 2017 ... #5191 - Support multi-row UPDATE and DELETE RETURNING for Oracle using PL/SQL RETURNING .. ... DEFAULT VALUES with ON DUPLICATE / ON CONFLICT.

Migrating Oracle® users to Cloud SQL for PostgreSQL: Queries ...

https://cloud.google.com/solutions/migrating-oracle-users-to-cloud-sql-for-postgresql-queries
INTERSECT : Returns the intersection of two or more SELECT statements only if a record exists in both data sets. Duplicate records are not eliminated. INTERSECT ...

Cloud Data Fusion Plugin Reference | Google Cloud

https://cloud.google.com/data-fusion/plugins
Reads from an Oracle table using a configurable SQL query. Outputs one ... Additionally, it supports logically choosing a record out of the duplicate records ...

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

https://groups.google.com/g/dddcqrs/c/dF6GtQeMMuc
Sep 2, 2010 ... resulting in a duplicate record. For table-level uniqueness, you need serializable isolation resulting in a full-table lock.. Nuno Lopes's ...

Replication | Cloud Data Fusion Documentation | Google Cloud

https://cloud.google.com/data-fusion/docs/concepts/replication
Cloud Data Fusion Replication supports MySQL, Microsoft SQL Server, and Oracle source databases. Change tracking solution, Instead of running on an agent that ...

Specify nested and repeated columns in table schemas | BigQuery ...

https://cloud.google.com/bigquery/docs/nested-repeated
Query data with SQL. Introduction ... Deduplicate duplicate records in a table. The following query uses the row_number() function to identify duplicate records ...

Migrate an Oracle database to Cloud SQL for PostgreSQL using ...

https://cloud.google.com/architecture/migrate-oracle-to-cloudsql-for-postgresql-using-striim
Jun 28, 2021 ... Verify the ability to read CDC data from Oracle. To test if the ... data was lost or duplicated. Recovery doesn't apply to initial load ...

10g: BIU trigger "plugins"

https://groups.google.com/g/comp.databases.oracle.server/c/K9afTjby1bk
So instead of individual SQL insert i invoke a some_pkg.PushEntry(...) function. pl/sql package 'some_pkg' manages a collection to buffer given X records.

FAQ | Datastream | Google Cloud

https://cloud.google.com/datastream/docs/faq
... duplicate data. Do you handle ... Datastream doesn't require a GoldenGate license because it uses Oracle LogMiner to read the data from the database's redo logs.

Oracle SQL translation guide | BigQuery | Google Cloud

https://cloud.google.com/bigquery/docs/migration/oracle-sql
However, there is no way to prevent a user with edit permissions from inserting a duplicate record. To generate an error for duplicate records in BigQuery ...

How to keep only one of duplicates records

https://groups.google.com/g/openrefine/c/ai8EI1QLEL0
... duplicates? Take a look at Facets -> Customized facets -> Duplicate facets (then you might click on "false" to select only the rows that are not duplicated).

SELECT COMMAND

https://groups.google.com/g/jbase/c/12MC8bgaGyU
Aug 14, 2007 ... from the value of the same field in record2. Is there any keyword in jBase as in Oracle (sql) ; the Keyword DISTINCT to avoid the duplicate ...

How to do a simple INSERT OR UPDATE?

https://groups.google.com/g/jooq-user/c/w-WFrkCuM6s
// Perhaps, check e's cause to be a SQLIntegrityConstraintViolationException ... Oracle, SQL Server, and Sybase SQL Anywhere):. http://blog.jooq.org/2013/08 ...

sql - Oracle - Two records with the same dates aren't equal - Stack ...

http://feedproxy.google.com/~r/stackoverflow/xTdF/~3/yKN8WqPfB2A/oracle-two-records-with-the-same-dates-arent-equal
Oct 31, 2019 ... Oracle SQL trying to compare different dates · 4 · SELECT DISTINCT Returning duplicate values for DATE column · 2 · compare two dates between ...

PL/SQL: how to let it continue when unique constraint violated

https://groups.google.com/g/comp.databases.oracle.server/c/OX_sZcUdmnM
How to let the PL/SQL continue to run when I select some rows and insert ... In order to ignore the duplicate key value error and continue, you need the ...