Tag: Programming
-
The Foundation of Performance – Understanding Indexes in MSSQL
Welcome back to The Code Neuron! In our last blog, we mastered advanced query techniques like CTEs and Window Functions. Now that we can write powerful queries, it’s time to ensure they run as fast as possible. The key to high-performance database operations is indexing. Think of an index like the index at the back…
-
Level Up Your SQL: Mastering CTEs, Window Functions, Cursors
Welcome back to The Code Neuron! In our continuous journey to master data manipulation and management, we’ve already covered essential SQL concepts. Today, we’re diving deeper into advanced MSSQL features that are crucial for writing powerful, efficient, and maintainable code. We’ll explore Common Table Expressions (CTEs), Window Functions and Cursors with multiple descriptive examples for…
-
Unpacking Database Persistence for Large Text Fields in Hybris: A Multi-DB Approach
As developers working with the Hybris platform, we often encounter scenarios where we need to store significant amounts of text-based data, such as custom configurations, product descriptions, or structured data like JSON for integrations or SEO. While a simple String attribute might suffice for shorter texts, what happens when the data can grow to several…