Every Question..What does it mean? Why is this? How it works?
Microsoft .Net (pronounced dot (.) net) may be a package element that runs on the Windows software package.
.Net provides tools and libraries that change developers to form Windows package a lot of quicker and easier.
Microsoft describes it as:".Net is that the Microsoft internet Service strategy to attach data, people,
system and devices through software".I'm Choulla Naresh..!
Monday, September 9, 2024
How can I check the size of a specific database in SQL Server?
You can check the size of a database using the following query:
EXEC sp_spaceused;
Or, for a specific database:
USE YourDatabaseName;
EXEC sp_spaceused;
This command returns the database size, reserved space, unallocated space, and more.