I want to convert the data type of the column in sql server the column that I am using is computed but its not giving the expected results if I insert two values of larger integers it says arithmetic overflow record was not commited. I am having the following code for it.
CREATE TABLE mytable(
firstcol [int] NULL,
secondcol [int] NULL,
computedcol AS (firstcol * secondcol)
but when I enter 10 digit operations as adding or multiplying it supports but if i do 123456789 * 123456789 it shows error of arithmatic overflow and the record couldnot be commited. probably means that the computedcol datatype is of int and an int datatype in sql server is upto 10 digits if exceeded it shows overflow error bigint datatype is a hope of hadeling such calculations but I am unaware of the right code need help please....
int? When the limit exeeeds there will be an overflow...that's where you can't go about it.. – bonCodigo Jan 19 at 8:369223372036854775807– nunespascal Jan 19 at 8:55