Skip to main content
0 votes
1 answer
151 views

In our system we are hashing passwords with the following method. public static string HashPassword(string password, byte[] salt) { if (salt == null) { throw new ArgumentNullException($...
Cerkvenic's user avatar
  • 377
2 votes
1 answer
115 views

I’m using GridDB Cloud (Free Tier) with Python to store time-series IoT data. My container currently has around 10 million rows, and it continues to grow daily. Schema: device_id STRING, created_at ...
Imtiaz's user avatar
  • 67
4 votes
1 answer
108 views

I’m working with a hierarchical model structure in Django, where each level can represent a region, district, or village. The structure looks like this: class Location(models.Model): name = models....
Ziyodulla Abdukarimov's user avatar
-1 votes
1 answer
132 views

I need to speed up a query that lists transactions from BillingInfo joined to site/customer tables. Users filter by CustomerName (first + last). Data volume: BillingInfo ≈ 3.1M rows CREATE TABLE [dbo]....
Girijesh T S's user avatar
0 votes
2 answers
223 views

Let's create a table with 3000 rows create table tt(id int, txt text); insert into tt with recursive r(id) as (select 1 union all select id + 1 from r where id < 3e3) select id, concat('name', id) ...
Slimboy Fat's user avatar
4 votes
1 answer
173 views

In a table T with 20 million rows and a unique constraint on integer column uk, the following query induces SQL Server 2019 to perform a scan of all index entries instead of a single seek: select max(...
DarthGizka's user avatar
  • 4,868
0 votes
1 answer
222 views

I am working in the backend of an application. One part of this application (like every application nowadays) is using AI for multiple things. The application's main purpose is building data warehouse ...
ne0123.'s user avatar
  • 23
0 votes
1 answer
83 views

I'm learning PostgreSQL Clustering abilities and I would like to compare performance of the same query with table not clustered and with table clustered. I tried to generate 25 million user events and ...
rela589n's user avatar
  • 1,224
0 votes
3 answers
51 views

I am working on one scenario where I have to check login flow of application for 10KTPM in minute. In my login flow exist- load the URL, Login and Home page load. In entire login flow we have 55 ...
vishakha bharambe's user avatar
0 votes
1 answer
100 views

We're using DSE 6.0.18 (Cassandra version 3.11) and our application is both read and write heavy. I have a situation where I need to fire N number of read queries for each API (by partition key) using ...
Dinesh Babu M's user avatar
0 votes
1 answer
88 views

I'm using MongoDB Atlas and noticed a warning in the Performance Advisor and monitoring dashboard: "Query Targeting: Scanned Objects / Returned" has gone above 1000 From my understanding, ...
Annamalai's user avatar
  • 134
0 votes
1 answer
72 views

I need help evaluating the actual execution plan of an SQL Server View: https://www.brentozar.com/pastetheplan/?id=zAFOrTkUxr Context The above View is being called by Azure Data Factory to populate a ...
Brad's user avatar
  • 57
0 votes
1 answer
42 views

For the following query, what indexes should I create $match:{ "from_time": { "$gte": "2024-12-17T18:00:00.000Z" }, "to_time": ...
larry ckey's user avatar
2 votes
1 answer
88 views

Some year ago, we switched from some self built leader election mechanism to spring integration leader election, both on MariaDB clusters, relying on duplicate key violation. We switched to spring ...
mangiari's user avatar
1 vote
1 answer
66 views

In MongoDB (version 8) I'm wondering about the most read-efficient way of storing a "sharing mechanism". I.e. the users can share items with other items within the same collection. When ...
cis's user avatar
  • 1,403

15 30 50 per page
1
2 3 4 5
174