Reputation: 12902
Consider this scenario:
Is there any way to check how large my SDF file will grow to before actually adding a row to it?
Let's say this is the schema for it: 1 table named MyMessages
, which contains only 1 column named TheMessages
which is of type VARCHAR(1000)
.
Upvotes: 1
Views: 254
Reputation: 41779
I do not know of any way to do this, in addition the file may shrink when the last connection to the file is closed due to the autoshrink feature. You will have to accept a margin and check in advance.
Upvotes: 1