18 Oct SQL vaSpread: Can You Populate FarPoint Spread 6.0 from a SQL Query October 18, 2025 By César Pedro Zea Gomez 0 comments I ran into a very old but gold situation: I needed to show a SQL Server report exactly as it appears in SSMS, but inside a FarPoint vaS... Continue reading
02 Oct SQL How to Fix GitLab CI Not Fail When There Is an SQL Error October 2, 2025 By César Pedro Zea Gomez 0 comments In a GitLab CI/CD pipeline, it's crucial to ensure that jobs fail correctly when SQL errors occur. However, the default behavior of a j... Continue reading
02 Oct SQL How to Create a Foreign Key in SQL Server October 2, 2025 By César Pedro Zea Gomez 0 comments I have been there: I copied a Postgres style foreign key into SQL Server, hit Run, and SQL Server clapped back with: Msg 8139: Numbe... Continue reading
29 May SQL How I Fix PowerShell Generic ExecuteNonQuery SQL Error My Scripts May 29, 2025 By César Pedro Zea Gomez 0 comments When working with SQL Server from PowerShell using the Microsoft.SqlServer.Management.Common.ServerConnection object, I've often encoun... Continue reading
29 May SQL How I Fix MySQL Error 1442 When Update a Parent Product Price from a Trigger May 29, 2025 By César Pedro Zea Gomez 0 comments Recently, I was working on a project where I had to update a product’s price, and if that product had a parent item, I needed the paren... Continue reading
19 May SQL How to Fix ORA-00959 Table Space Does Not Exist in Oracle? May 19, 2025 By César Pedro Zea Gomez 0 comments I was sure my script was fine. I copied it into Oracle SQL Developer, pressed Run, and watched the log… then Oracle yelled: Error Co... Continue reading
19 May SQL How do I Fix Codeigniter Database Error in SQL May 19, 2025 By César Pedro Zea Gomez 0 comments I still remember the first time I hit Log In on my brand-new CodeIgniter app and, instead of a warm dashboard, MySQL slapped me with th... Continue reading
12 Apr SQL How to Fix a Syntax Error in MySQL Workbench? April 12, 2025 By César Pedro Zea Gomez 0 comments If you've been working with MySQL and are encountering errors in MySQL Workbench, don't worry you're not alone. I'll walk you through t... Continue reading
27 Feb SQL How to Fix DBeaver’s Over Escaping Issue When Copying JSONB Data in SQL Inserts February 27, 2025 By César Pedro Zea Gomez 0 comments If you’ve ever used DBeaver to clone database records containing JSONB data in sql, you might have encountered a frustrating problem: t... Continue reading
27 Feb SQL How to Reuse a Calculated Column in SQL Server February 27, 2025 By César Pedro Zea Gomez 0 comments If you’ve ever written a SQL query where you needed to reference a calculated column multiple times, you might have run into a frustrat... Continue reading