Blog
Discover our latest posts

SQL Logging
A comprehensive logging solution for SQL Server stored procedures that provides structured logging with different severity levels, automatic calle...

Rename MSSQL schema
Unfortunately, this is not so easy. But there is a way.
First create the new schema:
create schema {newschema};
go
N...