Database-Level Roles in SQL Server

Introduction There are two types of database-level roles: Fixed-database roles db_accessadmin Granted: ALTER ANY USER, CREATE SCHEMA,Granted with Grant option – Connect By SSMS By TSQL USE [Our_Tech_Ideas] — Database name GO ALTER ROLE [db_accessadmin] ADD MEMBER [login01] — Database…

Read More →

Table backup in SQL Server

Introduction Here we will discuss different backup strategies and methodologies used to take the table backup in SQL Server with real-life examples. There are different methods of taking backup in SQL server. Type 1: Taking Backup of the table using…

Read More →
Find Database size, File size & Table size in SQL Server

Find Database size in SQL Server

Introduction In this article, we will try to pull all sizes from SQL server. How to find Database Size in SQL Server? How to Get size of all tables in the SQL Server database? We will use different SQL Queries…

Read More →