.NET Error When Starting SSRS 2005
Mar 30, 2006
I installed SQL Server 2005 a while back and just tried to use the ReportServer recently and ran into a problem.
I tried accessing using http://babby/ReportServer (my report server and db server are both on 'babby') and got an ASP.NET runtime error (which wasn't displayed to me). So next I accessed locally at the server (babby) and got this error:
The current identity (NT AUTHORITYNETWORK SERVICE) does not have write access to 'C:WINDOWSMicrosoft.NETFrameworkv2.0.50727Temporary ASP.NET Files'.
I have done some searching on the Internet and there doesn't seem to be much info at all about SSRS 2005. I did found some MSDN info that suggested that NT AUTHORITYNETWORK SERVICE is the correct account to use when running SSRS under Win Server 2003 which I am.
'babby' is a Windows Server 2003 machine running IIS 6.0.
Any ideas?
View 1 Replies
ADVERTISEMENT
Jun 21, 2007
Hi ,
I am trying to connect to Reporting Services through SSMS using the following parameters:
Server_Type: Reporting Services
Server Name : <Server_Name>
Authentication: Windows Authentication
Got the following error message:
TITLE: Connect to Server
------------------------------
Cannot connect to <Server_Name>
------------------------------
ADDITIONAL INFORMATION:
Client found response content type of 'text/html', but expected 'text/xml'.
The request failed with the error message:
--
<html><head><title>Server Application Error</title></head>
<body>
<h1>Server Application Error</h1>The server has encountered an error while loading an application during the processing of your request.
Please refer to the event log for more detail information. Please contact the server administrator for assistance.</body></html>
--. (Microsoft.SqlServer.Management.UI.RSClient)
Any help would be deeply appreciated,
Thanks a lot for your Time,
Regards,
Sundar
View 6 Replies
View Related
Aug 17, 2006
Has anyone ever recieved an error when starting the Management Studio?
"Unhandled excpetion has occurred in a component in your application.
"Input String was not in a correct format"
I click continue and I can still use the manager;however, it gets annoying. The details of the error are very long and too much to add to this thread.
Any ideas?
View 2 Replies
View Related
May 11, 2007
As soon as a report is re-deployed a refresh of the report in the viewer shows the following error message:
An error has occurred during report processing. (rsProcessingAborted)
The data source 'xxx' cannot be found. (rsDataSourceNotFound)
This error occurs irrespective of electing to re-deploy or not re-deploy the datasource, and the only solution seems to be to close the report viewer down and restart it.
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.
How do I get around this error?
View 4 Replies
View Related
Jul 28, 2007
Hi,
I have created a cube with three dimensions and one fact. There is no problem While dragging the fields in the Browser window of the cube but the same fields dragging into the SSRS report i am getting the following message:
"The expression contains a function that cannot operate on a set with more than 4,294,967,296 tuples".
Can you please help me out.
Thanks
Dinesh
View 3 Replies
View Related
Apr 16, 2008
Hi All,
We are using the SSRS 2005 for developing reports. In that I have some problems/doubts.
My problems are:
I developed / designed the report using the SSRS 2005. And I uploaded the reports in to the report server. I can able to view the reports in the preview section as well thro the browser.
Problem 1:
Reports are having the huge amount of data (For: report is having > 800 Pages). So, when ever I am trying to export in to EXCEL that time I am getting MemoryOutOfException. If I having the less number of pages that time I getting the result. How I can export the report into excel with out MemoryOutOfException.
Problem 2:
Some Excel sheets are having more data for ex: 75000. In EXCEL it self we are having the limitation we can not create more than 65536 rows per sheet. So If I want to export these 75000 records into excel how I do it.
Problem 3:
For delivering the reports I am using file share subscription method in SSRS. For example my reports are having the huge amount of data. That time I getting the following status in report server Failure writing file Weekly Install Base Report @timestamp: An error occurred during rendering of the report.?"
Software Platform:
1. SQL Server Reporting Services 2005
2. SQL Server 2000 Data base
3. Microsoft Office 2003
Thanks
Sundaraguru S
View 4 Replies
View Related
Mar 7, 2008
Hi,
I am trying to schedule a report from Report Manager Interface (SSRS 2005) as below:
Scenario 1:
Start Date: GetDate() [today] e.g: 03/07/2008 (mm/dd/yyyy)
End Date: 31-dec-2009
Schedule: Monthly (Current Month) Days: [any day in the Current Month which is < getdate()] e.g: March 4th
Scenario 2:
Start Date: GetDate() [today] e.g: 03/07/2008 (mm/dd/yyyy)
End Date: 31-dec-2009
Schedule: Monthly (Less than Current Month) Days: [any day] e.g: Feb 12th
Scenario 3:
Start Date: GetDate() [today] e.g: 03/07/2008 (mm/dd/yyyy)
End Date: 31-dec-2009
Schedule: Monthly (Grater than Current Month) Days: [any day] e.g: May 10th
In all the above scenarios we observed a strange behavior of SSRS.
Scenario 1: Report is scheduled on 4th April 2008 where as it should be 4th March 2009.
Scenario 2: Report is scheduled on 12th Feb 2009 as expected.
Scenario 3: Report is scheduled on 10th May 2009 as expected.
Now, we changed the end date (31st Dec 2008) of scenario 1 as below:
Scenario 1:
Start Date: GetDate() [today] e.g: 03/07/2008 (mm/dd/yyyy)
End Date: 31-dec-2008
Schedule: Monthly (Current Month) Days: [any day in the Current Month which is < getdate()] e.g: March 4th
The next execution date is again 4th April 2008, which is wrong.
After scheduling the above reports we executed the below query in the ReportServer DB (SQL Prompt)
SELECT S.ScheduleId AS ScheduleId
, S.LastRunTime AS LastRunTime
, JA.Next_Scheduled_Run_Date AS NextRunTime
, RecurrenceType = CASE S.RecurrenceType
WHEN 1 THEN 'Once'
WHEN 2 THEN 'Hourly'
WHEN 3 THEN 'Daily'
WHEN 4 THEN 'Weekly'
WHEN 5 THEN 'Monthly'
WHEN 6 THEN 'Monthly'
END
FROM ReportServer.dbo.Schedule S WITH (NOLOCK)
Inner Join (
select j.name,max(ja.next_scheduled_run_date) as next_scheduled_run_date
from MSDB.dbo.SysJobActivity as ja WITH (NOLOCK)
inner join MSDB.dbo.SysJobs j WITH (NOLOCK) on ja.Job_ID = j.Job_ID
where ja.next_scheduled_run_date is not null and ja.next_scheduled_run_date >= Getdate()
group by j.name
) as JA on convert(nvarchar(256),S.ScheduleId) = convert(nvarchar(256),JA.name)
Where JA.name = (select top 1 name from msdb.dbo.sysJobs order by Date_Created desc )
-- Where JA.name in (select top 10 name from msdb.dbo.sysJobs order by Date_Created desc )
We have tried the same scenarios using the SSRS APIs. But unfortunately we received the same results.
Did anyone face this type of issue in past?
Is this a SSRS BUG or are we missing any point?
View 2 Replies
View Related
Sep 26, 2007
Hi,
I am successfully installed SSRS 2005 in my PC winxp sp2.
BUt while trying to configure database (Previous 5 steps are green) i get the following error.
The feature: "Using other editions of SQL Server for report data sources and/or the report server database" is not supported in this edition of Reporting Services
my database version
Microsoft SQL Server 2005 - 9.00.1399.06 (Intel X86) Oct 14 2005 00:33:37 Copyright (c) 1988-2005 Microsoft Corporation Express Edition on Windows NT 5.1 (Build 2600: Service Pack 2)
my reporting services version
ReportingServicesService!resourceutilities!9!9/26/2007-08:57:28:: i INFO: Reporting Services starting SKU: Standard
thank you in advance for any pointers.
regards
sahridhayan
View 1 Replies
View Related
Oct 18, 2006
When trying to open the reports server \servername
eports we are getting an error page titled "Server Error in '/Reports' Application." The server has been restarted, and as this is a new deployment, there has been very little access for individuals to make changes.
Any ideas on how to resolve the problem?
Thanks in advace
View 11 Replies
View Related
Jul 26, 2006
I am getting an error: "Damage to the file was so extensive that repairs were
not possible. Excel attemted to recover your formulas and values, but
some data may have been lost or corrupted." in some instances when
exporting toexcel.
The report is no different than any othere report. This report uses rectagles and text boxes to control layout with two tables but it's pretty straight forward. This only happens for this particular report when exported only to Excel. I am using SQL2005 SP1.
Any ideas, thoughts, or references are welcome.
View 2 Replies
View Related
May 18, 2007
Hello,
I had created a windows service using C#. I set its Startup Type as Automatic but it is not getting started automatically when my System Starts.
View 3 Replies
View Related
Jun 22, 2007
We are using RS2005 for a year now and never had any problems especially with mail subscriptions.
Since we transferred from single RS machine to web farm everything works ok except mail subscriptions. Subscription sometimes (?!?!?!?!) refuse to export report to a document of any kind. I repeat that this is a random thing which is more often with PDF and less with Web Archive or Excel. We are using shared schedules and on demand execution of AddEvent stored procedure by night batches to send mail to users. Also, original error from RS log says something that this kind of operation is not supported for server working in native mode. We don't have SharePoint so we never used it in any other way then native mode and it worked.
Any idea will be appreciated!
Thanks in advance.
Update 26.06.2007
It seems that problem is not loading dll used to export report to a file but loading email subscription extension (dll that needs to be loaded for execution of email subscription.)
Original error from RS Log:
w3wp!library!1!06/22/2007-11:06:43:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.OperationNotSupportedNativeModeException: The operation is not supported on a report server that runs in native mode., ;
Info: Microsoft.ReportingServices.Diagnostics.Utilities.OperationNotSupportedNativeModeException: The operation is not supported on a report server that runs in native mode.
w3wp!extensionfactory!1!06/22/2007-11:06:43:: e ERROR: Exception caught instantiating Report Server DocumentLibrary report server extension: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.TypeInitializationException: The type initializer for 'Microsoft.ReportingServices.SharePoint.SharePointDeliveryExtension.DocumentLibraryProvider' threw an exception. ---> Microsoft.ReportingServices.Diagnostics.Utilities.OperationNotSupportedNativeModeException: The operation is not supported on a report server that runs in native mode.
--- End of inner exception stack trace ---
--- End of inner exception stack trace ---
at System.RuntimeTypeHandle.CreateInstance(RuntimeType type, Boolean publicOnly, Boolean noCheck, Boolean& canBeCached, RuntimeMethodHandle& ctor, Boolean& bNeedSecurityCheck)
at System.RuntimeType.CreateInstanceSlow(Boolean publicOnly, Boolean fillCache)
at System.RuntimeType.CreateInstanceImpl(Boolean publicOnly, Boolean skipVisibilityChecks, Boolean fillCache)
at System.Activator.CreateInstance(Type type, Boolean nonPublic)
at System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
at System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
at Microsoft.ReportingServices.Diagnostics.ExtensionClassFactory.CreateExtensionObject(Extension extConfig).
View 6 Replies
View Related
Apr 30, 2007
Hello Friends,
I have created few reports in SSRS 2005 on Windows 2003 Standard. Previouly I was not able to view reports from my .ASPX page which contained a ReportViewer, after going throuhg some other threads I was able to create a snap-shot for my reports . But still I'm not able to view reports, each time I try to view the page I get a message box with a error as : "Unable to locate control SSRS 2005: oReportCell" the same error is displayed when i try to access my reports from "http://localhost/reports.....".
But the funny thing is I'm able to view the reports when I use the following URL: "http://localhost/reportserver/pages/reportviewer.aspx?/<report>". I have applied all the Hotfixes & installed the latest Service packs. Any suggestions ???????
View 1 Replies
View Related
Jan 8, 2008
sql server 2005 is installed but some how the link in the programs group has been deleted.
i want start sql server 2005 from cmd prompt or by any other way
please let me know
View 3 Replies
View Related
Jan 28, 2007
Where to start.
I have my 2005 CD ready and server.
So i will install 2005.
How do i start migrating SQL 2000 to SQL 2005 (on our SQL 2000 some of the databases cannot be converted to 2005 as the vendor is not ready.
Is there a way to do each database one by one.....(If so if anyone got any recommendations on how to start this i appreciated it).
Thanks
View 1 Replies
View Related
Feb 25, 2008
Hi everyone.
I have a pc running as an SQL Server 2005 express server. Last week, the RAID 1 array failed for some reason, both HD still work correctly and the raid utility simply mirrored everything back.
So after starting this pc the day after, SQL server stopped working. This is the error log:
Code Snippet
2008-02-19 17:37:20.50 Server Microsoft SQL Server 2005 - 9.00.2047.00 (Intel X86)
Apr 14 2006 01:12:25
Copyright (c) 1988-2005 Microsoft Corporation
Express Edition with Advanced Services on Windows NT 5.1 (Build 2600: Service Pack 2)
2008-02-19 17:37:20.50 Server (c) 2005 Microsoft Corporation.
2008-02-19 17:37:20.50 Server All rights reserved.
2008-02-19 17:37:20.50 Server Server process ID is 2676.
2008-02-19 17:37:20.50 Server Logging SQL Server messages in file 'c:Archivos de programaMicrosoft SQL ServerMSSQL.1MSSQLLOGERRORLOG'.
2008-02-19 17:37:20.50 Server This instance of SQL Server last reported using a process ID of 2968 at 19/02/2008 17:26:54 (local) 19/02/2008 23:26:54 (UTC). This is an informational message only; no user action is required.
2008-02-19 17:37:20.50 Server Registry startup parameters:
2008-02-19 17:37:20.50 Server -d c:Archivos de programaMicrosoft SQL ServerMSSQL.1MSSQLDATAmaster.mdf
2008-02-19 17:37:20.50 Server -e c:Archivos de programaMicrosoft SQL ServerMSSQL.1MSSQLLOGERRORLOG
2008-02-19 17:37:20.50 Server -l c:Archivos de programaMicrosoft SQL ServerMSSQL.1MSSQLDATAmastlog.ldf
2008-02-19 17:37:20.53 Server SQL Server is starting at normal priority base (=7). This is an informational message only. No user action is required.
2008-02-19 17:37:20.53 Server Detected 2 CPUs. This is an informational message; no user action is required.
2008-02-19 17:37:21.20 Server Using dynamic lock allocation. Initial allocation of 2500 Lock blocks and 5000 Lock Owner blocks per node. This is an informational message only. No user action is required.
2008-02-19 17:37:21.26 Server Database mirroring has been enabled on this instance of SQL Server.
2008-02-19 17:37:21.26 spid5s Starting up database 'master'.
2008-02-19 17:37:21.42 spid5s SQL Trace ID 1 was started by login "sa".
2008-02-19 17:37:21.46 spid5s Starting up database 'mssqlsystemresource'.
2008-02-19 17:37:21.51 spid5s The resource database build version is 9.00.2047. This is an informational message only. No user action is required.
2008-02-19 17:37:21.57 spid5s Error: 9004, Severity: 21, State: 1.
2008-02-19 17:37:21.57 spid5s An error occurred while processing the log for database 'mssqlsystemresource'. If possible, restore from backup. If a backup is not available, it might be necessary to rebuild the log.
2008-02-19 17:37:21.57 spid5s Error: 945, Severity: 14, State: 2.
2008-02-19 17:37:21.57 spid5s Database 'mssqlsystemresource' cannot be opened due to inaccessible files or insufficient memory or disk space. See the SQL Server errorlog for details.
2008-02-19 17:37:21.57 spid5s SQL Trace was stopped due to server shutdown. Trace ID = '1'. This is an informational message only; no user action is required.
I have been reading in this forum and other places, but I've had no luck fixing this. I already backed up all the mdf database files and logs just in case. The mssqlsystemresource database and logs are in the same location, and they have read/write access.
Any help would be greatly appreciated
View 2 Replies
View Related
May 21, 2006
Hi
I want to start to use SQL Server 200 Express but have no idea where to enter the SQL queries and view the results.
I installed SQL Express and under Start > Programs > SQL Server 2005 I only have Configuration Tools which has Configuration Manager, Error and Usage Reporting and Surface Area Configuration.
SQL Server and SQL Server Browser Services are running but I have no clue of from to start creating my database, tables, etc etc.
I have a background of MySQL and used MySQL's command line tool and phpMyAdmin, so SQL is not a problem.
Thanks
View 5 Replies
View Related
Feb 1, 2007
When our rep distribution services time-out (several times a day) some dba's just restart the service while others restart the rep job which starts the service. Are there any differences between these two methods? Does restarting the service inherit any changes made to the job's attributes?
Thanks!
View 1 Replies
View Related
Dec 13, 2000
i get this error below my test box what does it mean ,and my server doesnt start and gives error when i restart services
00/12/08 13:31:37.83 kernel SQL Server is starting at priority class 'normal' with dataserver semaphore = 1 (1 CPU detected, SMPStat=0).
00/12/08 13:31:37.84 server LogLRU buffers: 0
00/12/08 13:31:37.84 kernel initdata: no memory for kernel locks
thanks for any advice
ram
View 1 Replies
View Related
Jun 5, 2002
Hi ,
Whenever I restart the Server , SQL server service is starting properly, but the agent is showing the green sign in EM ,agent Log also its showing its started. But in EM the jobs are not showing the next run time its showing ( Date and time not available). When I double click the jobs its showing the following error message
Micorsoft SQL - DMO ( ODBC Sql state 42000)
Error 14258 : can not perform this operation while SQL server agent is starting)
FYI :This server contain the databases of SMS too .
Thank you ,
Shaji
View 3 Replies
View Related
May 4, 2007
I am running windows 2003 and sql server 2005. i am following the directions in books online:
On the Start menu, point to All Programs, point to Microsoft SQL Server 2005, point to Configuration Tools, and then click SQL Server Configuration Manager.
In SQL Server Configuration Manager, expand Services, and then click SQL Agent.
In the results pane, right-click any instance, and then click Start.
A green arrow on the icon next to the SQL Server Agent and on the toolbar indicates that SQL Server Agent started successfully.
Click OK.
the problem is i have nothing in Services. there is nothing to expand.
is it installed wrong?? or is there another step before this that i have to do??
View 1 Replies
View Related
Oct 18, 2007
Hi! I am absolutely new in SQL! Pls help me answering some questions!
I have Microsoft VB Express Edition 2005.
So I created my Database1 and my own table Table1 ( by Add Item).
1)Now in "Show SQL Pane" I write my query.
When I write it with error - it is deleting (after Execute or Verify). So I must write it again! How can I save my query (error query!) for not writing it again?
2) After several tries I succeed to write query without mistake.
So I have a result ( Table2). Then I write another query and have Table3. How can I see my Table2 and IT'S QUERY???
Is there is a log option that can write all my queries and under every query - the result table in my session?
Thank u !
PS. Does Microsoft VB Express Edition 2005 contain SQL Server Management Studio?
View 4 Replies
View Related
May 8, 2008
Hi,
I've Configured the Mirroring using the two machines, I've checked up everything,creation of end points successfully on both the machines, databases are in full recovery mode as well.
while Start Mirroring i'm facing following error :
TITLE: Database Properties
------------------------------
An error occurred while starting mirroring.
------------------------------
ADDITIONAL INFORMATION:
Alter failed for Database 'MIS'. (Microsoft.SqlServer.Smo)
For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&ProdVer=9.00.1399.00&EvtSrc=Microsoft.SqlServer.Management.Smo.ExceptionTemplates.FailedOperationExceptionText&EvtID=Alter+Database&LinkId=20476
------------------------------
An exception occurred while executing a Transact-SQL statement or batch. (Microsoft.SqlServer.ConnectionInfo)
------------------------------
The server network address "TCP://DBD-P3-01047.macmill.com:5023" can not be reached or does not exist. Check the network address name and reissue the command. (Microsoft SQL Server, Error: 1418)
For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&ProdVer=09.00.1399&EvtSrc=MSSQLServer&EvtID=1418&LinkId=20476
------------------------------
BUTTONS:
OK
------------------------------
and when i'm using the following command :
ALTER DATABASE [mis] SET PARTNER =N'TCP://DBD-P3-01063.macmill.com:5022'
to start mirroring the following error has come up :
The partner server instance name must be distinct from the server instance that manages the database.
The ALTER DATABASE SET PARTNER command failed.
How can i resolve this issue?Help is greatly appreciated!!!!
- Hitesh
View 8 Replies
View Related
Apr 24, 2007
Hi,
Does anyone know of a link or list that has all the parameters for the "rs:" section of the URL access parameter, except for the ones in the Microsoft books?
Thanks,
View 1 Replies
View Related
Oct 11, 2007
Service cannot be started. System.TypeInitializationException: The type initializer for 'Microsoft.ReportingServices.Library.Global' threw an exception. ---> System.Configuration.ConfigurationErrorsException: Configuration system failed to initialize ---> System.Configuration.ConfigurationErrorsException: This configuration section cannot be used at this path. This happens when the site administrator has locked access to this section using <location allowOverride="false"> from an inherited configuration file. (C:Program FilesMicrosoft SQL ServerMSSQL.3Reporting ServicesReportServerinReportingServicesService.exe.config line 5)
at System.Configuration.ConfigurationSchemaErrors.ThrowIfErrors(Boolean ignoreLocal)
at System.Configuration.BaseConfigurationRecord.ThrowIfParseErrors(ConfigurationSchemaErrors schemaErrors)
at System.Configuration.ClientConfigurationSystem.EnsureInit(String configKey)
--- End of inner exception stack trace ---
at System.Configuration.ClientConfigurationSystem.EnsureInit(String con...
For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
Any tips would hugely help. I checked this config file and have not seen this info in the file.
View 1 Replies
View Related
Sep 25, 2006
Hi,
Anybody kindly help me.
We have windows server 2000 and sql server 2005 on the same machine with 15 clients. There was a power failure. The sql server is automatically stopped. When we tried to start the service we are getting the error as action failed please check application event log for errors.
This has happened for the 2 times, kindly tell me why this happens and what precaution we can take and is there any setting we are missing. Since I am newbie to sql server and windows server I am unable to solve this problem.
Thanks
View 13 Replies
View Related
Oct 13, 2006
I am having a problem in the Business Intelligence Development Studio. When I add and try to edit a Script Task or a Script Component, I click on the Design Script button and get one of two errors. For the Script task I get an error that states:
Cannot show the editor for this task. (Microsoft Visual Studio)
For the Script component I get:
Cannot show Visual Studio for Applications editor. (Microsoft Visual Studio)
For some reason or another it just will not start Visual Studio for Applications. I have uninstalled an re-installed several times. I have also researched and discovered that there is a bug when C# tasks are include in the project. However, this is not the case. Please help!
View 24 Replies
View Related
Jan 9, 2008
Hi,
I am trying to start Sql server, anlysis services and other things through Configuration manager and iam getting time out error every time.
I was able to start and stop earlier. Please suggest a solution. I am using Sql server 2008 Nov CTP on XP machine.
View 9 Replies
View Related
Dec 11, 2006
I installed SQL Server 2005 Integration services on Windows XP machine. Then I went to the SQL Server Configuration Manager and tried to Start the SSIS service. The "Log On As" value is "NT AUTHORITYNetworkService". But I get the follwoing error:
The request failed or the service did not respond in a timely fashion. COnsult the event log or other applicable error logs for details.
Event Log details:
------------------
The SQL Server Integration Services service failed to start due to the following error:
The service did not respond to the start or control request in a timely fashion.
For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
I tried running the service using the "Local Service" and the "Local System" accounts also, but am still encountering the same error. What do I do...
View 2 Replies
View Related
Sep 12, 2007
Is it possible to write SSRS 2008 reports to run on an existing SSRS 2005 server?
If yes, what do I need to do to be able to write SSRS 2008 reports on my developer PC that will run on the SQL 2005 Server (which also has SSRS 2005 installed on it)?
I installed Visual Studio 2008 beta on the development PC and it appears that it needs SSRS installed on it too. So I installed SQL 2008 SSRS (SQL Server Reporting Services) and SQL 2008 Workstation Components onto the developer PC. Next I run the SQL 2008 "Reporting Services Configuration" tool. When I click on the "Web Service URL" section it hangs indefinitely and I have to force it closed.
The developer PC is Windows Vista Business.
Any suggestions on making this work, or any other information that you can think of that would allow me to use Visual Studio 2008 and the SQL 2008 "Report Designer Preview" tool to develop SSRS reports that will run on the SQL 2005 SSRS server?
Thanks!
-ErikR
View 4 Replies
View Related
Aug 15, 2006
Please feel free to redirect me if this has been previously addressed. I've read through the FAQ post and searched the forums, and as yet haven't found anything relevant on Google so I'm hoping you folks can help.
I am using SQL Server 2005 Express Edition on a fully patched Windows 2000 Server, and for some reason the database just will not start up when the machine starts or reboots. The service starts fine if I go start it by hand though. This is obnoxious because it prevents me from running fully automated updates to the box since that reboots it at least once a week on "patch Tuesday".
Here are what my related services and their startup types look like:
SQL Server (MSSQLSERVER) Automatic
SQL Server Active Directory Helper Disabled
SQL Server Browser Disabled
SQL Server VSS Writer Manual
This is a production machine so I'd prefer not to run any services I don't have to. All this database needs to do is sit there and get hit by a local Cold Fusion instance that talks to it by TCP/IP. Any administration on it I tend to do locally with Management Studio Express by remotely logging into the server on it's internal IP.
The really weird thing is, I have these services configured exactly the same on development environments I've created in Windows XP and Windows 2003 Server Standard Edition. This seems to be specific to Windows 2000 Server, and I just can't figure it out...
Any advice much appreciated!
View 7 Replies
View Related
Jun 5, 2002
SQL agent is using NT login with all permission & agent and sqlserver using the same NT username . SA password has not been changed for more than one year.
The SQL Server agent log is showing "waiting to recover database". What could be the reason ?
------------
Ray Miao at 6/5/2002 8:13:38 AM
Double check with sql service manager. Did you change sa pwd?
------------
Shaji at 6/5/2002 4:36:16 AM
Hi ,
Whenever I restart the Server , SQL server service is starting properly, but the agent is showing the green sign in EM ,agent Log also its showing its started. But in EM the jobs are not showing the next run time its showing ( Date and time not available). When I double click the jobs its showing the following error message
Micorsoft SQL - DMO ( ODBC Sql state 42000)
Error 14258 : can not perform this operation while SQL server agent is starting)
FYI :This server contain the databases of SMS too .
Thank you ,
Shaji
View 2 Replies
View Related