Tag Archives: SQL Server

SQL Server – How to Search for Objects in a database

By | 10/01/2024

In this post, we will see how to search for objects in our SQL server databases, using a simple Stored Procedure called SearchInAll.In the world of database management, searching through various database objects for specific text can be a tough task, especially in large and complex databases. Whether it’s for debugging, auditing, or just general… Read More: SQL Server – How to Search for Objects in a… »

C# – ACID properties in Database Management

By | 01/11/2023

In this post, we will see the ACID properties and how we can implement it using C#.But first of all: what is ACID?ACID is an acronym that stands for Atomicity, Consistency, Isolation, and Durability. It’s a set of properties that databases strive to achieve to guarantee that database transactions are reliable, even in the face… Read More: C# – ACID properties in Database Management »

SQL Server – How to save Stored Procedure result into a temporary table

By | 07/09/2022

In this post, we will see how to save a Stored Procedure result into a temporary table.We remember that Temporary tables are tables that exist temporarily on SQL Server and, they are used to store result that need to be elaborate. We start creating a database called TestBlog where, we will add two tables called… Read More: SQL Server – How to save Stored Procedure result into… »

Docker – How to run SQL Server in a Docker container

By | 05/01/2022

In this post, we will see how to run SQL Server in a Docker container using a docker-compose file. We start opening VS Code and we create a file docker-compose.yaml where, we will add this code: [DOCKER-COMPOSE.YAML] I want to explain some rows:line 5 => we get latest version of mssqlline 7 => we define… Read More: Docker – How to run SQL Server in a Docker… »

Azure – How to create an Azure SQL Database

By | 05/06/2020

In this post, we will see how to create an Azure SQL Database using the Azure portal. We open a browser, go to https://portal.azure.com, select “Create a resource” and we choose “SQL Database”: The first things we have to set are:Resource GroupDatabase NameServer Then, we have to set some Networking parameters: Finally, we review everything… Read More: Azure – How to create an Azure SQL Database »