简体   繁体   English

数据源配置向导不显示存储过程源中的列

[英]Datasource Configuration Wizard do not show colum from stored procedure source

Is this bugs or need something to be done first, I have tried both with VS 2010 and VS 2013 update 2 是这个bug还是需要先完成一些工作,我已经尝试了VS 2010和VS 2013 Update 2

I Want to create report (Microsoft Reporting View-local) which the source data are from stored procedure, something like : 我想创建报表(Microsoft Reporting View-local),该报表的源数据来自存储过程,例如:

Create Procedure One_ok
as
    Select * From MyTable

this one is OK Datasource configuration wizard successfully return the column from the stored procedure. 数据源配置向导可以成功从存储过程中返回该列。

Create Procedure One_Not_ok
as
    Select * Into #result From MyTable
    Select * from #result 

This one Datasource configuration wizard can not return the column from the stored procedure, when click the tree expand simple blank 当单击树展开简单空白时,此数据源配置向导无法从存储过程返回列

Any help please ? 有什么帮助吗? It's a really bad news if must declare the dataset manually 如果必须手动声明数据集,这真是个坏消息

Thx sen

ok I have found alternative quite way, create report-BI project file ext will rdl after done all things copy it to new file rdlc. 好的,我已经找到了另一种选择,在完成所有操作后,创建report-BI项目文件ext将把rdl复制到新文件rdlc。

why Microsoft do not improve configuration wiz to query designer like ones in report-BI 为什么Microsoft不改进配置向导来查询报表BI中的设计器

any other easy ways for best practice without manually copy from rdl to rdlc ? 还有其他简便的最佳实践方法,而无需手动从rdl复制到rdlc吗?

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 从SQL数据源存储过程填充文本框 - Populate textboxes from SQL Datasource Stored Procedure 来自数据库存储过程的Gridview数据源 - Gridview datasource from database stored procedure ASP数据源和存储过程中的下拉列表填充不起作用 - Dropdownlist population from ASP datasource and stored procedure not working DataSource存储过程异常行为 - DataSource stored procedure strange behaviour 如何从实体数据向导以Entity Framework代码优先的方式导入现有存储过程? - How to import existing stored procedure in Entity Framework code-first from entity data wizard? 如何在存储数据源的过程中访问值 - How to access values where datasource is stored procedure 按下按钮时更改SQL数据源存储过程 - Changing SQL Datasource stored procedure on button press 如何使用业务对象和存储过程填充窗体视图? (DataSource对象/ DataBound控件) - How do I populate a Form View with business object and stored procedure? (DataSource objects/DataBound Controls) 为什么无法使用存储过程的结果将数据源绑定到我的datagridview? - Why does i cant bind the datasource to my datagridview with result from stored procedure? ASP.NET和Crystal Report:使用临时表从存储过程中加载数据源 - ASP.NET & Crystal Report: load datasource from a stored procedure with temp tables
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM