Skip to main content
0 votes
1 answer
221 views

I'm experiencing a performance issue with the following query, specifically caused by the join condition AND edh.EmployeeCode = e.EmployeeCode After analyzing the execution plan, I noticed that SQL ...
Akillez's user avatar
  • 17
0 votes
0 answers
68 views

I have the following tables: create table account_transactions ( id int auto_increment primary key, account_id int not null, amount ...
jurchiks's user avatar
  • 1,442
0 votes
1 answer
224 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
118 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
115 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
179 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,898
0 votes
1 answer
273 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
98 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
107 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
97 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
78 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
45 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

15 30 50 per page
1
2 3 4 5
174