Hello,
I am trying to backup my database for the first time. Before I can do this I need to know how big my database is. I figured out by using the following code:
This code works when trying to determine the size of individual databases in this case ARC_rpts.
How do I determine the whole database size? Any help is appreciated.
Tom
I am trying to backup my database for the first time. Before I can do this I need to know how big my database is. I figured out by using the following code:
Code:
USE ARC_Rpts
GO
EXEC sp_spaceused
GO
This code works when trying to determine the size of individual databases in this case ARC_rpts.
How do I determine the whole database size? Any help is appreciated.
Tom