hi friends..
this is my table
CREATE TABLE tblUserMst
(
UserID CHAR(4) CONSTRAINT pk_tblUserMst_UId PRIMARY KEY(UserID),
Password VARCHAR(40) NOT NULL,
Name VARCHAR(70) NOT NULL,
DesigCode CHAR(3) NOT NULL,
EmailId VARCHAR(50) NOT NULL,
TelNo VARCHAR(25),
HandPhone VARCHAR(25),
Active Bit NOT NULL
)
When i'm inserting the values the Column Active is not getting inserted what might be the issue...
INSERT INTo tblUserMst Values('K001','XYZ','Ali Murtaza','FPP76','ali@ipl.com','9738613250','9765623151',1) Error
Msg 8152, Level 16, State 14, Line 1
String or binary data would be truncated.
The statement has been terminated.
Join Hands Change lives
Thanks & Regards
Straight Edge Society