I Need The Report To Include Entries Not Found In Database

Nov 27, 2007

I have a report that accepts a list in the filter and searches the data base for the items in the list. How do I get the result to include all items in the list even if they are not located in the database? Thanks.

View 4 Replies


ADVERTISEMENT

An Unexpected Token . Was Found Following . Expected Tokens May Include: , FRO

Nov 19, 2007

I'm a little bit lost on this one. I use a SQL 2000 datbase and have been running a stored procedure for several years that hits a DB2 database. The DB2 server is linked. I need to make a small modification to the procedure that will pull in an additional date value to a temp table. What I thought would be very simple has me lost. The procedure is as follows and I've highlighted the area I added.

CREATE PROCEDURE sp_ivSqlAcquireCWMM_With_15K

@claim_nbr varchar(30)
AS
/* Declare variables */
declare @insert_sql varchar(1000)
declare @openquery_sql varchar(1000)
declare @fields_sql1 varchar(1000)
declare @from_sql varchar(1000)
declare @where_sql varchar(1000)
declare @claim_nbr_2 char(30)
declare @pri_con_type char(4)
--declare @Where_Por Char(30)

CREATE TABLE #tCaseContact
(
CLAIM_NBR char(30),
CASE_NBR CHAR(11),
INJ_SSN CHAR(9),
INJ_FNAME CHAR(20),
INJ_MID_INIT CHAR(1),
INJ_LNAME char(30),
INJ_NME_SUF CHAR(3),
TPLOC_NAME CHAR(60),
TPLOC_POLICY_NBR CHAR(20),
DT_OF_INJ DATETIME,
CASE_STS CHAR(4),
TEAM_NBR CHAR(4),
USER_KEY char(16),
TPA_ID CHAR(9),
CON_TYPE char(4),
CON_ID int,
PRIMARY_IND char(1),
EMP_Tier char(1),
Non_UM char(1),
POR char(42) NULL,
Cont_Type char(4),
Thousand_Date datetime)


/* Assert Claim Number from @claim_nbr parameter */
set @claim_nbr_2 = cast(@claim_nbr as char(30))

set @insert_sql = 'INSERT INTO #tCaseContact '
set @openquery_sql = ' ' +
' SELECT * FROM OPENQUERY( CWMM,''SELECT'
set @fields_sql1 = ' ' +
'a.twccs_claim_nbr, ' +
'a.twccs_case_nbr, ' +
'a.twccs_inj_ssn, ' +
'a.twccs_inj_fname, ' +
'a.twccs_inj_mid_init, ' +
'a.twccs_inj_lname, ' +
'a.twccs_inj_nme_suf, ' +
'mcdb.polloc_cw.tploc_name, ' +
'mcdb.polloc_cw.tploc_policy_nbr, ' +
'a.twccs_dt_of_inj, ' +
'a.twccs_case_sts, ' +
'mcdb.polloc_cw.tploc_team_nbr, ' +
'c.tctyp_user_key, ' +
'a.twccs_tpa_id, ' +
'b.twcon_con_type, ' +
'b.twcon_con_id_pers, ' +
'b.twcon_primary_ind, ' +
'e.tpoli_prem_tier, ' +
'e.tpoli_non_um, ' +
'f.NAME, ' +
'b.twcon_con_type, ' +
'a.twccs_1000_lmt_dt'


set @from_sql = '' +
'FROM ' +
'MCDB.WCCASE_CW AS a ' +
'INNER JOIN MCDB.WCCONTT AS b ON ' +
'(a.TWCCS_CASE_NBR = b.TWCON_CASE_NBR) ' +
'INNER JOIN MCDB.CONTYPT AS c ON ' +
'(b.TWCON_CON_ID_PERS = c.TCTYP_CON_ID) ' +
'INNER JOIN MCDB.POLLOC_CW AS d ON ' +
'(a.TWCCS_POLICY_NBR = d.TPLOC_POLICY_NBR) ' +
'INNER JOIN MCDB.POLICY_CW AS e ON ' +
'(d.TPLOC_POLICY_NBR = e.TPOLI_POLICY_NBR) ' +
'Left Outer JOIN PRODSYS.CWPV001_PROV_MASTER as f ON ' +
'(a.TWCCS_POR_NO = f.PROV_NO)'



SET @where_sql = '' +
'WHERE ' +
'b.TWCON_CON_TYPE IN (''''MCS'''', ''''MCN'''', ''''RRS'''') ' +
'AND ' +
'c.TCTYP_CON_TYPE = ''''USER'''' ' +
'AND ' +
'b.TWCON_STS = ''''A'''' ' +
'AND ' +
'a.TWCCS_CLAIM_NBR = ''''' + @claim_nbr_2 + '''''' +
''')'



exec( @insert_sql + @openquery_sql + @fields_sql1 +
@from_sql + @where_sql )

/*
SELECT * FROM #tCaseContact
*/
if (exists
(SELECT CLAIM_NBR
FROM #tCaseContact
WHERE CON_TYPE = 'MCN' AND PRIMARY_IND = '1'))
set @pri_con_type = cast('MCN' as char(4))
if (exists
(SELECT CLAIM_NBR
FROM #tCaseContact
WHERE CON_TYPE = 'MCS' AND PRIMARY_IND = '2'))
set @pri_con_type = cast('MCS' as char(4))
if (exists
(SELECT CLAIM_NBR
FROM #tCaseContact
WHERE CON_TYPE = 'MCS' AND CAST(PRIMARY_IND AS VARCHAR(4)) = '') AND
(exists
(SELECT CLAIM_NBR
FROM #tCaseContact
WHERE CON_TYPE = 'RRS' AND PRIMARY_IND = '4')))

set @pri_con_type = cast('RRS' as char(4))
if @pri_con_type is null set @pri_con_type = cast('MCS' as char(4))
/*sets the MCS as the Primary Contact if the primary contact is returned as null*/

/* if (exists
(Select POR
FROM #tCaseContact set POR=f.
where POR is not null))
if Por='' or Por is null
Else set POR=null
*/



SELECT
TOP 1
a.CLAIM_NBR ,
a.CASE_NBR ,
a.INJ_SSN ,
a.INJ_FNAME ,
a.INJ_MID_INIT ,
a.INJ_LNAME ,
a.INJ_NME_SUF ,
a.TPLOC_NAME ,
a.TPLOC_POLICY_NBR ,
convert(varchar(10),a.DT_OF_INJ, 101) as TWCCS_DT_OF_INJ,
a.CASE_STS ,
a.TEAM_NBR ,
(
SELECT top 1 a1.USER_KEY FROM #tCaseContact AS a1 WHERE a1.CON_TYPE = @pri_con_type
) as USER_KEY ,
a.TPA_ID,
a.EMP_TIER,
a.NON_UM,
a.POR,
(
SELECT top 1 a1.Con_Type FROM #tCaseContact AS a1 WHERE a1.CON_TYPE = @pri_con_type
) as Cont_Type,
convert(varchar(10),a. Thousand_Date,101) as twccs_1000_lmt_dt
FROM
#tCaseContact AS a
GO

View 8 Replies View Related

While Exporting A SSRS 2005 Report In CSV Format ,can We Include The Report Headers And Footers Also To Be Exported

Nov 7, 2007



While exporting a SSRS 2005 report in CSV format ,can we include the report headers and footers also to be exported .
Thanks .

View 1 Replies View Related

Report Unique Entries

Dec 1, 2006

e.g. column name: nameID, projectID)

2, 123
3, 213
3, 243
4, 987
5, 243
5, 213

I want the result to be:

2, 123
4, 987

How would I write the query?

Thanks in advance.

View 3 Replies View Related

How To Create A Report Include 2 Page Form

Dec 4, 2007



Hi.
Does anybody knows how to create a report inside include 2 page? per page has itself body & pagefooter. for example on Page 1 is PO on page 2 is this PO contract list.


Thanks

View 6 Replies View Related

Include Report Link In Subscription Does Not Render The Correct URL

Jun 29, 2006

Hi,

I am sure there is a thread about that one but I cannot find it.

I have a server which does not include the correct link with the subsciptions.

I create a subscription and ask to include the link to the reporet, I get the report with the machine name instead of the DNS name.

i.e. i get



The report is accessible at the following address:

http://atlanta/reportserver/...

instead of http://reporting.onsemi.com/reports/....

I tried to edit rswebapplication.config like that

<ReportServerUrl>reporting.onsemi.com</ReportServerUrl>

and rsreportserver.config like that

<DefaultHostName>onsemi.com</DefaultHostName>

but still cannot get the correct URL in the subscription.

Any idea?

Thanks,

Philippe

View 4 Replies View Related

Reporting Services :: How To Include Indentation From Second Line Onward In SSRS Report

Mar 29, 2015

I have a simple report which includes Dname and Description columns. 

In the description column if the value is more then when coming to second line has to be 2 SPACE indent.

Below Image for your reference.

View 2 Replies View Related

Reporting Services :: Don't Include Last Page Of SSRS Report Based On Parameter

Mar 9, 2015

I created the report, which has 4 pages. Each page contains bunch of tables and charts, which display data in scope of dataset, created for each page and reflecting certain subject. Each page also has Header and Footer.

My users requested, the report has possibility to include or not include data on Page #4.

Other words, report should display 3 or 4 pages based on the entered parameter.

1. I created parameter named  “Include #### metrics”, which contains options: Y, N
2. For each object on the page 4 I added dependency on the selected parameter in  the visibility option.

Now if user select parameter Not include Page #4, report displays 3 pages as expected and page #4 is empty, but with Header and Footer.

The problem: Their preference is to not to show page 4 at all if someone chooses to not to include #### metrics.

My question is how to force the report to display just 3 selected pages.

View 5 Replies View Related

How To Export Whole Database Schema To Another Database But Not Include The Data?

Sep 21, 2007


I need to export a database, x, of a server, X, to another database, y, of a server, Y and I need export the database schema only, not include the data.
Does anyone know how to do that?
Many thanks for replying.

View 7 Replies View Related

Reporting Services :: Include Special Characters In Passing Parameters In JavaScript In Drill Through Report

Sep 6, 2015

I am passing a field value from main report to a parameter in a drill through sub report. But some field values contain 'special characters'. Those field values that contain special characters are not working for drill through. Javascript code to include special characters to pass to sub report parameter?

View 3 Replies View Related

Reporting Services :: Report Builder - Set Parameter To Include Or Exclude Columns From Data Presentation

Oct 2, 2015

Based on a table like below I have created a report so that I can compare number of items in the main warehouse (LOCATION1) and the outlets (LOCATION2 and LOCATION3).

___________________________________
| ID | PRODUCT_INDEX | LOCATION   | VALUE |
___________________________________
| 1  | INDEX1             | LOCATION1 | 1         |
___________________________________
| 2  | INDEX1             | LOCATION2 | 1         |
___________________________________
| 3  | INDEX1             | LOCATION3 | 0         |
___________________________________
| 4  | INDEX2             | LOCATION1 | 0         |
___________________________________
| 5  | INDEX2             | LOCATION2 | 0         |
___________________________________
| 6  | INDEX2             | LOCATION3 | 1         |
___________________________________
| 7  | INDEX3             | LOCATION1 | 1         |
___________________________________
| 8  | INDEX3             | LOCATION2 | 0         |
___________________________________
| 9  | INDEX3             | LOCATION3 | 1         |
___________________________________

The way I present data in my Report is as such. I want to show items that are available in the warehouse that should be moved to the outlets.

select 
 a.PRODUCT_INDEX
, a.LOCATION1(VALUE)
, b.LOCATION2(VALUE)
, c.LOCATION3(VALUE)  
from 

[Code] .....

__________________________________________________________________
| PRODUCT_INDEX | LOCATION1 (VALUE) | LOCATION2 (VALUE) | LOCATION3 (VALUE)|
__________________________________________________________________
| INDEX1               | 0                              | 1                               | 0                             |
__________________________________________________________________
| INDEX2               | 1                              | 0                               | 1                             |
__________________________________________________________________
| INDEX3               | 1                              | 0                               | 1                             |
__________________________________________________________________

I have added some parameters in my report to filter out products that are not available in warehouse (LOCATION1) and this works great.

select * from VIEW where 'LOCATION1(VALUE)' > 0 and ('LOCATION2(VALUE)' = 0 or 'LOCATION3(VALUE)' = 0)

__________________________________________________________________
| PRODUCT_INDEX | LOCATION1 (VALUE) | LOCATION2 (VALUE) | LOCATION3 (VALUE)|
__________________________________________________________________
| INDEX1               | 1                              | 1                               | 0                             |
__________________________________________________________________
| INDEX3               | 1                              | 0                               | 1                             |
__________________________________________________________________

Now the issue starts when I add a parameter to my report for user to choose which outlets (LOCATIONs) he wants in the equation. I know how to make a column disappear based on parameter value but how to take it out of equation? At the moment when user selects only LOCATION2 and not LOCATION3 then data is not filtered correctly:

__________________________________________________
| JOIN_ON_VALUES | LOCATION1 (VALUE) | LOCATION2 (VALUE) |
__________________________________________________
| INDEX1                 | 1                              | 1          |
__________________________________________________
| INDEX3                 | 1                              | 0          |
__________________________________________________

Ideally I would like a user to select random outlets (warehouse would be static on the report) and compare one or multiple and only show records that are 0 in the outlets.

View 2 Replies View Related

How To Include ASPNET.MDF In My Database?

Jan 25, 2008

Hi,
I have a test database and need to to include the aspnet.mdf into my database.
I have generated a script for the aspnet.mdf, but don't know how to run/include this into my own test database.
1. Is there any magical sql-command that do the job in a clean way for me?
2. How can I change the name of aspnet in that auto generated script, if needed at all?
I have: SQL server Express Edition 2005, Visual Web Developer Express Edition 2008
 
Thank's
/Pepe

View 1 Replies View Related

Retrieving The 10 Min Entries From A Database

Jun 5, 2007

Hi, I've been trying to write an sql statement that can output the 10 minimum entries from a database, but I can't figure out how to do it.

Any help?

View 6 Replies View Related

Searching For Entries In Subsequent Log Entries?

Dec 2, 2013

If I wanted to search for Jobs as a particular status (e.g. 0130) and wanted to keep the jobs at this status until it has reached 0500, 0125, or 0900 in it's subsequent status log entry, how can I write the SQL for it to achieve it?

I have the following SQL which searches for the Jobs at 0130, but don't know how to develop it further to search on the requirement above.

------ SQL -------
SELECT
job.job_number,
(SELECT MAX(jsl.job_log_number)
FROM job_status_log jsl
WHERE
job.job_number = jsl.job_number AND
jsl.status_code = '0130') as Last_Early_Warning_Status_Entry

[code].....

In the job_status_log table above, there is a job_log_number field which increments by 1 when there is a new status log entry.

View 1 Replies View Related

Preventing Duplicate Database Entries

Jan 31, 2006

Hi all.. I've been scouring the forums for about 6 hours to no
avail.  This is a really simple question.  I'm trying to have
a registration page that lets the user input name, email, desired
username, and password.  I want to check the username and email
fields to make sure ppl cannot sign up twice.  So from what I've
gathered I have a couple of options:

1) i can set up a unique constraint on the database columns,
2) i can run a select statement before inserting,
3) i can store the whole database column in a variable then search through it.

My question is how to do option 2?  All of my transactions are through a sqldatasource object in c#.

View 6 Replies View Related

Update SQL Database With Entries From MS Access

Sep 16, 2003

Hi,

Is there a way to link an Access 97 database to a SQL database which would get updated as changes in the Access 97 database take place? In fact, the SQL database will be just a copy of an Access database. If there were changes made to the fields in the Access database these changes should be made to the entries in the SQL database as well.

Thank you,
Misha

View 3 Replies View Related

Datasource Cannot Be Found After Report Redeployment

Nov 3, 2006

We have an application using the winforms report viewer, and it displays all our reports perfectly untill I need to redeploy a report.

As soon as a report is re-deployed a refresh of the report in the viewer shows the following error message:

An error has occured during report processing. The data souce 'mydatasource' cannot be found.

This error occurs irrespective of electing to re-deploy ot not re-deploy the datasource, and the only solution seems to be to close the report viewer down and restart it.

I can reproduce the same problem hosting the reports in a web browser as well, with a slightly different error message

An error has occurred during report processing. (rsProcessingAborted). The data source 'mydatasource' cannot be found. (rsDataSourceNotFound)

Under RS2000 any changes that were made to a report, would automatically be shown to the user if the report was refreshed, without having to close the browser/application down and restart it.

Can I configure RS2005 to prevent this error occuring ? I have read that RS2005 seems to work a lot more within the IIS session for the user and cache things it thinks are usefull, so can I turn this behaviour off, or make it run like RS 2000 did, which provided me with a stable reporting platform?

If I cannot do this from the RS end of the system, is there any advice on using the winforms control to get around this issue - i've only just started using the control so I am not familiar with all its aspects !

Thanks

Andy

View 3 Replies View Related

The Report Services Instance Could Not Be Found

Jan 5, 2006

I Try to connect to Report Services

I Recieved This Message

The Report Services Instance could not be found (Microsoft.SqlServer.Management.UI.RSClient)

View 9 Replies View Related

No Report Servers Were Found On The Specified Machine

Jul 12, 2007

I am trying to configure MOSS and SSRS and when I go to Grant Database Access via Central Admin, I get this error No report servers were found on the specified machine.



I have created the sharepoint integrated databae via Reporting Services Config tool. Any ideas?



Thanks,

Erik

View 1 Replies View Related

Report Manager Execution Cannot Be Found

Feb 6, 2008

Hello.
Every time we try to view reports using Report Manager this error (
Execution 'kj1mek55bmhvft55cihmeb55' cannot be found) is occured. However, we can view reports using ReportViewer control from VS2005 and subscriptions works properly (without this error).


We are using integrated security to login to Report Manager.
Configuration: SQL Server 2005, SSRS 2005 SP1, Windows 2003, IIS 6.0
How can we fix it?
Please let me know if you need any additional information.
Thanks.

View 4 Replies View Related

How To Include A Express 2005 Database In A Setup

Jan 14, 2007

How can i include a express 2005 database in a setup? My program is a single user program, and i want express 2005 and the database to be installed on the users computer, when they install my program.

I am using Vb.net Visual Studio 2005, and i am using the 'Setup and deployment' template to create the setup.

Kindly Peer

View 6 Replies View Related

User Database Missen In Sysdatabase Entries

Feb 21, 2001

Hi everyone,

I just found out that one of my user database was missen from the sysdatabases entries. The database was missen from the EM and I queried the sysdatabases table but found nothing. The data and log files are intact in the hard drive directory.
Is this a bug or what?

Osas

View 1 Replies View Related

Multiple Starting Up Database Log Entries??? SQL 2000

Nov 20, 2001

The log for our SQL 2000 database shows constant "starting up database dbname" entires. Is there a option that causes the databases to constantly be starting or is this a new feature of SQL 2000.

View 1 Replies View Related

Query Highest Entries From Database - Pls Read More.....

Feb 6, 2006

Hi folks, sorry for the poor explanation.

Im using SQL 2000

I have a database that has a column named 'Initials' in a char in field

I want to be able to return in a query the highest entries if an indiviuals initials & count from the table, so it would display some like this

Initials Count
DRT 51
AMS 49
JJJ 21
PLI 10

Hope u can help, thanks in advance

View 2 Replies View Related

Sqldatasource Querystrings Report Rows Found?

Jan 15, 2008

I current have a SqlDataSource with a querystring that uses the following code:<asp:SqlDataSource ID="SearchQuery" runat="server" ConnectionString="<%$ ConnectionStrings:Connect %>"        SelectCommand="SELECT Title, ArticleID, REPLACE(SUBSTRING(Article,0,250), '<br />', ' ')AS Article FROM [Articles] WHERE FREETEXT([Article], @q)">        <SelectParameters>            <asp:QueryStringParameter Name="q" QueryStringField="q" DefaultValue="*" Type="String" />        </SelectParameters>    </asp:SqlDataSource>The string works fine, however is there a way to show how many results where found? Also is there are no results found, can I have it report that as well? Thanks!  

View 5 Replies View Related

Error: No Report Servers Were Found On The Specified Machine

Feb 28, 2006

Error: "no report servers were found on the specified machine"

I get this error when launching the Reporting Services Configuration Manager...I've never seen this error, usually it can talk to my local servername but unfortunately it's not. This is a new test server and the first time I've come across this message after setting up Reporting services on 2 machines sucessfully in the past.

View 5 Replies View Related

VS2003 - Deploying Reports - No Report Server Was Found At

Oct 19, 2006

Hi all,

We have many domain users who develop/deploy reports using VS2003 to our remote server at https://server/reportserver with no problems at all.

A single workstation on the domain that been used to develop reports cannot deploy though. The message looks fairly simple to diagnose "no report server was found at https://server/reportserver". I have checked dns and the servername resolves no problem. I have manaully edited and added the server to the hosts file also. I have updated and service packed all VS elements (VS2003 7.1.6030).

The server is contactable in all ways on this workstation, all ip/dns settings are the same as other domain workstations.

Can anyone point me in the direction of log files to look at, or if i am missing any basic options in VS. I have checked all deployment settings from other workstations.



Many Thanks!

Alex

View 4 Replies View Related

DB Engine :: Error - Report Execution Has Expired Or Cannot Be Found

Sep 22, 2010

I am running a huge SSRS 2008 report and it gets rendered sometimes and sometimes it gives me an error,"The report execution has expired or cannot be found. (rsExecutionNotFound)”.

When I see SQL Server log after this issue comes I see following message there; "A significant part of sql server memory has been paged out. This may result in performance degradation. Duration: 300 seconds. Working set(KB): 97672, memory utilization 42%" .what is the issue and how to fix it.

View 21 Replies View Related

Delete Duplicate Entries From Tables In My Database Using Query Analyzer

Jun 25, 2004

Hello,

How can I delete duplicate entries from tables in my database using Query Analyzer, as there are many duplicate entries in my tables, I want to delete them.

Thanks in advance,
Uday.

View 4 Replies View Related

The Report Services Instance Could Not Be Found (Microsoft.SqlServer.Management.UI.RSClient)

Feb 29, 2008

Hi all,


i need some help here.
1)i get this message when i tyr to connect to reporting Service in the SQL 2005 Management Studio
2) it seems like the permissions i set in the webiste http://sqlserver/reports (Report Manager) are not active...regular domain user to which i granted browser permissions to specific folder can brwose everything.
3) im not quite sure here, im not having a service labeled like Report& | $ Service . Some people say it must be in there...u know with the ampersand in the name of the service...im confused


setup: 2003 Server R2, Active Directiry, SQL2005 STD

thx in advance for clarifying

bet tom

View 2 Replies View Related

SSRS Report Viewer Execution ' ' Cannot Be Found (rsExecutionNotFound) Reserved.ReportViewerWebControl.axd

Nov 19, 2007

Re: SSRS report viewer Execution ' ' cannot be found
(rsExecutionNotFound) Reserved.ReportViewerWebControl.axd



Every now and then, my users get this error while in the Reportviewer.


Usually, they have to close the window where the report was rendered
and pull it open again. Attempting to open the report again does not
work.


What is this?


I run the report viewer like this:


<rsweb:ReportViewer BackColor="Transparent" ZoomMode="Percent"
width="100%" ProcessingMode="Remote" ID="ReportViewer1"
runat="server">
<ServerReport ReportPath="/myfolder/myreport"
ReportServerUrl="http://myserverr/reportserver" />
</rsweb:ReportViewer>


In my web config:


<compilation debug="true" strict="false" explicit="true">
<assemblies>
<add assembly="System.Data.OracleClient, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
<add assembly="Microsoft.ReportViewer.Common, Version=8.0.0.0,
Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
<add assembly="Microsoft.ReportViewer.WebForms, Version=8.0.0.0,
Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
</assemblies>
<buildProviders>
<add extension=".rdlc" type="Microsoft.Reporting.RdlBuildProvider,
Microsoft.ReportViewer.Common, Version=8.0.0.0, Culture=neutral,
PublicKeyToken=b03f5f7f11d50a3a"/>
</buildProviders>
</compilation>


<httpHandlers>
<add path="Reserved.ReportViewerWebControl.axd" verb="*"
type="Microsoft.Reporting.WebForms.HttpHandler,
Microsoft.ReportViewer.WebForms, Version=8.0.0.0, Culture=neutral,
PublicKeyToken=b03f5f7f11d50a3a" validate="false"/>
</httpHandlers>


Thanks for any help or information.

View 1 Replies View Related

Manage A Data Source For A Report Found In A SharePoint Document Library

Jan 18, 2007

I was working for 2 days on integrating reporting services with MOSS 2007.



The problem i faces was to create a data source for the
uploaded report (Not created using a wizard ) that will connect
me to the SQL server.



As i clicked on the arrow near the uploaded report to manage the data source, i found no

data source for this item.



I would be pleased to know the howto create this data source and where.



Best Regards,



Lana

View 4 Replies View Related

Getting Report Server WMI Provider Error: Not Found While Configuring Reporting Sevices Integration WSS 3.0 And Sql 2005

Jan 29, 2007

I'm Getting "Report Server WMI Provider error: Not Found" when trying to Grant Database Access while configuring the Reporting Sevices Integration. Logging in fine to the DB. Tried all the WMI troublshooting and can't find any issues there. Any tips?



Many Thanks!!

View 10 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved