jason wrote
No luck. I changed the length to nvarchar(4000) on the SettingValue column and it still cuts my query short. Help Please. |
I must recommend AGAINST changing the structure of the DotNetNuke database as you run a VERY HIGH risk of losing data during upgrades (if, for example, a future upgrade increased the SettingValue column to an nvarchar(3000), all of your queries would be truncated to 3000 characters).
As long as you understand these risks and maintain frequent backups, changing the size of this column would also require updating the AddModuleSetting and UpdateModuleSetting stored procedures to accept this larger parameter.
If it satisfies your needs, I strongly recommend you use the SQLGridSelectedView module rather than attempt to "hack" this support into the Reports Module.