Missing Entry In Report Generated By SP_MAKEWEBTAS

Dec 28, 2006

I'm trying to create a .htm file (a report from query results) on a webserver using SQL code.

TBL_LOGGEDIN_USERS_PERHOUR has just two columns. It gives the number of users logging in for hour.

HOURdatetime
NUMBER_OF_USERSsmallint

HOURNUMBER_OF_USERS
2006-12-28 15:00:00.000 15
2006-12-28 14:00:00.000 29
2006-12-28 13:00:00.000 30
2006-12-28 12:00:00.000 23
2006-12-28 11:00:00.000 23
2006-12-28 10:00:00.000 21
2006-12-28 09:00:00.000 31
2006-12-28 08:00:00.000 30

This is the actual code which generates one .htm file every 24 hours with the count of hourly logins. So the entries (as per the below logic) start at 12:00 AM everyday and end at 11:00 PM. The catch is - the entries come up fine upto 10:00 PM. The '11:00 PM entry' is missing in all the .htm files. I tried several options and later, I 'force added' an ELSE IF condition especially for the 11:00 PM case, indicated in the code below but it doesn't seem to help...
Also, I'm not really sure if this is a row limitation in the .htm file - like x no: of rows per .htm file.

Am I missing something here?.. Please advise. Let me know if I'm not clear. Thank you.

CREATE PROC CONDOR_CLIENT_LOGINS_PERHOUR
AS
BEGIN

IF EXISTS (SELECT * FROM DBO.SYSOBJECTS WHERE ID = OBJECT_ID(N'[DBO].[TBL_CUSTOM_LOGINSPERHOUR]')
AND OBJECTPROPERTY(ID, N'ISUSERTABLE') = 1)
DROP TABLE [DBO].[TBL_CUSTOM_LOGINSPERHOUR]

CREATE TABLE [DBO].[TBL_CUSTOM_LOGINSPERHOUR] (
ROW1 NVARCHAR (30),
ROW2 NVARCHAR(30)
) ON [PRIMARY]

DECLARE @FLAG SMALLINT
DECLARE @REPFLAG SMALLINT
SET @FLAG = 0
SET @REPFLAG = 0

IF DATEPART(HH,GETDATE()) = 0
BEGIN

SELECT CONVERT(NVARCHAR,HOUR,100)AS [ROW1],
CONVERT(NVARCHAR,NUMBER_OF_USERS) AS [ROW2] INTO #TEMP_LOGINSPERHOUR1 FROM TBL_LOGGEDIN_USERS_PERHOUR
WITH (NOLOCK)
WHERE HOUR = DATEADD(DAY,(DATEDIFF(DAY,0,GETDATE())),0)
ORDER BY HOUR
SET @FLAG = 1

END
-- this is added for 11:00 PM entry START

ELSE IF DATEPART(HH,GETDATE()) = 23
BEGIN

SELECT CONVERT(NVARCHAR,HOUR,100)AS [ROW1],
CONVERT(NVARCHAR,NUMBER_OF_USERS) AS [ROW2] INTO #TEMP_LOGINSPERHOUR2 FROM TBL_LOGGEDIN_USERS_PERHOUR
WITH (NOLOCK)
WHERE HOUR >= DATEADD(DAY,(DATEDIFF(DAY,0,GETDATE())),0)
ORDER BY HOUR
SET @FLAG = 2

END

-- the above is added for 11:00 PM entry END

ELSE
BEGIN

SELECT CONVERT(NVARCHAR,HOUR,100)AS [ROW1],
CONVERT(NVARCHAR,NUMBER_OF_USERS) AS [ROW2] INTO #TEMP_LOGINSPERHOUR3 FROM TBL_LOGGEDIN_USERS_PERHOUR
WITH (NOLOCK)
WHERE HOUR >= DATEADD(DAY,(DATEDIFF(DAY,0,GETDATE())),0)
ORDER BY HOUR

END

INSERT INTO TBL_CUSTOM_LOGINSPERHOUR
SELECT 'HOUR', 'NUMBER OF CLIENT LOGINS'
UNION ALL
SELECT '' , ''
UNION ALL
SELECT '' , ''

IF @FLAG = 1
BEGIN
INSERT INTO TBL_CUSTOM_LOGINSPERHOUR
SELECT * FROM #TEMP_LOGINSPERHOUR1
SET @REPFLAG = 1
END
ELSE IF @FLAG = 2
BEGIN
INSERT INTO TBL_CUSTOM_LOGINSPERHOUR
SELECT * FROM #TEMP_LOGINSPERHOUR2
SET @REPFLAG = 2
END
ELSE
BEGIN
INSERT INTO TBL_CUSTOM_LOGINSPERHOUR
SELECT * FROM #TEMP_LOGINSPERHOUR3
END
SELECT '' , ''
UNION ALL
SELECT '' , ''

DECLARE @REPPATH AS NVARCHAR(50)

SET @REPPATH = '\TKESTIIS5LOGINSPERHOUR' + REPLACE(CONVERT(NVARCHAR(10), GETDATE(), 101),'/', '') + '.HTM'
EXEC SP_MAKEWEBTASK @REPPATH , 'SELECT * FROM TBL_CUSTOM_LOGINSPERHOUR' ,
@COLHEADERS = 0 , @RESULTSTITLE = 'Client Logins Per Hour Report',
@WEBPAGETITLE = 'Client Logins Per Hour Report' ,@LASTUPDATED = 1

DROP TABLE TBL_CUSTOM_LOGINSPERHOUR

IF @REPFLAG = 1
DROP TABLE #TEMP_LOGINSPERHOUR1
ELSE IF @REPFLAG = 2
DROP TABLE #TEMP_LOGINSPERHOUR2
ELSE
DROP TABLE #TEMP_LOGINSPERHOUR3

END

View 6 Replies


ADVERTISEMENT

SQL Server Admin 2014 :: Unattended Upgrade Fails On Missing Registry Entry?

Jun 23, 2015

I'm trying to do an unattended upgrade of 2014 RTM to 2014 SP1.

It's my first attempt at an upgrade configuration file, and its failing with missing registry entry for database engine service and replication service.

Error in summary.txt is:

The registry key SOFTWAREMicrosoftMicrosoft SQL ServerMSSQL12.MSSQLSERVER2495Setup is missing

That's a valid error, as the registry only has an entry for:

HKEY_LOCAL_MACHINESOFTWAREMicrosoftMicrosoft SQL ServerMSSQL12.MSSQLSERVERSetup

Am I missing something obvious here, or how can this be resolved?

View 9 Replies View Related

Unable To Re-create Snapshot Of Existing Publication Due To Missing Publisher's Identity Range Allocation Entry

Jul 21, 2006

I re-created a publication that was having problems and it gives this error when I start the snapshot agent from SQL Server Management Studio:  I am stuck on how to resolve - any ideas?

"The publisher's identity range allocation entry could not be found in MSmerge_identity_range table.  Transaction count after EXECUTE indicates that a commit or ROLLBACK TRANSACTION statement is missing.  Previous Count = 1, current count = 2."

select * from MSmerge_identity_range returns 19 entries but I don't know how to fix. 

I have tried deleting and re-creating but always get this error.

My other publications and subscriptions are working fine and I was able to create a new test publication that worked but can not get this one to work that worked fine up until today. 

 Any ideas?

 

View 2 Replies View Related

Problem Writing A Report On A Generated Report Model

Apr 26, 2006

I get this error message:

Semantic query execution failed.
The 'PerspectiveID' custom property for the 'query' perspective is either not set or is not set to the string data type.

The report model does have a perspective.

Anyone else seen this?

View 9 Replies View Related

Report Is Being Generated

Aug 28, 2007

Hi
I have a windows application. I am using following code right after setting the LocalReport ReportPath. Report rendering is too slow if use following line of code and Report viewer does not show spiny and the text that says €śReport is being generated.€?

Me.ReportViewer1.SetDisplayMode(DisplayMode.PrintLayout)
Me.ReportViewer1.ZoomMode = ZoomMode.Percent
Me.ReportViewer1.ZoomPercent = 80

Please advise how can make it fast and show spiny.

Thanks in advance.

View 8 Replies View Related

Report Is Being Generated But Never Does...

Aug 17, 2006

I have created a report and deployed it successfully to a seperate machine with SSRS on. Both my dev machine and the SSRS machine are in the same workgroup. I can then Browse to the Report Manager though IE and click & run the report (The connection is using integrated security). The report requires a single parameter to be entered which once done works successfully. The report has a single table, an inbedded image and a few static fields in the report header.

If I however add a report viewer control to an aspx test form all is not well. As soon as the page opens I am prompted to enter the parameter which is good news as it shows there has been some communication with the SSRS metabase. I then click the view report button. Using Profiler I have proved that the report Stored Proc. is running with the correct parameter value. The report viewer however seems to hang and only displays "Report is being generated" without displaying the results. It does this even with a timeout set of 1000ms.

I don't think this is a security issue as both the Report Manager works and the test form prompts me for the parameter and effectively runs the report SP. I can only assume it is a problem with returning the report to the browser.

Does anyone have any insight?

Regards

Anthony Kay

View 3 Replies View Related

My Report Can't Be Generated

Jan 16, 2008



Hi,

I have a report which doesn't work. It has a datatset based on a store procedure. The store-procedure take 10 to 50 second to execute, depending on the parameters.

But, I can't never see my report as i wait more than 10 minutes and it's never generated.

So, I have think that maybe it could be because of the matrix inside the report, so I have try to create another report which have the same dataset but with nothing inside, just a textbox, and it doesn't work too !!
So now, i'm very disapointed and I don't know what to do !
Someone can help me please ? It's very important.

Thank you.

View 2 Replies View Related

Basic Report && Report Is Being Generated

Mar 6, 2007

I followed the tutorial http://msdn2.microsoft.com/en-us/library/ms167305.aspx with no problem but when I tried to preview the report the green circle just kept spinning and spinning.

I'm able to execute the command under the data tab with no problems. I'm able to view built in reports for SQL Server 2005. I've tried restarting Visual Studio and the entire PC but the report will still no generate.

Thoughts or ideas about what my problem is?

SQL Server 2005 SP1

Thanks,
Mike

View 3 Replies View Related

Report Being Generated Never Shows Second Report

Feb 23, 2007

 

I have a VS2005 Windows application that displays a reportviewer (SQL 2005) report in a tab control, then displays a second report in a second tab with reportviewer, and so on.  The really strange thing is that I had this application working for about 3 months.  I even had up to 30 reports in 30 tabs at one point.  BUT, for some reason now all I get is the first report and the second, third, etc. tabs show a reportviewer with "Report being generated" that never displays the report.  Even worse, another user is able to run this application and DOES get all the reports displayed.  So what could have been updated on my PC that is causing this problem?

 

Thanks in advance.

View 4 Replies View Related

Parameter Entry On A Report

Sep 6, 2007

I'm trying to graduate from Access to SQL and am finding that Access is still meeting my needs better than SQL.

So, I figure I'm doing something wrong.

In Access, I have queries that contain parameters. So far, I've gotten SQL to accept parameters, using =@prompt. But, this seems to be a limited parameter capability. Number one, I can't use a phrase for a prompt. Number 2, I can't do something like Access' Between [upper] And [lower]; I've not found away to use parameters as bounds in SQL.

Any help?

View 5 Replies View Related

Reposition Report Is Being Generated GIF

Feb 14, 2007

Is it possible to reposition the "Report is being generated" graphic?

 

I have most of my reports set to 1000 px by 1000 px which forces the graphic off of the screen. I would like to be able to see it without having to scroll to it.

 

Also, is there any way to change the properties of that image? I would think a progress bar that actually showed how far along the report was before completion would be better.

View 4 Replies View Related

Change Report Is Being Generated

Feb 20, 2006

Hello,

I develop some application using SQL Server Reporting Services 2005 to Russian customers. They usually don't know English well. That's why I really want to change phrase "Report is being generated" to Russian words.
How can I do it? I tried to fing this phrase in configuration files or registry but there wasn't success.

Thank you,

View 17 Replies View Related

Remove Report Is Being Generated

Mar 13, 2008



Hi,

I want to remove default animated gif report is being generated, how can i achieve it when i upload the rdl to share point, Need to remove actions and print option avialble when i upload my rdl to share point.



Regards,
Navin

View 1 Replies View Related

Passing Parameters To RDL Generated Report

Jul 3, 2007

Code Snippet

' DataSet element

writer.WriteStartElement("DataSets")

writer.WriteStartElement("DataSet")

writer.WriteAttributeString("Name", Nothing, "DataSet1")

' Query element

writer.WriteStartElement("Query")

writer.WriteElementString("DataSourceName", "DataSource1")

writer.WriteElementString("CommandType", "Text")

writer.WriteElementString("CommandText", m_commandText)

writer.WriteElementString("Timeout", "30")

writer.WriteEndElement() ' Query

writer.WriteStartElement("Parameters")

writer.WriteStartElement("Parameter")

writer.WriteAttributeString("Name", Nothing, "GlLayoutNo")

writer.WriteEndElement() ' Parameter

writer.WriteEndElement() ' Parameters



' Fields elements

writer.WriteStartElement("Fields")

Dim fieldName As String

For Each fieldName In m_fields

writer.WriteStartElement("Field")

writer.WriteAttributeString("Name", Nothing, fieldName)

writer.WriteElementString("DataField", Nothing, fieldName)

writer.WriteEndElement() ' Field

Next fieldName



' End previous elements

writer.WriteEndElement() ' Fields

writer.WriteEndElement() ' DataSet

writer.WriteEndElement() ' DataSets



In the above code, the XML parser does not understand the Parameters element. I've also tried ReportParameters as the name of the element. I don't seem to understand why, because in the SQL data tab, Parameters is a subelement of DataSet. Why am I getting this error and how do I programmatically specify that I want a report created on the fly to have parameters?



Deserialization failed: The element 'DataSet' in namespace 'http://schemas.microsoft.com/sqlserver/reporting/2005/01/reportdefinition' has invalid child element 'Parameters' in namespace 'http://schemas.microsoft.com/sqlserver/reporting/2005/01/reportdefinition'. List of possible elements expected: 'http://schemas.microsoft.com/sqlserver/reporting/2005/01/reportdefinition:Fields http://schemas.microsoft.com/sqlserver/reporting/2005/01/reportdefinition:Query http://schemas.microsoft.com/sqlserver/reporting/2005/01/reportdefinition:CaseSensitivity http://schemas.microsoft.com/sqlserver/reporting/2005/01/reportdefinition:Collation http://schemas.microsoft.com/sqlserver/reporting/2005/01/reportdefinition:AccentSensitivity http://schemas.microsoft.com/sqlserver/reporting/2005/01/reportdefinition:KanatypeSensitivity http://schemas.microsoft.com/sqlserver/reporting/2005/01/reportdefinition:WidthSensitivity http://schemas.microsoft.com/sqlserver/reporting/2005/01/reportdefinition:Filters ##other:*'. Line 21, position 8.

View 1 Replies View Related

SSRS (SQL Server Reporting Services) : Issue Navigating From Report To Report: Parameter Is Missing A Value

Sep 5, 2007

Hi,
I'm having problems navigating from one report to another one if the second report has a multi-valued report parameter. When I navigate to the second report, I don't pass any parameters, but I get an error "parameter is missing a value" for the multi-valued report parameter. I have it setup as allow "multi-value" and "blank value". Any idea what the issue might be?
Thanks.

View 3 Replies View Related

Perspectives In Report Models Generated For SSAS Cubes Not Working

Apr 16, 2007

I never got an answer on this so I am reposting this issue. Also, please note that I have consistently reproduced this issue on multiple perspectives within and accross multiple cubes on 3 different SQL Server Instances. I have also had no problem with perspectives within Report Models that were not generated from an SSAS Cube.



Specifics:

=========

I have created a simple cube in BI Studio against an Oracle Relational Data Warehouse. In this cube I have created a perspective in which I have selected (included) only a small subset of measures and dimension. When I view this perspective on the Browse Tab of BI Studio, only the entities that were included in the perspective were available for report construction as was expected.

Next, I generated a model for this cube in Report Manager. Now here is the problem, I then opended the model in Report Builder and selected the same perspective from above, but all of the Entities in the cube were displayed including the fields I explicitely did not include in the perspective. I then looked at the .smdl file describing the Model and it looked like in the Perspective description section all of the cube's entities were included, even the ones that should not have been included. It seems as if the problem is ocurring durring the model generation. I also tried generating the model in Management Studio and it seems to be doing the same thing.

Any ideas on how to fix this? Could I be doing something wrong(probably)? I have to give a presentation soon and this is a big deal for the Project Stakeholders.

By the way, I am using the 180 Day Evaluation of Sql Server 2005 with SP2 CTP installed.



View 1 Replies View Related

Reporting Services :: How To Get Custom File Name In Manually Generated SSRS Report

Jul 9, 2013

I am creating a SSRS report which would be executed by User manually through ReportServer URL.User would be generating the SSRS report for different Customer ID based on ad-hoc basis.

I am passing CustomerID as input parameter to the report. Is there any way to get the manually generated SSRS report name as 'Report_CustomerID_TodayDate.xls'.

E.g.If User is generating report for Customer ID 123 today then report name should be 'Report_123_07092013.xls'

View 2 Replies View Related

Different Queries In Different Sheets Of The Same Excel Work Book For A Report Generated In SSRS 2005

Apr 23, 2008

i need to get the result of two different queries into 2 different sheets of the same excel file while exporting a report to excel using reporting services..

somebody please help

View 1 Replies View Related

Entity Framework: No Support For Server-generated Keys And Server-generated Values

May 23, 2008

Hello

I tried the Beta 1 of the service pack 1 to .net 3.5. If I try to add an entity (and try to save this), I get the Exception "No support for server-generated keys and server-generated values".

How can I add entities to my Sqlce- database?

I tried to give the id- column (primary key) in the database an identity, another time without identity, only primary key --> none of them worked. I always get the same error.

What do I have to change to make successfully a SaveChanges()?

Thanks for your help,
Gerald

View 21 Replies View Related

Records Missing For End Date In Report

Nov 3, 2006

hello friends..
i aleays facing this problem while reporting....

if i want to show report for date range then i am not getting records for end date...why???

my report query was

select distinct DwnDate,isnull(D.FileName,'No File Found'),isnull(H.File_ID,0),
isnull(C.DownLoadCatname,'No Category Found'),count(H.File_ID) AS TotalCount
from DownLoadHistory H inner join DownLoad D on H.File_ID = D.File_ID
inner join DownLoadCat C on D.File_Cat = C.DownLoad_CatID where File_DwnDate
between '10/01/2006' and '10/31/2006' group by D.File_Name,C.DownLoad_Catname,H.File_ID,File_DwnDate
order by 3

i am getting rows 15 here but when i fired this

select distinct DwnDate,isnull(D.FileName,'No File Found'),isnull(H.File_ID,0),
isnull(C.DownLoadCatname,'No Category Found'),count(H.File_ID) AS TotalCount
from DownLoadHistory H inner join DownLoad D on H.File_ID = D.File_ID
inner join DownLoadCat C on D.File_Cat = C.DownLoad_CatID where File_DwnDate
between '10/01/2006' and '11/01/2006' group by D.File_Name,C.DownLoad_Catname,H.File_ID,File_DwnDate
order by 3

then i am getting rows 16

previous one i always missed records on 10/31/2006...is there any solution or i always add one day to end date and then get values??

please help me out

Thanks

View 4 Replies View Related

Report Model Template Is Missing

Jul 26, 2007

I want to create a new report model project, however in VS Business intelligence Development Studio, I could find the report model template in the New project dialog box. Anyone coulf tell me how can I add the templeate? Thanks

View 1 Replies View Related

Jump To Report - Parameter Missing Value

Nov 30, 2007



Hello

I have set up a report with a field in a list as a link to another report . I am passing all the parameters in correctly (4 parameters : 1 from a field value and 3 from parameter values). When I run the report and click the link, it jumps to the other report but one parameter is missing a value - the parameter I got from the field value. I really don´t know why this is happening as it was working fine until I added another parameter to the reports and suddenly it doesn´t work anymore.

Is there a limit on the number of parameters I can pass or something?

Please help!

View 5 Replies View Related

REPORT Model - Missing Entity

Feb 1, 2008

Hi ,

I created 3 tables in SQL server magmt studio as

student - sno (pk), sname
subjects - subno(pk), subname
marks - sno(fk), subno(fk), marks

While creating the report model:

1.Created the data source - no problem
2. created the data source view - no problem added all 3 tables here.
3. created the report model - only subject and student show up here. Where is the marks table?


Please help


Regards,
Reshma

View 3 Replies View Related

Missing Elements In Report Manager

Nov 30, 2005

Has anyone run across this before? I'm missing the Contents and Properties tab along with the button bar containing the "New Folder", "New Data Source", "Upload File" and "Show Details" buttons in the Report Manager. Also, which I think may be related, when I attempt to deploy a report I get the error: "A connection could not be made to the report server http://MyServer/Reports.

View 4 Replies View Related

Report Model Missing Some Fields

Jan 3, 2007

I hope someone can clarify what I observe below.

When I add a certain Table into my report model, one of the fields is not automatically converted into an attribute, but I'm not sure what the exact pattern is.

This table has 3 fields as its key, two of them get included and one does not. The one that does not, is also added as a Role as it is used in a relationship within the DSV (Data Source View).

Does anyone know what rules BIS (Business Intelligence Studio) uses in deciding which fields to automatically convert using the wizard and which to skip?

Perhaps I'm doing something wrong, or there is a workaround?

If anyone can shed any light in the issue, I'd greatly appreciate their comment.

Thanks in advance and kindest regards

Craig

View 6 Replies View Related

Report Viewer Parameter Missing A Value

Mar 25, 2008



Hi,
I am using Microsoft.ReportViewer.WebForms ver 8.0 to display rdl reports in a web page. I'm using VS 2005 with service pack 1.
I set ReportServerCredentials using a custom class that implements IReportServerCredentials. It exposes NetworkCredentials using a valid admin user account. I am setting report parameters from code as:

ReportViewer1.ServerReport.SetParameters(parameters)

I find that when I run the page with reportserver credentials set, the parameters are not passed to the report and I get an error message, "Parameter, XXX is missing a value". I can see what parameters were sent by setting ShowParameterPrompts to True.
When I remove the credential settings,the parameter values do get set but the report throws the following error on execution:

Execution '2su5vg55juj253455rodai55' cannot be found
I have checked that my web project is using Kerberos authentication and not NTLM. Has anybody faced a problem like this? I would appreciate any help.
Thanks
Supriya

View 1 Replies View Related

Missing Data Set When Trying To View For A Finished Report

Mar 6, 2008



Hi All,
I have a solution which is synchronised with visualsourcesafe. Now there are some reports present in the solution, I am able to view the preview of the reports but when I am going to view the dataset definition It is not able to retain its defintion and its becoming blank but this happens to only datasets which were developed from cube and its able to retain dataset which are developed from Database.

Any help would be of great use.

Thanks in advance
Regards

View 1 Replies View Related

Images On HTML Report Subscription Missing

Nov 27, 2007

We've been struggling for 2 days to try and figure this out. We create a report with images, both in gif and jpg, and then setup a subscription. When the report is generated in both 5.0 and all browser format, no images appear, just the red cross. Funny thing is that in Firefow the same htm document renders OK. We tried setting the configuration table row UseSessionCookies to False as posted by others but this did not work. It seems so simple it's silly. What are we doing wrong? The image is set to embedded. Also the charts are not showing either.

Any help is MOST appreciated!!

BTW, in pdf and mhtml the images are fine

We do not have and _ in the the server name and we have SP2 also installed on a W2K3 server

View 1 Replies View Related

Missing Expansion Images On Matrix Report

Jun 14, 2007

I've created some Matrix reports which work just fine, I'm able to drill down and the expansion images(+/-) appear correctly.



However, after setting Role security on the folder containing the reports(this is an asp.net application), the reports still function but the images for the (+/-) are missing, just getting the missing image icon.



Any ideas?



Thanks, Burl

View 1 Replies View Related

Please Help Me 'DrillthroughSourceQuery' Parameter Is Missing A Value In Report Builder

May 30, 2007



Can u help to to solve my problem . Many time this question arised in the forum no one answer to me to find out the solution for my problem. So please help









I am using report builder thru LocalHostReport . I want a drill through report by using Report Builder and cube . I created the report but unfortunatly I cannot create a drill through report using parameters .How can I pass parameter in report1 to jump into report2 .



When I running the report after giving drill through properties in report the following error will occure.



'The 'DrillthroughSourceQuery' parameter is missing a value



How can I create a report using parameter for drill down in report builder







I am expecting one answer from u expertise

View 2 Replies View Related

Site Settings In Report Manager Missing

Nov 8, 2007

I want to be able to view site settings in Report Manager, but when I connect to http://localhost/Reports in the upper right all that is shown is:

Home | My Subscriptions | Help

Does anyone know how I can get Site Settings to be displayed?

Also I am using Windows Vista Ultimate & IE 7 - I run IE7 as Administrator

View 1 Replies View Related

Site Settings In Report Manager Missing

Nov 7, 2007

I want to be able to view site settings in Report Manager, but when I connect to http://localhost/Reports in the upper right all that is shown is:


Home | My Subscriptions | Help

Does anyone know how I can get Site Settings to be displayed? example -> site settings

View 8 Replies View Related

Reporting Services :: Report Designer Tool Box Items Missing

Aug 10, 2015

I have a project with SQL sever reports in it. During a test upon returning to the VS 2013 Professional interface, the tool box area still had the previous information displayed and never returned to what should be there for the report design tools.I restarted VS, and the toolbox no longer looked like it did before. Specifically, the datatable tool among others was missing. I was unable to "refresh" the datatable after making changes to it.

I opened other Reports in design mode, and the tools did not show up for those either.The Report Items in the toolbox does contain things like Pointer, Text Box, Line and so forth.

View 4 Replies View Related







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