DotCat

喜欢技术,喜欢简单,喜欢猫

常用链接

朋友的窝

我的收藏

我的足迹

最新评论

Converting RDL and RDLC Files

According to http://msdn2.microsoft.com/en-us/library/ms252109(..., converting RDLC to RDL should be very easy. In most common scenarios, there is nothing I need to do!

However, I found that VS (or SQL Server Business Intelligence Development Studio) will pop up this message box, saying "You have specified integrated security or credentials in the connection string for the data source, but the data source is configured to use a different credential type. To use the values in the connection string, you must configure the unattended report processing account for the report server"

Even after configuring unattended report processing account in reporting service configuration tool, it still keeps popping up. Finally, I found the difference between RDLC and RDL file generated by VS.

RDLC: <ConnectString>Data Source=.;Initial Catalog=JobReport;Integrated Security=True</ConnectString>

RDL: <IntegratedSecurity>true</IntegratedSecurity><ConnectString>Data Source=.;Initial Catalog=JobReport</ConnectString>

After I convert the upper line to the lower line, it works! Isn't that weird?

posted on 2007-04-20 16:18 DotCat 阅读(583) 评论(1)  编辑 收藏 所属分类: Problem & Solution

评论

#1楼 [楼主] 2007-04-22 10:54 DotCat      

I found this post about unattended execution account is really useful: http://blogs.msdn.com/bimusings/archive/2006/08/16/702490.aspx   回复  引用  查看    


标题  
姓名  
主页
Email (博主才能看到) 
验证码 *  看不清,换一张 [登录][注册]
内容(请不要发表任何与政治相关的内容)  
  登录  使用高级评论  新用户注册  返回页首  恢复上次提交      


相关链接: