I'm getting an error every time I select "[All except filed in error and replaced]" check box, then un-check any of the check boxes below it, and clicking OK gives me the following error:
Error: 1 COULDN'T FIND THE SYMBOL: _FRAMEWORKMODE
Retry?
Not really sure what's going on. Has anyone received this error before?
Here's the ExceptionsAndErrors.log description:
Error: Number=8152 State=22001 Source=Microsoft SQL Server Native Client 10.0 Description=String or binary data would be truncated. Number=3621 State=01000 Source=Microsoft SQL Server Native Client 10.0 Description=The statement has been terminated. IDispatch error #3159 current SQL: begin INSERT INTO DBO.DOCVIEWS(DOCVIEWID,USRID,VIEWNAME,DOCTYPES,LOCATIONS,CONFTYPES,STATUS) VALUES (?,?,?,?,?,?,?) end
I've had time to look at this again. It seems this issue is caused by the database that stores the DOCTYPES. dbo.DOCVIEWS.DOCTYPES is a varchar(4000), so the most DOCTYPES that can be added (assuming all of them have 15 digit DOCTYPE ID's which is the case when dealing with user-made document types) is 15n + 2(n-1) = 4000. And since 4000 is our limit, n = 235 is the most DOCTYPEs that can be added.
n will increase as varchar(4000) increases. So, I guess our question is how do we increase the 4000 character limit in our database without messing anything up?