Select the product you need help with
FIX: Error message when you view SharePoint integrated data-driven subscriptions after you upgrade to SSRS 2012Article ID: 2785699 - View products that this article applies to. Microsoft distributes Microsoft SQL Server 2012 fixes as one downloadable file. Because the fixes are cumulative, each new release contains all the hotfixes and all the security fixes that were included with the previous SQL Server 2012 fix release. On This PageSymptomsConsider the following scenario:
Value cannot be null. Parameter name: obj Troubleshoot issues with Microsoft SharePoint Foundation. Correlation ID: Number Date and Time: Date Time CauseThis issue occurs because the following tags are missing from the DataSettings column of the dbo.Subscriptions table in the existing data-driven subscriptions after you upgrade SSRS:
ResolutionCumulative update informationCumulative Update 2 for SQL Server 2012 SP1The fix for this issue was first released in Cumulative Update 2. For more information about how to obtain this cumulative update package for SQL Server 2012 SP1, click the following article number to view the article in the Microsoft Knowledge Base:2790947 Note Because the builds are
cumulative, each new fix release contains all the hotfixes and all the security fixes
that were included with the previous SQL Server 2012 SP1 fix release. We recommend that
you consider applying the most recent fix release that contains this hotfix. For more
information, click the following article number to view the article in the Microsoft
Knowledge Base:
(http://support.microsoft.com/kb/2790947/
)
Cumulative update package 2 for SQL Server 2012
Service Pack 12772858
(http://support.microsoft.com/kb/2772858/
)
The SQL
Server 2012 builds that were released after SQL Server 2012 Service Pack 1 was
releasedCumulative update 5 for SQL Server 2012The fix for this issue was first released in Cumulative Update 5. For more information about how to obtain this cumulative update package for SQL Server 2012, click the following article number to view the article in the Microsoft Knowledge Base:2777772 Note Because the builds are cumulative, each new fix release contains all the hotfixes and all the security fixes that were included with the previous SQL Server 2012 fix release. We recommend that you consider applying the most recent fix release that contains this hotfix. For more information, click the following article number to view the article in the Microsoft Knowledge Base:
(http://support.microsoft.com/kb/2777772/
)
Cumulative update package 5 for SQL Server 20122692828
(http://support.microsoft.com/kb/2692828/
)
The SQL Server 2012 builds that were released after SQL Server 2012 was releasedWorkaroundTo work around this issue, manually add the missing tags to the DataSettings column. For more information about how to add tags, refer to the "More information" section. StatusMicrosoft has confirmed that this is a problem in the Microsoft products that are listed in the "Applies to" section. More informationTo add the tags to the DataSettings column, run the following script: DECLARE @subid as uniqueidentifier DECLARE @orig_string nvarchar(max) DECLARE @new_string nvarchar (max) SET @subid = '<SubscriptionID>' // You input your SubscriptionID here. SET @orig_string = CAST((SELECT DataSettings FROM dbo.Subscriptions where SubscriptionID = @subid) AS nvarchar(max)) SET @new_string = STUFF(@orig_string, len(@orig_string) - 9, 0, '<CaseSensitivity>True</CaseSensitivity><AccentSensitivity>True</AccentSensitivity> <KanatypeSensitivity>True</KanatypeSensitivity><WidthSensitivity>True</WidthSensitivity>') UPDATE dbo.Subscriptions SET DataSettings = @new_string where SubscriptionID = @subid PropertiesArticle ID: 2785699 - Last Review: January 24, 2013 - Revision: 2.0
| Article Translations
|


Back to the top








