Vibe Coding Database Application Example Using Python and VS Code and AI

With the popularity of the Vibe Coding (with AI) methodology I though we could try creating a very simple Database application that anyone can use from a local browser. Most of the articles I found were using javascript frameworks (Node, React, Angular, or Vue.js) to build the application. Lets try… Read more »

Check If SQL Table Exists Using Powershell

Another common request for DBA’s is to search for or validate that certain tables or other objects exist and in what database. This post is a follow-up to our “Check If Database Exists Using Powershell” post where we search look for a database remotely using the “invoke-sqlcmd” commandlet. Note: This… Read more »

Stored Procedure With Input And Output Parameters In SQL

This post is for the beginner to understand how to write and modify a SQL stored procedure with parameters and variables. We will try to include some “why & how” answers that many stored procedure examples leave out. Procedures can become very complicated so we will keep it simple and… Read more »

Azure Cosmos DB

      No Comments on Azure Cosmos DB

The Azure Cosmos DB is a NoSQL database or “nonrelational” database where the data is stored in Documents and these documents are organized as collections. The benefit of using a NoSQL database like Cosmos DB is to handle large amounts of data that changes frequently and needs to be available… Read more »

Get The First Day Of The Month From 3 Months Ago Using T-SQL

Dealing with dates in SQL Server is a critical skill and required when developing reports that depend on the Date, Day and Hour to be accurate. This includes logically moving through the year or bracketing results inside a month in your code. Returning the beginning of the month using SQL… Read more »