Skip to main content
0 votes
1 answer
82 views

We have this code which works well most of the time, except for a case I will describe slightly latter: /** * Recovers archived survey responses * * @param int $surveyId survey ID * @param string $...
Lajos Arpad's user avatar
  • 80.4k
0 votes
2 answers
135 views

@Entity public class Employee { @Id @GeneratedValue private long id; private String name; private String dept; private long salary; ............. } I am trying to get the result of ...
Ananthapadmanabhan's user avatar
0 votes
2 answers
110 views

I am currently doing DBMS course. While studying DDL and DML I came to realize that DDL use Interpreter and DML use compiler. Interpreter execute codes line by line and Compiler executes whole code at ...
Rithik Linkon's user avatar
-1 votes
1 answer
106 views

im working with a MySQL database where I have a column of type VARCHAR, but it stores numeric values. I created a B-Tree index on this column to optimize queries like: E.x > n n < E.x n = E.x (...
Eduard Hauer's user avatar
-4 votes
1 answer
75 views

I am designing a system that records stock transactions for a product. Some product types record items by serial number for traceability, some products types do not serialize items. I record the ...
Thomas's user avatar
  • 79
0 votes
0 answers
61 views

We are planning to shift from infi.clickhouse to ibis, so I was wondering, does ibis support the migration of old schema to new like infi.clickhouse? If not, then what could be the solution to this? ...
Shreya Saini's user avatar
2 votes
2 answers
122 views

I have a Postgres table that has numerous columns which frequently show up in the where clause of select queries. The table has been indexed accordingly, with indexes on all of these columns (mostly ...
just-some-questions's user avatar
0 votes
1 answer
43 views

I have a system where transactions are initially marked as "Pending" in a relational database, if a payment transaction is not immediately successful by payment gateway, I need to fetch the ...
Atul Dewangan's user avatar
1 vote
1 answer
54 views

My OrientDB 3.2 application can have millions of vertices and edges. The query below fetches the records from superclass V. select FROM `V` where class_name = ['Database', 'Table'] AND is_asset_class !...
vaibhav's user avatar
  • 11
0 votes
1 answer
2k views

I have a user defined function which returns number, argument is also a number. There is an aggregate function(sum()) inside the UDF. I am calling this UDF from a select clause. It's giving me the ...
Sreekanth Mohan's user avatar
-1 votes
1 answer
47 views

I have two queries, where I need to get the ID from the first query and pass it to the second query. How do I do this for all the ID's in the first query? select id, name from [ignite].[COND] --> ...
SQL Novice's user avatar
0 votes
1 answer
97 views

Does Cassandra offer any semantics similar to REPEATABLE READ? I believe you can do this within a "batched" LWT, but doesn't this incur significant network overhead due to PAXOS? REPEATABLE ...
D.B.K's user avatar
  • 429
1 vote
0 answers
1k views

When I tried in dms to load data from mysql to s3. Then task fail and show this Error: Last Error Failed in resolving configuration. Stop Reason FATAL_ERROR Error Level FATAL.
S_R_Ws's user avatar
  • 11
0 votes
1 answer
56 views

I'm using Postgres v16. I've got a unique index on my invoice table: CREATE UNIQUE INDEX unq_invoice_display_id ON invoice (tenant_id, display_id, expiry_timestamp) WHERE id = original_invoice_id; #...
Kevin's user avatar
  • 1,861
1 vote
1 answer
254 views

I don't really understand how to delete columns using the dbms_redefinition utility. All the time there are some strange errors and data overwriting. Disabled foreign keys appear in other tables and ...
ulxanxv's user avatar
  • 228

15 30 50 per page
1
2 3 4 5
188