Alexandru
Alexandru

Reputation: 12902

Is there any way to check how large an SDF file will grow before adding a row to it?

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

Answers (1)

ErikEJ
ErikEJ

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

Related Questions