How to increase nvarchar length for a DB table column?
I did not realize that there is a maximum length to the name of the Retention Category (100 characters), and it appears to be dictated by the column data type in the database (dCategoryName (nvarchar(100)). I have attempted to increase the length however it appears that to do so would require me to drop, a populated, table and recreate it. Would any of you know of a workaround where I would not have to drop the table?
We are using a Microsoft SQL Server 2008 R2 database as the back end for our WebCenter Content: Records installation.