Monday, July 23, 2012

How do I check size of SQL Servere Database

We can check the size of a MSSQL database by running a query through the SQL Web Admin using the command ‘sp_helpfile’.

No comments:

Post a Comment

Open default email app in .NET MAUI

Sample Code:  if (Email.Default.IsComposeSupported) {     string subject = "Hello!";     string body = "Excellent!";    ...