Skip to main content
Advice
0 votes
6 replies
112 views

I’m wondering when designing a database, is really strict normalization better or do you denormalize for performance from the beginning? It’s better because it runs faster right?
Lexiikaee's user avatar
Advice
2 votes
3 replies
101 views

I am managing a WordPress site with 100k+ entries in a custom post type. Standard WP_Query with multiple meta_query arguments is causing significant performance bottlenecks due to complex wp_postmeta ...
Hassam Tahir's user avatar
Advice
0 votes
2 replies
145 views

I am currently working on my mini project to practice(16 yo). I have this simple database structure consisting of products, categories and their attributes. I want to add search function. Structure ...
nika xun's user avatar
Best practices
0 votes
10 replies
260 views

I'm analyzing a SQL Server 2022 OLTP database and trying to refine my indexing strategy based on actual workload patterns. The exact schema and queries cannot be shared, but the observed ratios and ...
Mohamad TAGHLOBI's user avatar
Advice
0 votes
2 replies
57 views

I understand that derived attributes should generally be calculated. When should a derived attribute be physically stored in a database table?
Abdelrahman Saber's user avatar
0 votes
1 answer
88 views

I have a function, that updated database @router.put("/{task_id}/status") def update_status(task_id: str, task_data: UpdateStatus, db: Session = Depends(get_db)): task = ...
mascai's user avatar
  • 1,700
Advice
0 votes
6 replies
100 views

I am building a module in which I have to integrate multi-vendor insurance using the nestjs and mysql. Mainly our purpose is to do insurance for new E-rickshaws. So, what is the best tables schemas I ...
Rkay Coder's user avatar
Advice
0 votes
7 replies
108 views

I'm creating a medication reminder app. A user creates a reminder by selecting a medication, how long they will be consuming it, and timestamps for when they would to be reminded (receive a ...
Mohamed Selmi's user avatar
Best practices
0 votes
2 replies
65 views

I have tables user and user_role and a m:n table that connects those, user_has_user_role. To keep to a standard I want to not expose database table ids. So there is a secondary id id_be used in the ...
stano561's user avatar
Best practices
0 votes
0 replies
61 views

I'm creating a bookstore / library style database, and I wanted to get some feedback on my tables. I've made a previous version without reference tables, and now I'm trying to separate out the authors ...
Andrew B's user avatar
Best practices
0 votes
2 replies
121 views

Using Go I am creating an in-memory distributed store similar to Cassandra. I have concept of storage_node with get_by_key and put_key_value. When a new node starts it starts to gossip with a seed ...
wonka's user avatar
  • 1
Best practices
0 votes
1 replies
76 views

I am building an apparel store platform composed of three primary domains: a shopper-facing application, an ERP-style business management system, and an external many-to-many supplier integration ...
hanzoera's user avatar
Best practices
0 votes
4 replies
66 views

I'm wondering if there's any point in a primary key if it encompasses ALL the fields in the table. I have a table with "board game id" (primary key, int, non null), "board game name&...
Philip H's user avatar
  • 420
Best practices
0 votes
2 replies
72 views

I am using the official **clickhouse-cs .NET driver(**https://github.com/ClickHouse/clickhouse-cs) with a ClickHouse cluster that has two nodes behind a network load balancer. My use case requires ...
Chaitanya Kulkarni's user avatar
Best practices
0 votes
2 replies
57 views

I'm going to be working on developing a help/support system for a web app, and I'm thinking about the data structure beforehand. Authorized users should be able to create help texts/tooltips anywhere ...
Dennis Zanders's user avatar

15 30 50 per page
1
2 3 4 5
1614