5
I have some questions regarding my database.
I use an MS-SQL "database", which is provided by Locaweb (I don’t have very clear this concept of Locaweb providing me with a "database" which has within it 3 more banks).
Well, it is divided into 3 banks:
adautil (o qual uso)
master
tempdb
The master and tempdb, I am not allowed to edit any information.
I executed the command (which I believe returns information the size of my bank):
EXEC sp_spaceused
I found strange the information I obtained:
database_name | database_size | unllocated space
adautil 17.00 MB 1.84 MB
master 176.06 MB 117.34 MB
tempdb 191.56 MB 187.13 MB
I don’t quite understand what that means, it just added some doubts.
Can the adautil bank fill at any time? For the free space is neither 2.00 MB.
What is the master bank for? And the tempdb bank? They are reserving space that I could be using in the adautil bank?
Utilize
sp_helpdb adatina
. The maximum bank size is the valuemaxsize
. Your database grows according to usage, up to the value stipulated in maxsize.– OnoSendai