Installing SQL Server Reporting Services 2008

Written by VidhyaSagar. Posted in DBA, Reporting Services

In this webcast we are going to install SQL Server reporting services 2008. Watch the video and post your feed back incomments.

 

Download the Video in Good Quality

File Size : 11.2 MB
Video Size: 800 x 600
Duration : 11.38 min

 

VN:F [1.9.17_1161]
Rating: 0.0/5 (0 votes cast)
VN:F [1.9.17_1161]
Rating: 0 (from 0 votes)

Tags: , ,

Trackback from your site.

Leave a comment

*

Recent Comments

VidhyaSagar

|

@Manu – I just created the procedure to explain how to find uncontained objects in that databases that’s why I didnt granted permission to that object.

manu

|

It seems you got execute error as you didn’t granted user “sagar” execute access on [dbo].[uncontained_entity] . I granted it execute access and it worked all fine.

AM I missing something here?

Thanks,

RA

|

Thanks for the script. I had database with space between the names.

I modified to use square brackets:

FROM [?].sys.database_principals a
LEFT OUTER JOIN [?].sys.database_role_members

and

from [?].sys.database_permissions join [?].sys.sysusers U
on grantee_principal_id = uid join [?].sys.sysobjects

Gangadhar NG

|

This tip is helpful enough for me.
thanks.

Zukunftsmusik

|

Thanks! That helped my a lot. But there’s a little mistake:
SQL_Latin1_General_CP1_CI_AS stands for “Latin1-General, case-insensitive, accent-sensitive [...]” therefore sort order 52.

If you want to set the sort order to 54 the correct collation would be “SQL_Latin1_General_CP1_CI_AI” ;)