Showing posts with label SSRS. Show all posts
Showing posts with label SSRS. Show all posts

Friday, 23 October 2015

SSRS report view blur when scrolling

Problem is resolved.

Issue was due to browser compatibility view which was set to IE5. I changed SSRS report viewer file located at Microsoft SQL Server\MSRSXX.MSSQLSERVER\Reporting Services\ReportServer\Pages\Report.aspx
added meta tag:

 <meta http-equiv="X-UA-Compatible" content="IE=edge">

to force browser to render in latest version available.

Wednesday, 17 June 2015

Text overlapping in SSRS

I have below problem when i scroll down





Solution:

Go to Row Groups--> Details --> select F4 and customer properties --> FixedData  change to "Flase"

How to find table row count?

--Use below query to find table row count select so.name,sp.rows from sys.objects so inner join sys.partitions sp on so.object_id = sp.obj...