Hi !
I would like to know how SQL server manage empty text fields. I heard that empty fields (not Null), in some other databases, were considered as non empty fields. For exemple, if I have a 200 chars long text field that I leave empty in some records, the space needed to store 200 chars was locker. So a database containing a lot of empty fields in records can be as big as if all the fields were not empty.
What about SQL server ?
If it's true, is there other data types such as INT that preserve its size even if it's empty ?
Note : I know the null value, but I'm trying to analyse an old database and I need some exemples to make understand that it was not well made...
I would like to know how SQL server manage empty text fields. I heard that empty fields (not Null), in some other databases, were considered as non empty fields. For exemple, if I have a 200 chars long text field that I leave empty in some records, the space needed to store 200 chars was locker. So a database containing a lot of empty fields in records can be as big as if all the fields were not empty.
What about SQL server ?
If it's true, is there other data types such as INT that preserve its size even if it's empty ?
Note : I know the null value, but I'm trying to analyse an old database and I need some exemples to make understand that it was not well made...