Does anyone know how to calculate the byte length/storage space of a field which is a checksum of another field? I need to calculate the maximum row length of various tables and I can't find anything in BOL about checksum column lengths
Just in case this is needed, the relevant part of the table definition is
CREATE TABLE MyTable(
...
[AccNumber] [varchar] (20) COLLATE Latin1_General_BIN NOT NULL ,
[csAccNumber] AS (checksum([AccNumber])) ,
...
)
Thanks
Maria
Just in case this is needed, the relevant part of the table definition is
CREATE TABLE MyTable(
...
[AccNumber] [varchar] (20) COLLATE Latin1_General_BIN NOT NULL ,
[csAccNumber] AS (checksum([AccNumber])) ,
...
)
Thanks
Maria