Checking Which Database is taking how much Space.

vishalneeraj-24503
Posted by vishalneeraj-24503 under Sql Server category on | Points: 40 | Views : 829
With the help of sp_spaceused in-built Stored Procedure, we can track which DB is taking how much Space
For Example:-
EXEC sp_spaceused N'TABLE1';
EXEC sp_spaceused N'TABLE2';

Comments or Responses

Login to post response