SQL Server Developer Center >
SQL Server Forums
>
SQL Server Reporting Services
>
ReportBuilder 2 Views not displayed
ReportBuilder 2 Views not displayed
- Hi,
What possible reasons are there for not seeing the Views node in the Query Designer?
When I connect using the same credentials via SSMS I can see the views.
Answers
- You've found a bug. The query designer is incorrectly identifying your view as a system view. Could you please go to Microsoft Connect and log this bug? Please cite this forum thread in the bug also.
If I can figure out a workaround I'll update this thread to let you know.
Thanks,
Denesh.
This posting is provided "AS IS" with no warranties, and confers no rights.- Marked As Answer byDenesh PoharMSFT, AnswererFriday, November 13, 2009 1:11 AM
All Replies
- Which version of SQL Server are you connecting to?
If it is SQL Server 2005 or greater, try running the following query in Report Builder's text mode query designer:
Does the view you are looking for show up?select sys.views.name as [name], sys.schemas.name as [schema] from sys.views left outer join sys.schemas on sys.views.schema_id = sys.schemas.schema_id
Also, note that the treeview in Report Builder is organized differently than SSMS -- Tables/Views are organized by user schema, so make sure you check under all information schemas (the schema name is also returned by the query above).
Thanks,
Denesh.
This posting is provided "AS IS" with no warranties, and confers no rights. - It is version 8.00.2039 (SQL 2000)
- For SQL 2000, try the following query:
Does your view show up? If so, what is the 'status' value of it?select sysobjects.name as [name], sysusers.name as [schema], sysobjects.[status] from sysobjects left outer join sysusers on sysobjects.[uid] = sysusers.[uid] where sysobjects.xtype = 'V'
This posting is provided "AS IS" with no warranties, and confers no rights.- Marked As Answer byYao-Jie Tang - MSFTMSFT, ModeratorFriday, November 06, 2009 6:32 AM
- Unmarked As Answer bydob_xml Friday, November 06, 2009 10:22 AM
- yes the view does appear in the results. The status is 0
- You've found a bug. The query designer is incorrectly identifying your view as a system view. Could you please go to Microsoft Connect and log this bug? Please cite this forum thread in the bug also.
If I can figure out a workaround I'll update this thread to let you know.
Thanks,
Denesh.
This posting is provided "AS IS" with no warranties, and confers no rights.- Marked As Answer byDenesh PoharMSFT, AnswererFriday, November 13, 2009 1:11 AM


