Category 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… »

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… »