skip to main | skip to sidebar
Showing posts with label view. Show all posts
Showing posts with label view. Show all posts

Friday, March 30, 2012

KPI in Reporting Service

Hi All,

How to integrated the KPI from SSAS 2005 to SSRS 2005 ?

So the value and indicator from KPI can be retrieve/view by SSRS 2005...

Any suggestion will be very helpful.

THX.

Hi

I have the exact same problem ...

But when deploying scorecards from Business Scorecard Manager to Reporting Services it is possible to get reporting services to show images as well as values. However when you look at the report in Visual Studio / Report Layout there is no give-away as to how the image is generated ...

A home-made syntax may be a solution as the KPI-value can be seen to be (e.g.) "=Fields!Advertising_comp_to_Turnover_Goal.Value". Exchange of "Value" with "Indicator" does not work however.

Any other suggestions?

Chr.

|||

I found a description of how to make it work ... not for me however!!

Chr.

http://www.sqljunkies.com/WebLog/sqlbi/archive/category/325.aspx

Report Builder Model with UDM

postedTuesday, November 15, 2005 6:13 AM bymarcorusso

Today I lost a lot of time digging on this problem so a I hope post about this will save time of other developers!

I wanted to import the UDM into a model for Report Builder. You have to do these steps:

go intoSQLServer Management Studio
Posted by depredationnmqp at 2:46 AM 0 comments
Email This BlogThis! Share to X Share to Facebook
Labels: database, indicator, integrated, kpi, microsoft, mysql, oracle, reporting, retrieve, server, service, sql, ssas, ssrs, value, view

KPI Aggregation

I am new to using SQL 2005 Analysis Services and am spinning my wheels with something which is seemingly very basic. I have a view which already aggregates data into a comparison for the current month (i.e. Projected Sales, Actual Sales, Type of Sale). When I attempt to use the KPIs to simply use indicators to show which goals have been met, I'm only able to compare the grand totals of all sales and not break it down by specific Sale Type (which the table already does). How can I set things up so that the KPIs will keep the aggregations based on Sale Type instead of combining everything?

Thanks in advance!

Could you provide a more complete picture of your scenario? You mentioned a view (presumably relational?) and KPI's, but what kind of AS 2005 cube do you have in between - and does it have a "Sale Type" dimension? And are the KPI's created in the cube, or defined only in a client tool, like Proclarity or Business Scorecard Manager?|||Thanks for your reply...I have created a relational view which does all the aggregation I need. However, I haven't been able to create the "sale type" dimension successfully, it seems as though it's not a possible option even though this data is clearly pulled in the data source view. I am trying to create the KPIs directly in the cube and not using any client tools.|||So I think that the 1st step you need to take is to create a "Sale Type" dimension for the cube - you can then use it to slice cube data and KPI's by. What problems are preventing you from doing this?
Posted by depredationnmqp at 2:38 AM 0 comments
Email This BlogThis! Share to X Share to Facebook
Labels: aggregation, analysis, basic, database, kpi, microsoft, mysql, oracle, seemingly, server, services, spinning, sql, view, wheels

Wednesday, March 28, 2012

Kishore

Dear all.
I am doing a site using asp.net, and i am providing to users to view reports in the browser. I am using crystal reports 9.0. I am facing some problem when calling crystal reports in asp.net. While developing reports i used one database, now i want to change the database name at runtime. I used the following code as suggested by microsoft and crystal decisions. But i could't get the result. When i was running application the report looking for existed database only. If any body try this before, please help me......Thanks..

Dim crSections As Sections
Dim crSection As Section
Dim crReportObjects As ReportObjects
Dim crReportObject As ReportObject
Dim crFieldObject As FieldObject
Dim crTextObject As TextObject
Dim StartVal As Integer
Dim LenVal As Integer

Dim ConnPar As Array = Split(AppSettings("ConnectionString2EISDB"), ";")
ReportDocument.Load(Request.QueryString("Path"))

crConnectionInfo = New ConnectionInfo

With crConnectionInfo
StartVal = InStr(ConnPar(3), "=") + 1
LenVal = Len(ConnPar(3)) - InStr(ConnPar(0), "=") + 1
.DatabaseName = Mid(ConnPar(3), StartVal, LenVal)
StartVal = InStr(ConnPar(2), "=") + 1
LenVal = Len(ConnPar(2)) - InStr(ConnPar(0), "=") + 1
.Password = Mid(ConnPar(2), StartVal, LenVal)
StartVal = InStr(ConnPar(0), "=") + 1
LenVal = Len(ConnPar(0)) - InStr(ConnPar(0), "=") + 1
.ServerName = Mid(ConnPar(0), StartVal, LenVal)
StartVal = InStr(ConnPar(1), "=") + 1
LenVal = Len(ConnPar(1)) - InStr(ConnPar(0), "=") + 1
.UserID = Mid(ConnPar(1), StartVal, LenVal)
End With

crTables = reportDocument.Database.Tables

For Each crTable In crTables
crTableLogOnInfo = crTable.LogOnInfo
crTableLogOnInfo.ConnectionInfo = crConnectionInfo
crTable.ApplyLogOnInfo(crTableLogOnInfo)
Next

CrystalReportViewer1.ReportSource = reportDocument1) This should have been in either the ASP.Net or Crystal Reports forum ;)

2) Code is alot easier to read when placed inside code tags :rolleyes:

3) Double check the contents of your crConnectionInfo in a debugger [you MAY be slightly off on the parse, but I can not confirm this from here]

Other than that, the code looks reasonable...|||<moved thread>
Posted by depredationnmqp at 3:06 AM 0 comments
Email This BlogThis! Share to X Share to Facebook
Labels: asp, browser, crystal, database, dear, facing, kishore, microsoft, mysql, net, oracle, providing, reports, server, sql, users, view

Friday, March 23, 2012

KILL spid never ends (SQL 2000)

Andrew Drake wrote:
> Dear all,
> A developer intended to alter a view in a production database. They issued
> an ALTER VIEW command and, because of some reason, the process hung up.
> In the EM, if I go to Management --> Current Activity --> Process Info I c
an
> see that process as spid 160, the statement is "ALTER VIEW..."
> Any help / ideas / suggestions would be greatly appreciated.
>
Does the view refer to any linked servers? Can you post the query that
makes up the view?Dear all,
From time to time an SQL process ('spid') hangs up in our production SQL
server.
Then we try to kill it using KILL command.
And quite often the KILL never ends.
If I call (spid to kill is 160):
KILL 160 WITH STATUSONLY
the result is:
SPID 160: transaction rollback in progress. Estimated rollback completion:
100%. Estimated time remaining: 0 seconds.
and that result lasts forever (i.e. a couple of days until we restart the
server).
That is quite troublesome as the server is quite heavily used and restarting
it always interferes with normal work of users.
Is there any way to REALLY kill the process?
I guess my problems are related to locking issues, I looked up the
newsgroups but couldn't figure out any feasible solution but restart the
server.
To be more specific, my current problem is as follows:
A developer intended to alter a view in a production database. They issued
an ALTER VIEW command and, because of some reason, the process hung up.
In the EM, if I go to Management --> Current Activity --> Process Info I can
see that process as spid 160, the statement is "ALTER VIEW..."
I killed the process, as described above, but it is still alive.
If I call
select * from sysprocesses where spid = 160
the result is:
spid 160
kpid 1320
blocked 0
waittype 0x0000
waittime 0
lastwaittype OLEDB
waitresource
dbid 17
uid 0
cpu 21265
physical_io 2299
memusage 476
login_time 2006-06-23 08:34:36.450
last_batch 2006-06-23 09:39:55.577
ecid 0
open_tran 2
status runnable
sid 0x010500000000000515000000AA562D4A3E3CC3
6A4B1A1304ED030...0
hostname XXX
program_name MS SQLEM
hostprocess 3900
cmd AWAITING COMMAND
nt_domain XXX
nt_username XXX
net_address XXX
net_library TCP/IP
loginame XXX\XXX
context_info 0x0...0
sql_handle 0x0...0
stmt_start 0
stmt_end 0
Now, if I go to Locks / Process ID I can see that process 160 is marked as
'Blocking'.
Moreover, there are many processes that are marked as 'Blocked by 160'.
The result of
sp_lock '160'
is:
spid dbid ObjId IndId Type Resource Mode Status
-- -- -- -- -- -- -- --
160 17 0 0 DB S GRANT
160 17 0 0 DB S GRANT
160 8 0 0 DB S GRANT
160 8 0 0 DB S GRANT
160 52 0 0 DB S GRANT
160 47 0 0 DB S GRANT
160 17 804197915 0 TAB Sch-S GRANT
160 17 804197915 0 TAB [COMPILE] X GRANT
160 47 1990402260 0 TAB Sch-S GRANT
160 8 985106600 0 TAB Sch-S GRANT
160 17 1767677345 0 TAB Sch-S GRANT
160 52 1893581784 0 TAB Sch-S GRANT
160 8 793105916 0 TAB [COMPILE] X GRANT
160 8 793105916 0 TAB Sch-S GRANT
160 52 1285579618 0 TAB Sch-S GRANT
And that is all what I was able to check.
What can I do in that situation? Is the server restart really necessary?
Probably, I will end up restarting the SQL this time, but I would like to
learn what to do if that happens again.
Any help / ideas / suggestions would be greatly appreciated.
Thank you in advance!
Best regards,
Andrew|||Andrew Drake wrote:
> Dear all,
> A developer intended to alter a view in a production database. They issued
> an ALTER VIEW command and, because of some reason, the process hung up.
> In the EM, if I go to Management --> Current Activity --> Process Info I c
an
> see that process as spid 160, the statement is "ALTER VIEW..."
> Any help / ideas / suggestions would be greatly appreciated.
>
Does the view refer to any linked servers? Can you post the query that
makes up the view?|||"Tracy McKibben" <tracy@.realsqlguy.com> wrote in message
news:O89ADPUmGHA.1252@.TK2MSFTNGP02.phx.gbl...
> Andrew Drake wrote:
> Does the view refer to any linked servers? Can you post the query that
> makes up the view?
Yes, it does. Actually it is a bit more complicated, because the view refers
to another view in some other database, that in turn refers to a linked
server:
ALTER VIEW DB1.dbo.MyView
AS
SELECT T1.Field1, V2.Field2
FROM DB1.dbo.Table1 T1
JOIN DB2.dbo.View2 V2
ON T1.Field1 = V2.FieldX
where DB2.dbo.View2 refers to a linked server.
Does it matter that a linked server is involved?
Best regards,
Andrew|||Andrew Drake wrote:
> "Tracy McKibben" <tracy@.realsqlguy.com> wrote in message
> news:O89ADPUmGHA.1252@.TK2MSFTNGP02.phx.gbl...
> Yes, it does. Actually it is a bit more complicated, because the view refe
rs
> to another view in some other database, that in turn refers to a linked
> server:
> ALTER VIEW DB1.dbo.MyView
> AS
> SELECT T1.Field1, V2.Field2
> FROM DB1.dbo.Table1 T1
> JOIN DB2.dbo.View2 V2
> ON T1.Field1 = V2.FieldX
> where DB2.dbo.View2 refers to a linked server.
> Does it matter that a linked server is involved?
> Best regards,
> Andrew
>
>
Check sysprocesses on the linked server - the process that you killed is
probably waiting on something to finish over on the linked server. In
that case, you'll have to go over to that machine and kill whatever spid
is running over there. Once it dies, then the original spid should die
as well.|||"Tracy McKibben" <tracy@.realsqlguy.com> wrote in message
news:O89ADPUmGHA.1252@.TK2MSFTNGP02.phx.gbl...
> Andrew Drake wrote:
> Does the view refer to any linked servers? Can you post the query that
> makes up the view?
Yes, it does. Actually it is a bit more complicated, because the view refers
to another view in some other database, that in turn refers to a linked
server:
ALTER VIEW DB1.dbo.MyView
AS
SELECT T1.Field1, V2.Field2
FROM DB1.dbo.Table1 T1
JOIN DB2.dbo.View2 V2
ON T1.Field1 = V2.FieldX
where DB2.dbo.View2 refers to a linked server.
Does it matter that a linked server is involved?
Best regards,
Andrew|||Andrew Drake wrote:
> "Tracy McKibben" <tracy@.realsqlguy.com> wrote in message
> news:O89ADPUmGHA.1252@.TK2MSFTNGP02.phx.gbl...
> Yes, it does. Actually it is a bit more complicated, because the view refe
rs
> to another view in some other database, that in turn refers to a linked
> server:
> ALTER VIEW DB1.dbo.MyView
> AS
> SELECT T1.Field1, V2.Field2
> FROM DB1.dbo.Table1 T1
> JOIN DB2.dbo.View2 V2
> ON T1.Field1 = V2.FieldX
> where DB2.dbo.View2 refers to a linked server.
> Does it matter that a linked server is involved?
> Best regards,
> Andrew
>
>
Check sysprocesses on the linked server - the process that you killed is
probably waiting on something to finish over on the linked server. In
that case, you'll have to go over to that machine and kill whatever spid
is running over there. Once it dies, then the original spid should die
as well.|||"Tracy McKibben" <tracy@.realsqlguy.com> wrote in message
news:ubgQROemGHA.4436@.TK2MSFTNGP05.phx.gbl...
> Andrew Drake wrote:
> Check sysprocesses on the linked server - the process that you killed is
> probably waiting on something to finish over on the linked server. In
> that case, you'll have to go over to that machine and kill whatever spid
> is running over there. Once it dies, then the original spid should die as
> well.
Thank you very much for your help!
Best regards,
Andrew|||"Tracy McKibben" <tracy@.realsqlguy.com> wrote in message
news:ubgQROemGHA.4436@.TK2MSFTNGP05.phx.gbl...
> Andrew Drake wrote:
> Check sysprocesses on the linked server - the process that you killed is
> probably waiting on something to finish over on the linked server. In
> that case, you'll have to go over to that machine and kill whatever spid
> is running over there. Once it dies, then the original spid should die as
> well.
Thank you very much for your help!
Best regards,
Andrew|||Andrew Drake wrote:
> Thank you very much for your help!
> Best regards,
> Andrew
>
No problem... FYI, the same thing can happen to a process that uses
xp_cmdshell to run an OS command, like a COPY command to copy a large
backup file. Killing the spid will exhibit the same behavior that you
saw, to completely kill it you have to open the Windows Task Manager and
kill the CMD.EXE process that was spawned by xp_cmdshell.
Posted by depredationnmqp at 5:11 AM 0 comments
Email This BlogThis! Share to X Share to Facebook
Labels: alter, andrew, command, database, dear, drake, ends, intended, issuedgt, kill, microsoft, mysql, oracle, production, server, spid, sql, view, wrotegt

Monday, March 19, 2012

KEY_COLUMN_USAGE bug

Is it on purpose or is it a bug that the view
INFORMATION_SCHEMA.KEY_COLUMN_USAGE doesn't return PK columns outside the
"dbo" schema?
I've checked the view code and came accross this selection criteria
...
WHERE
...
col.name = index_col(t_obj.name, i.indid, v.number) AND
...
and I would guess it should be
col.name = index_col(user_name(c_obj.uid) + '.' + t_obj.name, i.indid,
v.number) AND
instead
is this bug on purpose or am I wrong?
it's kind of hard to get pk schema information when the schema isn't "dbo" -
what would the sql server experts solution be in this case?
regards
Chris
...
WHERE
...
SELECT
...
UNION
SELECT
db_name() AS CONSTRAINT_CATALOG,
user_name(c_obj.uid) AS CONSTRAINT_SCHEMA,
i.name AS CONSTRAINT_NAME,
db_name() AS TABLE_CATALOG,
user_name(t_obj.uid) AS TABLE_SCHEMA,
t_obj.name AS TABLE_NAME,
col.name AS COLUMN_NAME,
v.number AS ORDINAL_POSITION
FROM
sysobjects c_obj, sysobjects t_obj, syscolumns col,
master.dbo.spt_values v, sysindexes i
WHERE
permissions(t_obj.id) != 0 AND
c_obj.xtype IN ('UQ', 'PK') AND
t_obj.id = c_obj.parent_obj AND
t_obj.xtype = 'U' AND
t_obj.id = col.id AND
--**
col.name = index_col(t_obj.name, i.indid, v.number) AND
--**
t_obj.id = i.id AND
c_obj.name = i.name AND
v.number > 0 AND
v.number <= i.keycnt AND
v.type = 'P'It's a bug, and it was discussed earlier in the following thread:
http://groups.google.co.uk/group/microsoft.public.sqlserver.programming/browse_thread/thread/77f82a458be4b9d9/a0407b1b00d42b32?q=schalkwijk+key_column_usage&rnum=1#a0407b1b00d42b32
I haven't checked if it has actually been fixed in SP4.
--
Jacco Schalkwijk
SQL Server MVP
"christian kuendig" <xxxx> wrote in message
news:OVHcnzSWFHA.3188@.TK2MSFTNGP09.phx.gbl...
> Is it on purpose or is it a bug that the view
> INFORMATION_SCHEMA.KEY_COLUMN_USAGE doesn't return PK columns outside the
> "dbo" schema?
> I've checked the view code and came accross this selection criteria
> ...
> WHERE
> ...
> col.name = index_col(t_obj.name, i.indid, v.number) AND
> ...
> and I would guess it should be
> col.name = index_col(user_name(c_obj.uid) + '.' + t_obj.name, i.indid,
> v.number) AND
> instead
> is this bug on purpose or am I wrong?
> it's kind of hard to get pk schema information when the schema isn't
> "dbo" - what would the sql server experts solution be in this case?
> regards
> Chris
> ...
> WHERE
> ...
> SELECT
> ...
> UNION
> SELECT
> db_name() AS CONSTRAINT_CATALOG,
> user_name(c_obj.uid) AS CONSTRAINT_SCHEMA,
> i.name AS CONSTRAINT_NAME,
> db_name() AS TABLE_CATALOG,
> user_name(t_obj.uid) AS TABLE_SCHEMA,
> t_obj.name AS TABLE_NAME,
> col.name AS COLUMN_NAME,
> v.number AS ORDINAL_POSITION
> FROM
> sysobjects c_obj, sysobjects t_obj, syscolumns col,
> master.dbo.spt_values v, sysindexes i
> WHERE
> permissions(t_obj.id) != 0 AND
> c_obj.xtype IN ('UQ', 'PK') AND
> t_obj.id = c_obj.parent_obj AND
> t_obj.xtype = 'U' AND
> t_obj.id = col.id AND
> --**
> col.name = index_col(t_obj.name, i.indid, v.number) AND
> --**
> t_obj.id = i.id AND
> c_obj.name = i.name AND
> v.number > 0 AND
> v.number <= i.keycnt AND
> v.type = 'P'
>|||Hi Jacco
It seems to be the same in SP4.
John
"Jacco Schalkwijk" <jacco.please.reply@.to.newsgroups.mvps.org.invalid> wrote
in message news:Ooj3SEUWFHA.2984@.tk2msftngp13.phx.gbl...
> It's a bug, and it was discussed earlier in the following thread:
> http://groups.google.co.uk/group/microsoft.public.sqlserver.programming/browse_thread/thread/77f82a458be4b9d9/a0407b1b00d42b32?q=schalkwijk+key_column_usage&rnum=1#a0407b1b00d42b32
> I haven't checked if it has actually been fixed in SP4.
> --
> Jacco Schalkwijk
> SQL Server MVP
>
> "christian kuendig" <xxxx> wrote in message
> news:OVHcnzSWFHA.3188@.TK2MSFTNGP09.phx.gbl...
>> Is it on purpose or is it a bug that the view
>> INFORMATION_SCHEMA.KEY_COLUMN_USAGE doesn't return PK columns outside the
>> "dbo" schema?
>> I've checked the view code and came accross this selection criteria
>> ...
>> WHERE
>> ...
>> col.name = index_col(t_obj.name, i.indid, v.number) AND
>> ...
>> and I would guess it should be
>> col.name = index_col(user_name(c_obj.uid) + '.' + t_obj.name, i.indid,
>> v.number) AND
>> instead
>> is this bug on purpose or am I wrong?
>> it's kind of hard to get pk schema information when the schema isn't
>> "dbo" - what would the sql server experts solution be in this case?
>> regards
>> Chris
>> ...
>> WHERE
>> ...
>> SELECT
>> ...
>> UNION
>> SELECT
>> db_name() AS CONSTRAINT_CATALOG,
>> user_name(c_obj.uid) AS CONSTRAINT_SCHEMA,
>> i.name AS CONSTRAINT_NAME,
>> db_name() AS TABLE_CATALOG,
>> user_name(t_obj.uid) AS TABLE_SCHEMA,
>> t_obj.name AS TABLE_NAME,
>> col.name AS COLUMN_NAME,
>> v.number AS ORDINAL_POSITION
>> FROM
>> sysobjects c_obj, sysobjects t_obj, syscolumns col,
>> master.dbo.spt_values v, sysindexes i
>> WHERE
>> permissions(t_obj.id) != 0 AND
>> c_obj.xtype IN ('UQ', 'PK') AND
>> t_obj.id = c_obj.parent_obj AND
>> t_obj.xtype = 'U' AND
>> t_obj.id = col.id AND
>> --**
>> col.name = index_col(t_obj.name, i.indid, v.number) AND
>> --**
>> t_obj.id = i.id AND
>> c_obj.name = i.name AND
>> v.number > 0 AND
>> v.number <= i.keycnt AND
>> v.type = 'P'
>>
>
Posted by depredationnmqp at 8:53 PM 0 comments
Email This BlogThis! Share to X Share to Facebook
Labels: bug, columns, database, dbo, information_schema, key_column_usage, microsoft, mysql, oracle, outside, purpose, return, schema, server, sql, view

Monday, March 12, 2012

Key not valid for use in specified state

Reporting Services has been fine for me up until last night and now I can't
view any reports as the R/Server keeps throwing the error:
"Key not valid for use in specified state"
I can't seem to track down any help and the link provided in the error
report is completly useless saying:
"Internal errors are uncommon and difficult to diagnose."
If it helps the log file is below:
<Header>
<Product>Microsoft SQL Server Reporting Services Version
8.00.743.00</Product>
<Locale>en-US</Locale>
<TimeZone>GMT Daylight Time</TimeZone>
<Path>C:\Program Files\Microsoft SQL Server\MSSQL\Reporting
Services\LogFiles\ReportServer__09_10_2004_08_31_45.log</Path>
<SystemName>SRV120W03</SystemName>
<OSName>Microsoft Windows NT 5.2.3790.0</OSName>
<OSVersion>5.2.3790.0</OSVersion>
</Header>
aspnet_wp!webserver!9b8!10/09/2004-08:31:45:: i INFO: Reporting Web Server
started
aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
ConnectionType to '0' as specified in Configuration file.
aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
IsSchedulingService to 'True' as specified in Configuration file.
aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
IsNotificationService to 'True' as specified in Configuration file.
aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
IsEventService to 'True' as specified in Configuration file.
aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
PollingInterval to '10' second(s) as specified in Configuration file.
aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing MemoryLimit
to '60' percent as specified in Configuration file.
aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing RecycleTime
to '720' minute(s) as specified in Configuration file.
aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
MaximumMemoryLimit to '80' percent as specified in Configuration file.
aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
MaxAppDomainUnloadTime to '30' minute(s) as specified in Configuration file.
aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
MaxQueueThreads to '0' thread(s) as specified in Configuration file.
aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
MaxActiveReqForOneUser to '20' requests(s) as specified in Configuration
file.
aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
MaxScheduleWait to '5' second(s) as specified in Configuration file.
aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
DatabaseQueryTimeout to '120' second(s) as specified in Configuration file.
aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
InstanceName to 'MSSQLSERVER' as specified in Configuration file.
aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
ProcessRecycleOptions to '0' as specified in Configuration file.
aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
RunningRequestsScavengerCycle to '60' second(s) as specified in
Configuration file.
aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
RunningRequestsDbCycle to '60' second(s) as specified in Configuration file.
aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
RunningRequestsAge to '30' second(s) as specified in Configuration file.
aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
CleanupCycleMinutes to '10' minute(s) as specified in Configuration file.
aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
SecureConnectionLevel to '0' as specified in Configuration file.
aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
DisplayErrorLink to 'True' as specified in Configuration file.
aspnet_wp!resourceutilities!9b8!10/09/2004-08:31:45:: i INFO: Running on 1
physical processors, 2 logical processors
aspnet_wp!resourceutilities!9b8!10/09/2004-08:31:45:: i INFO: Reporting
Services starting SKU: Standard
aspnet_wp!runningjobs!9b8!10/09/2004-08:31:45:: i INFO: Database Cleanup
(Web Service) timer enabled: Cycle: 600 seconds
aspnet_wp!runningjobs!9b8!10/09/2004-08:31:45:: i INFO: Running Requests
Scavenger timer enabled: Cycle: 60 seconds
aspnet_wp!runningjobs!9b8!10/09/2004-08:31:45:: i INFO: Running Requests DB
timer enabled: Cycle: 60 seconds
aspnet_wp!runningjobs!9b8!10/09/2004-08:31:45:: i INFO: Memory stats update
timer enabled: Cycle: 60 seconds
aspnet_wp!crypto!9b8!09/10/2004-08:31:46:: i INFO: Initializing crypto as
user: SRV120W03\ASPNET
aspnet_wp!crypto!9b8!09/10/2004-08:31:46:: i INFO: Exporting public key
aspnet_wp!webserver!9b8!09/10/2004-08:31:46:: e ERROR: Internal error:
System.Runtime.InteropServices.COMException (0x8009000B): Key not valid for
use in specified state.
at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
errorCode, IntPtr errorInfo)
at RSManagedCrypto.RSCrypto.ExportPublicKey()
at
Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
at Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
at
Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
at Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
at Microsoft.ReportingServices.Library.Storage.get_Connection()
at
Microsoft.ReportingServices.Library.Storage.NewStandardSqlCommand(String
storedProcedureName)
at
Microsoft.ReportingServices.Library.DBInterface.GetOneConfigurationInfo(Stri
ng key)
at
Microsoft.ReportingServices.Library.CachedSystemProperties.GetSystemProperty
(String name)
at Microsoft.ReportingServices.Library.CachedSystemProperties.Get(String
name)
at
Microsoft.ReportingServices.Library.CachedSystemProperties.GetParameter(Stri
ng name)
at Microsoft.ReportingServices.Library.RSService.get_MyReportsEnabled()
at Microsoft.ReportingServices.Library.RSService.PathToInternal(String
source)
at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
path, Boolean validate, Boolean convert, Boolean translate)
at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
path)
at
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPageCon
tent()
at
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPage()
aspnet_wp!library!9b8!09/10/2004-08:31:46:: e ERROR: Throwing
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details., ;
Info:
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details. --> System.Runtime.InteropServices.COMException (0x8009000B): Key
not valid for use in specified state.
at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
errorCode, IntPtr errorInfo)
at RSManagedCrypto.RSCrypto.ExportPublicKey()
at
Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
at Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
at
Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
at Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
at Microsoft.ReportingServices.Library.Storage.get_Connection()
at
Microsoft.ReportingServices.Library.Storage.NewStandardSqlCommand(String
storedProcedureName)
at
Microsoft.ReportingServices.Library.DBInterface.GetOneConfigurationInfo(Stri
ng key)
at
Microsoft.ReportingServices.Library.CachedSystemProperties.GetSystemProperty
(String name)
at Microsoft.ReportingServices.Library.CachedSystemProperties.Get(String
name)
at
Microsoft.ReportingServices.Library.CachedSystemProperties.GetParameter(Stri
ng name)
at Microsoft.ReportingServices.Library.RSService.get_MyReportsEnabled()
at Microsoft.ReportingServices.Library.RSService.PathToInternal(String
source)
at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
path, Boolean validate, Boolean convert, Boolean translate)
at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
path)
at
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPageCon
tent()
at
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPage()
-- End of inner exception stack trace --
aspnet_wp!crypto!9b8!09/10/2004-08:32:20:: i INFO: Initializing crypto as
user: SRV120W03\ASPNET
aspnet_wp!crypto!9b8!09/10/2004-08:32:20:: i INFO: Exporting public key
aspnet_wp!webserver!9b8!09/10/2004-08:32:20:: e ERROR: Internal error:
System.Runtime.InteropServices.COMException (0x8009000B): Key not valid for
use in specified state.
at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
errorCode, IntPtr errorInfo)
at RSManagedCrypto.RSCrypto.ExportPublicKey()
at
Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
at Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
at
Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
at Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
at Microsoft.ReportingServices.Library.Storage.get_Connection()
at
Microsoft.ReportingServices.Library.Storage.NewStandardSqlCommand(String
storedProcedureName)
at
Microsoft.ReportingServices.Library.DBInterface.GetOneConfigurationInfo(Stri
ng key)
at
Microsoft.ReportingServices.Library.CachedSystemProperties.GetSystemProperty
(String name)
at Microsoft.ReportingServices.Library.CachedSystemProperties.Get(String
name)
at
Microsoft.ReportingServices.Library.CachedSystemProperties.GetParameter(Stri
ng name)
at Microsoft.ReportingServices.Library.RSService.get_MyReportsEnabled()
at Microsoft.ReportingServices.Library.RSService.PathToInternal(String
source)
at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
path, Boolean validate, Boolean convert, Boolean translate)
at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
path)
at
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPageCon
tent()
at
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPage()
aspnet_wp!library!9b8!09/10/2004-08:32:20:: e ERROR: Throwing
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details., ;
Info:
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details. --> System.Runtime.InteropServices.COMException (0x8009000B): Key
not valid for use in specified state.
at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
errorCode, IntPtr errorInfo)
at RSManagedCrypto.RSCrypto.ExportPublicKey()
at
Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
at Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
at
Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
at Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
at Microsoft.ReportingServices.Library.Storage.get_Connection()
at
Microsoft.ReportingServices.Library.Storage.NewStandardSqlCommand(String
storedProcedureName)
at
Microsoft.ReportingServices.Library.DBInterface.GetOneConfigurationInfo(Stri
ng key)
at
Microsoft.ReportingServices.Library.CachedSystemProperties.GetSystemProperty
(String name)
at Microsoft.ReportingServices.Library.CachedSystemProperties.Get(String
name)
at
Microsoft.ReportingServices.Library.CachedSystemProperties.GetParameter(Stri
ng name)
at Microsoft.ReportingServices.Library.RSService.get_MyReportsEnabled()
at Microsoft.ReportingServices.Library.RSService.PathToInternal(String
source)
at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
path, Boolean validate, Boolean convert, Boolean translate)
at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
path)
at
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPageCon
tent()
at
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPage()
-- End of inner exception stack trace --
aspnet_wp!crypto!e18!10/09/2004-08:32:45:: i INFO: Initializing crypto as
user: SRV120W03\ASPNET
aspnet_wp!crypto!e18!10/09/2004-08:32:45:: i INFO: Exporting public key
aspnet_wp!library!e18!10/09/2004-08:32:45:: e ERROR: Throwing
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details., Error getting running jobs;
Info:
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details. --> System.Runtime.InteropServices.COMException (0x8009000B): Key
not valid for use in specified state.
at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
errorCode, IntPtr errorInfo)
at RSManagedCrypto.RSCrypto.ExportPublicKey()
at
Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
at Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
at
Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
at Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
at Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRunningJobs()
-- End of inner exception stack trace --
aspnet_wp!crypto!3b8!10/09/2004-08:33:45:: i INFO: Initializing crypto as
user: SRV120W03\ASPNET
aspnet_wp!crypto!3b8!10/09/2004-08:33:45:: i INFO: Exporting public key
aspnet_wp!library!3b8!10/09/2004-08:33:45:: e ERROR: Throwing
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details., Error getting running jobs;
Info:
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details. --> System.Runtime.InteropServices.COMException (0x8009000B): Key
not valid for use in specified state.
at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
errorCode, IntPtr errorInfo)
at RSManagedCrypto.RSCrypto.ExportPublicKey()
at
Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
at Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
at
Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
at Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
at Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRunningJobs()
-- End of inner exception stack trace --
aspnet_wp!crypto!e18!10/09/2004-08:34:45:: i INFO: Initializing crypto as
user: SRV120W03\ASPNET
aspnet_wp!crypto!e18!10/09/2004-08:34:45:: i INFO: Exporting public key
aspnet_wp!library!e18!10/09/2004-08:34:45:: e ERROR: Throwing
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details., Error getting running jobs;
Info:
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details. --> System.Runtime.InteropServices.COMException (0x8009000B): Key
not valid for use in specified state.
at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
errorCode, IntPtr errorInfo)
at RSManagedCrypto.RSCrypto.ExportPublicKey()
at
Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
at Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
at
Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
at Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
at Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRunningJobs()
-- End of inner exception stack trace --
aspnet_wp!crypto!e18!10/09/2004-08:35:45:: i INFO: Initializing crypto as
user: SRV120W03\ASPNET
aspnet_wp!crypto!e18!10/09/2004-08:35:45:: i INFO: Exporting public key
aspnet_wp!library!e18!10/09/2004-08:35:45:: e ERROR: Throwing
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details., Error getting running jobs;
Info:
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details. --> System.Runtime.InteropServices.COMException (0x8009000B): Key
not valid for use in specified state.
at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
errorCode, IntPtr errorInfo)
at RSManagedCrypto.RSCrypto.ExportPublicKey()
at
Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
at Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
at
Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
at Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
at Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRunningJobs()
-- End of inner exception stack trace --
aspnet_wp!crypto!e18!10/09/2004-08:36:45:: i INFO: Initializing crypto as
user: SRV120W03\ASPNET
aspnet_wp!crypto!e18!10/09/2004-08:36:45:: i INFO: Exporting public key
aspnet_wp!library!e18!10/09/2004-08:36:45:: e ERROR: Throwing
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details., Error getting running jobs;
Info:
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details. --> System.Runtime.InteropServices.COMException (0x8009000B): Key
not valid for use in specified state.
at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
errorCode, IntPtr errorInfo)
at RSManagedCrypto.RSCrypto.ExportPublicKey()
at
Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
at Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
at
Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
at Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
at Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRunningJobs()
-- End of inner exception stack trace --
aspnet_wp!crypto!3b8!10/09/2004-08:37:45:: i INFO: Initializing crypto as
user: SRV120W03\ASPNET
aspnet_wp!crypto!3b8!10/09/2004-08:37:45:: i INFO: Exporting public key
aspnet_wp!library!3b8!10/09/2004-08:37:45:: e ERROR: Throwing
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details., Error getting running jobs;
Info:
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details. --> System.Runtime.InteropServices.COMException (0x8009000B): Key
not valid for use in specified state.
at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
errorCode, IntPtr errorInfo)
at RSManagedCrypto.RSCrypto.ExportPublicKey()
at
Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
at Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
at
Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
at Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
at Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRunningJobs()
-- End of inner exception stack trace --
aspnet_wp!crypto!3b8!10/09/2004-08:38:45:: i INFO: Initializing crypto as
user: SRV120W03\ASPNET
aspnet_wp!crypto!3b8!10/09/2004-08:38:45:: i INFO: Exporting public key
aspnet_wp!library!3b8!10/09/2004-08:38:45:: e ERROR: Throwing
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details., Error getting running jobs;
Info:
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details. --> System.Runtime.InteropServices.COMException (0x8009000B): Key
not valid for use in specified state.
at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
errorCode, IntPtr errorInfo)
at RSManagedCrypto.RSCrypto.ExportPublicKey()
at
Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
at Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
at
Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
at Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
at Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRunningJobs()
-- End of inner exception stack trace --
aspnet_wp!crypto!3b8!10/09/2004-08:39:45:: i INFO: Initializing crypto as
user: SRV120W03\ASPNET
aspnet_wp!crypto!3b8!10/09/2004-08:39:45:: i INFO: Exporting public key
aspnet_wp!library!3b8!10/09/2004-08:39:45:: e ERROR: Throwing
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details., Error getting running jobs;
Info:
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details. --> System.Runtime.InteropServices.COMException (0x8009000B): Key
not valid for use in specified state.
at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
errorCode, IntPtr errorInfo)
at RSManagedCrypto.RSCrypto.ExportPublicKey()
at
Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
at Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
at
Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
at Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
at Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRunningJobs()
-- End of inner exception stack trace --
aspnet_wp!crypto!e18!10/09/2004-08:40:45:: i INFO: Initializing crypto as
user: SRV120W03\ASPNET
aspnet_wp!crypto!e18!10/09/2004-08:40:45:: i INFO: Exporting public key
aspnet_wp!library!e18!10/09/2004-08:40:45:: e ERROR: Throwing
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details., Error getting running jobs;
Info:
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details. --> System.Runtime.InteropServices.COMException (0x8009000B): Key
not valid for use in specified state.
at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
errorCode, IntPtr errorInfo)
at RSManagedCrypto.RSCrypto.ExportPublicKey()
at
Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
at Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
at
Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
at Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
at Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRunningJobs()
-- End of inner exception stack trace --
aspnet_wp!crypto!e18!10/09/2004-08:41:45:: i INFO: Initializing crypto as
user: SRV120W03\ASPNET
aspnet_wp!crypto!e18!10/09/2004-08:41:45:: i INFO: Exporting public key
aspnet_wp!library!e18!10/09/2004-08:41:45:: e ERROR: Throwing
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details., Error doing timer action for Database Cleanup (Web Service);
Info:
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details. --> System.Runtime.InteropServices.COMException (0x8009000B): Key
not valid for use in specified state.
at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
errorCode, IntPtr errorInfo)
at RSManagedCrypto.RSCrypto.ExportPublicKey()
at
Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
at Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
at
Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
at Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
at Microsoft.ReportingServices.Library.Storage.get_Connection()
at
Microsoft.ReportingServices.Library.Storage.NewStandardSqlCommand(String
storedProcedureName)
at Microsoft.ReportingServices.Library.DBInterface.CleanBatchRecords()
at Microsoft.ReportingServices.Library.RSService.CleanBatch()
at
Microsoft.ReportingServices.Library.DatabaseCleanupTimer.DoTimerAction()
at
Microsoft.ReportingServices.Diagnostics.TimerActionBase.TimerAction(Object
unused)
-- End of inner exception stack trace --
aspnet_wp!crypto!3b8!10/09/2004-08:41:45:: i INFO: Initializing crypto as
user: SRV120W03\ASPNET
aspnet_wp!crypto!3b8!10/09/2004-08:41:45:: i INFO: Exporting public key
aspnet_wp!library!3b8!10/09/2004-08:41:45:: e ERROR: Throwing
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details., Error getting running jobs;
Info:
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details. --> System.Runtime.InteropServices.COMException (0x8009000B): Key
not valid for use in specified state.
at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
errorCode, IntPtr errorInfo)
at RSManagedCrypto.RSCrypto.ExportPublicKey()
at
Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
at Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
at
Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
at Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
at Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRunningJobs()
-- End of inner exception stack trace --
aspnet_wp!crypto!c54!10/09/2004-08:42:45:: i INFO: Initializing crypto as
user: SRV120W03\ASPNET
aspnet_wp!crypto!c54!10/09/2004-08:42:45:: i INFO: Exporting public key
aspnet_wp!library!c54!10/09/2004-08:42:45:: e ERROR: Throwing
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details., Error getting running jobs;
Info:
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details. --> System.Runtime.InteropServices.COMException (0x8009000B): Key
not valid for use in specified state.
at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
errorCode, IntPtr errorInfo)
at RSManagedCrypto.RSCrypto.ExportPublicKey()
at
Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
at Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
at
Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
at Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
at Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRunningJobs()
-- End of inner exception stack trace --
aspnet_wp!crypto!9b8!09/10/2004-08:43:30:: i INFO: Initializing crypto as
user: SRV120W03\ASPNET
aspnet_wp!crypto!9b8!09/10/2004-08:43:30:: i INFO: Exporting public key
aspnet_wp!webserver!9b8!09/10/2004-08:43:30:: e ERROR: Internal error:
System.Runtime.InteropServices.COMException (0x8009000B): Key not valid for
use in specified state.
at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
errorCode, IntPtr errorInfo)
at RSManagedCrypto.RSCrypto.ExportPublicKey()
at
Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
at Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
at
Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
at Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
at Microsoft.ReportingServices.Library.Storage.get_Connection()
at
Microsoft.ReportingServices.Library.Storage.NewStandardSqlCommand(String
storedProcedureName)
at
Microsoft.ReportingServices.Library.DBInterface.GetOneConfigurationInfo(Stri
ng key)
at
Microsoft.ReportingServices.Library.CachedSystemProperties.GetSystemProperty
(String name)
at Microsoft.ReportingServices.Library.CachedSystemProperties.Get(String
name)
at
Microsoft.ReportingServices.Library.CachedSystemProperties.GetParameter(Stri
ng name)
at Microsoft.ReportingServices.Library.RSService.get_MyReportsEnabled()
at Microsoft.ReportingServices.Library.RSService.PathToInternal(String
source)
at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
path, Boolean validate, Boolean convert, Boolean translate)
at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
path)
at
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPageCon
tent()
at
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPage()
aspnet_wp!library!9b8!09/10/2004-08:43:30:: e ERROR: Throwing
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details., ;
Info:
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details. --> System.Runtime.InteropServices.COMException (0x8009000B): Key
not valid for use in specified state.
at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
errorCode, IntPtr errorInfo)
at RSManagedCrypto.RSCrypto.ExportPublicKey()
at
Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
at Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
at
Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
at Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
at Microsoft.ReportingServices.Library.Storage.get_Connection()
at
Microsoft.ReportingServices.Library.Storage.NewStandardSqlCommand(String
storedProcedureName)
at
Microsoft.ReportingServices.Library.DBInterface.GetOneConfigurationInfo(Stri
ng key)
at
Microsoft.ReportingServices.Library.CachedSystemProperties.GetSystemProperty
(String name)
at Microsoft.ReportingServices.Library.CachedSystemProperties.Get(String
name)
at
Microsoft.ReportingServices.Library.CachedSystemProperties.GetParameter(Stri
ng name)
at Microsoft.ReportingServices.Library.RSService.get_MyReportsEnabled()
at Microsoft.ReportingServices.Library.RSService.PathToInternal(String
source)
at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
path, Boolean validate, Boolean convert, Boolean translate)
at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
path)
at
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPageCon
tent()
at
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPage()
-- End of inner exception stack trace --
aspnet_wp!crypto!3b8!10/09/2004-08:43:45:: i INFO: Initializing crypto as
user: SRV120W03\ASPNET
aspnet_wp!crypto!3b8!10/09/2004-08:43:45:: i INFO: Exporting public key
aspnet_wp!library!3b8!10/09/2004-08:43:45:: e ERROR: Throwing
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details., Error getting running jobs;
Info:
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details. --> System.Runtime.InteropServices.COMException (0x8009000B): Key
not valid for use in specified state.
at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
errorCode, IntPtr errorInfo)
at RSManagedCrypto.RSCrypto.ExportPublicKey()
at
Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
at Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
at
Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
at Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
at Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRunningJobs()
-- End of inner exception stack trace --
aspnet_wp!crypto!c54!10/09/2004-08:44:45:: i INFO: Initializing crypto as
user: SRV120W03\ASPNET
aspnet_wp!crypto!c54!10/09/2004-08:44:45:: i INFO: Exporting public key
aspnet_wp!library!c54!10/09/2004-08:44:45:: e ERROR: Throwing
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details., Error getting running jobs;
Info:
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details. --> System.Runtime.InteropServices.COMException (0x8009000B): Key
not valid for use in specified state.
at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
errorCode, IntPtr errorInfo)
at RSManagedCrypto.RSCrypto.ExportPublicKey()
at
Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
at Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
at
Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
at Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
at Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRunningJobs()
-- End of inner exception stack trace --
aspnet_wp!crypto!c54!10/09/2004-08:45:45:: i INFO: Initializing crypto as
user: SRV120W03\ASPNET
aspnet_wp!crypto!c54!10/09/2004-08:45:45:: i INFO: Exporting public key
aspnet_wp!library!c54!10/09/2004-08:45:45:: e ERROR: Throwing
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details., Error getting running jobs;
Info:
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details. --> System.Runtime.InteropServices.COMException (0x8009000B): Key
not valid for use in specified state.
at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
errorCode, IntPtr errorInfo)
at RSManagedCrypto.RSCrypto.ExportPublicKey()
at
Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
at Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
at
Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
at Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
at Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRunningJobs()
-- End of inner exception stack trace --
aspnet_wp!crypto!9b8!09/10/2004-08:46:35:: i INFO: Initializing crypto as
user: SRV120W03\ASPNET
aspnet_wp!crypto!9b8!09/10/2004-08:46:35:: i INFO: Exporting public key
aspnet_wp!webserver!9b8!09/10/2004-08:46:35:: e ERROR: Internal error:
System.Runtime.InteropServices.COMException (0x8009000B): Key not valid for
use in specified state.
at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
errorCode, IntPtr errorInfo)
at RSManagedCrypto.RSCrypto.ExportPublicKey()
at
Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
at Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
at
Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
at Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
at Microsoft.ReportingServices.Library.Storage.get_Connection()
at
Microsoft.ReportingServices.Library.Storage.NewStandardSqlCommand(String
storedProcedureName)
at
Microsoft.ReportingServices.Library.DBInterface.GetOneConfigurationInfo(Stri
ng key)
at
Microsoft.ReportingServices.Library.CachedSystemProperties.GetSystemProperty
(String name)
at Microsoft.ReportingServices.Library.CachedSystemProperties.Get(String
name)
at
Microsoft.ReportingServices.Library.CachedSystemProperties.GetParameter(Stri
ng name)
at Microsoft.ReportingServices.Library.RSService.get_MyReportsEnabled()
at Microsoft.ReportingServices.Library.RSService.PathToInternal(String
source)
at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
path, Boolean validate, Boolean convert, Boolean translate)
at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
path)
at
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPageCon
tent()
at
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPage()
aspnet_wp!library!9b8!09/10/2004-08:46:35:: e ERROR: Throwing
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details., ;
Info:
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details. --> System.Runtime.InteropServices.COMException (0x8009000B): Key
not valid for use in specified state.
at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
errorCode, IntPtr errorInfo)
at RSManagedCrypto.RSCrypto.ExportPublicKey()
at
Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
at Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
at
Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
at Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
at Microsoft.ReportingServices.Library.Storage.get_Connection()
at
Microsoft.ReportingServices.Library.Storage.NewStandardSqlCommand(String
storedProcedureName)
at
Microsoft.ReportingServices.Library.DBInterface.GetOneConfigurationInfo(Stri
ng key)
at
Microsoft.ReportingServices.Library.CachedSystemProperties.GetSystemProperty
(String name)
at Microsoft.ReportingServices.Library.CachedSystemProperties.Get(String
name)
at
Microsoft.ReportingServices.Library.CachedSystemProperties.GetParameter(Stri
ng name)
at Microsoft.ReportingServices.Library.RSService.get_MyReportsEnabled()
at Microsoft.ReportingServices.Library.RSService.PathToInternal(String
source)
at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
path, Boolean validate, Boolean convert, Boolean translate)
at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
path)
at
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPageCon
tent()
at
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPage()
-- End of inner exception stack trace --
aspnet_wp!crypto!3b8!10/09/2004-08:46:45:: i INFO: Initializing crypto as
user: SRV120W03\ASPNET
aspnet_wp!crypto!3b8!10/09/2004-08:46:45:: i INFO: Exporting public key
aspnet_wp!library!3b8!10/09/2004-08:46:45:: e ERROR: Throwing
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details., Error getting running jobs;
Info:
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details. --> System.Runtime.InteropServices.COMException (0x8009000B): Key
not valid for use in specified state.
at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
errorCode, IntPtr errorInfo)
at RSManagedCrypto.RSCrypto.ExportPublicKey()
at
Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
at Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
at
Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
at Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
at Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRunningJobs()
-- End of inner exception stack trace --
aspnet_wp!crypto!9b8!09/10/2004-08:47:00:: i INFO: Initializing crypto as
user: SRV120W03\ASPNET
aspnet_wp!crypto!9b8!09/10/2004-08:47:00:: i INFO: Exporting public key
aspnet_wp!webserver!9b8!09/10/2004-08:47:00:: e ERROR: Internal error:
System.Runtime.InteropServices.COMException (0x8009000B): Key not valid for
use in specified state.
at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
errorCode, IntPtr errorInfo)
at RSManagedCrypto.RSCrypto.ExportPublicKey()
at
Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
at Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
at
Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
at Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
at Microsoft.ReportingServices.Library.Storage.get_Connection()
at
Microsoft.ReportingServices.Library.Storage.NewStandardSqlCommand(String
storedProcedureName)
at
Microsoft.ReportingServices.Library.DBInterface.GetOneConfigurationInfo(Stri
ng key)
at
Microsoft.ReportingServices.Library.CachedSystemProperties.GetSystemProperty
(String name)
at Microsoft.ReportingServices.Library.CachedSystemProperties.Get(String
name)
at
Microsoft.ReportingServices.Library.CachedSystemProperties.GetParameter(Stri
ng name)
at Microsoft.ReportingServices.Library.RSService.get_MyReportsEnabled()
at Microsoft.ReportingServices.Library.RSService.PathToInternal(String
source)
at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
path, Boolean validate, Boolean convert, Boolean translate)
at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
path)
at
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPageCon
tent()
at
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPage()
aspnet_wp!library!9b8!09/10/2004-08:47:00:: e ERROR: Throwing
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details., ;
Info:
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details. --> System.Runtime.InteropServices.COMException (0x8009000B): Key
not valid for use in specified state.
at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
errorCode, IntPtr errorInfo)
at RSManagedCrypto.RSCrypto.ExportPublicKey()
at
Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
at Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
at
Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
at Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
at Microsoft.ReportingServices.Library.Storage.get_Connection()
at
Microsoft.ReportingServices.Library.Storage.NewStandardSqlCommand(String
storedProcedureName)
at
Microsoft.ReportingServices.Library.DBInterface.GetOneConfigurationInfo(Stri
ng key)
at
Microsoft.ReportingServices.Library.CachedSystemProperties.GetSystemProperty
(String name)
at Microsoft.ReportingServices.Library.CachedSystemProperties.Get(String
name)
at
Microsoft.ReportingServices.Library.CachedSystemProperties.GetParameter(Stri
ng name)
at Microsoft.ReportingServices.Library.RSService.get_MyReportsEnabled()
at Microsoft.ReportingServices.Library.RSService.PathToInternal(String
source)
at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
path, Boolean validate, Boolean convert, Boolean translate)
at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
path)
at
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPageCon
tent()
at
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPage()
-- End of inner exception stack trace --
aspnet_wp!crypto!c54!10/09/2004-08:47:45:: i INFO: Initializing crypto as
user: SRV120W03\ASPNET
aspnet_wp!crypto!c54!10/09/2004-08:47:45:: i INFO: Exporting public key
aspnet_wp!library!c54!10/09/2004-08:47:45:: e ERROR: Throwing
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details., Error getting running jobs;
Info:
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details. --> System.Runtime.InteropServices.COMException (0x8009000B): Key
not valid for use in specified state.
at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
errorCode, IntPtr errorInfo)
at RSManagedCrypto.RSCrypto.ExportPublicKey()
at
Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
at Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
at
Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
at Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
at Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRunningJobs()
-- End of inner exception stack trace --
aspnet_wp!crypto!3b8!10/09/2004-08:48:45:: i INFO: Initializing crypto as
user: SRV120W03\ASPNET
aspnet_wp!crypto!3b8!10/09/2004-08:48:45:: i INFO: Exporting public key
aspnet_wp!library!3b8!10/09/2004-08:48:45:: e ERROR: Throwing
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details., Error getting running jobs;
Info:
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details. --> System.Runtime.InteropServices.COMException (0x8009000B): Key
not valid for use in specified state.
at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
errorCode, IntPtr errorInfo)
at RSManagedCrypto.RSCrypto.ExportPublicKey()
at
Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
at Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
at
Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
at Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
at Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRunningJobs()
-- End of inner exception stack trace --
aspnet_wp!crypto!3b8!10/09/2004-08:49:45:: i INFO: Initializing crypto as
user: SRV120W03\ASPNET
aspnet_wp!crypto!3b8!10/09/2004-08:49:45:: i INFO: Exporting public key
aspnet_wp!library!3b8!10/09/2004-08:49:45:: e ERROR: Throwing
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details., Error getting running jobs;
Info:
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
An internal error occurred on the report server. See the error log for more
details. --> System.Runtime.InteropServices.COMException (0x8009000B): Key
not valid for use in specified state.
at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
errorCode, IntPtr errorInfo)
at RSManagedCrypto.RSCrypto.ExportPublicKey()
at
Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
at Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
at
Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
at Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
at Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRunningJobs()
-- End of inner exception stack trace --Simon,
In your machine.config file, what are your <machineKey> settings?
--Carlos
"Simon Dingley" <newsgroups@.nospam-creativenrg.co.uk> wrote in message
news:ueiTVzwlEHA.2864@.TK2MSFTNGP14.phx.gbl...
> Reporting Services has been fine for me up until last night and now I
can't
> view any reports as the R/Server keeps throwing the error:
> "Key not valid for use in specified state"
> I can't seem to track down any help and the link provided in the error
> report is completly useless saying:
> "Internal errors are uncommon and difficult to diagnose."
> If it helps the log file is below:
> <Header>
> <Product>Microsoft SQL Server Reporting Services Version
> 8.00.743.00</Product>
> <Locale>en-US</Locale>
> <TimeZone>GMT Daylight Time</TimeZone>
> <Path>C:\Program Files\Microsoft SQL Server\MSSQL\Reporting
> Services\LogFiles\ReportServer__09_10_2004_08_31_45.log</Path>
> <SystemName>SRV120W03</SystemName>
> <OSName>Microsoft Windows NT 5.2.3790.0</OSName>
> <OSVersion>5.2.3790.0</OSVersion>
> </Header>
> aspnet_wp!webserver!9b8!10/09/2004-08:31:45:: i INFO: Reporting Web Server
> started
> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
> ConnectionType to '0' as specified in Configuration file.
> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
> IsSchedulingService to 'True' as specified in Configuration file.
> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
> IsNotificationService to 'True' as specified in Configuration file.
> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
> IsEventService to 'True' as specified in Configuration file.
> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
> PollingInterval to '10' second(s) as specified in Configuration file.
> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
MemoryLimit
> to '60' percent as specified in Configuration file.
> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
RecycleTime
> to '720' minute(s) as specified in Configuration file.
> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
> MaximumMemoryLimit to '80' percent as specified in Configuration file.
> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
> MaxAppDomainUnloadTime to '30' minute(s) as specified in Configuration
file.
> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
> MaxQueueThreads to '0' thread(s) as specified in Configuration file.
> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
> MaxActiveReqForOneUser to '20' requests(s) as specified in Configuration
> file.
> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
> MaxScheduleWait to '5' second(s) as specified in Configuration file.
> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
> DatabaseQueryTimeout to '120' second(s) as specified in Configuration
file.
> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
> InstanceName to 'MSSQLSERVER' as specified in Configuration file.
> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
> ProcessRecycleOptions to '0' as specified in Configuration file.
> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
> RunningRequestsScavengerCycle to '60' second(s) as specified in
> Configuration file.
> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
> RunningRequestsDbCycle to '60' second(s) as specified in Configuration
file.
> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
> RunningRequestsAge to '30' second(s) as specified in Configuration file.
> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
> CleanupCycleMinutes to '10' minute(s) as specified in Configuration file.
> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
> SecureConnectionLevel to '0' as specified in Configuration file.
> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO: Initializing
> DisplayErrorLink to 'True' as specified in Configuration file.
> aspnet_wp!resourceutilities!9b8!10/09/2004-08:31:45:: i INFO: Running on 1
> physical processors, 2 logical processors
> aspnet_wp!resourceutilities!9b8!10/09/2004-08:31:45:: i INFO: Reporting
> Services starting SKU: Standard
> aspnet_wp!runningjobs!9b8!10/09/2004-08:31:45:: i INFO: Database Cleanup
> (Web Service) timer enabled: Cycle: 600 seconds
> aspnet_wp!runningjobs!9b8!10/09/2004-08:31:45:: i INFO: Running Requests
> Scavenger timer enabled: Cycle: 60 seconds
> aspnet_wp!runningjobs!9b8!10/09/2004-08:31:45:: i INFO: Running Requests
DB
> timer enabled: Cycle: 60 seconds
> aspnet_wp!runningjobs!9b8!10/09/2004-08:31:45:: i INFO: Memory stats
update
> timer enabled: Cycle: 60 seconds
> aspnet_wp!crypto!9b8!09/10/2004-08:31:46:: i INFO: Initializing crypto as
> user: SRV120W03\ASPNET
> aspnet_wp!crypto!9b8!09/10/2004-08:31:46:: i INFO: Exporting public key
> aspnet_wp!webserver!9b8!09/10/2004-08:31:46:: e ERROR: Internal error:
> System.Runtime.InteropServices.COMException (0x8009000B): Key not valid
for
> use in specified state.
> at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
> errorCode, IntPtr errorInfo)
> at RSManagedCrypto.RSCrypto.ExportPublicKey()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
> at
Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
> at
Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
> at Microsoft.ReportingServices.Library.Storage.get_Connection()
> at
> Microsoft.ReportingServices.Library.Storage.NewStandardSqlCommand(String
> storedProcedureName)
> at
>
Microsoft.ReportingServices.Library.DBInterface.GetOneConfigurationInfo(Stri
> ng key)
> at
>
Microsoft.ReportingServices.Library.CachedSystemProperties.GetSystemProperty
> (String name)
> at
Microsoft.ReportingServices.Library.CachedSystemProperties.Get(String
> name)
> at
>
Microsoft.ReportingServices.Library.CachedSystemProperties.GetParameter(Stri
> ng name)
> at Microsoft.ReportingServices.Library.RSService.get_MyReportsEnabled()
> at Microsoft.ReportingServices.Library.RSService.PathToInternal(String
> source)
> at
> Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
> path, Boolean validate, Boolean convert, Boolean translate)
> at
> Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
> path)
> at
>
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPageCon
> tent()
> at
>
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPage()
> aspnet_wp!library!9b8!09/10/2004-08:31:46:: e ERROR: Throwing
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details., ;
> Info:
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details. --> System.Runtime.InteropServices.COMException (0x8009000B):
Key
> not valid for use in specified state.
> at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
> errorCode, IntPtr errorInfo)
> at RSManagedCrypto.RSCrypto.ExportPublicKey()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
> at
Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
> at
Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
> at Microsoft.ReportingServices.Library.Storage.get_Connection()
> at
> Microsoft.ReportingServices.Library.Storage.NewStandardSqlCommand(String
> storedProcedureName)
> at
>
Microsoft.ReportingServices.Library.DBInterface.GetOneConfigurationInfo(Stri
> ng key)
> at
>
Microsoft.ReportingServices.Library.CachedSystemProperties.GetSystemProperty
> (String name)
> at
Microsoft.ReportingServices.Library.CachedSystemProperties.Get(String
> name)
> at
>
Microsoft.ReportingServices.Library.CachedSystemProperties.GetParameter(Stri
> ng name)
> at Microsoft.ReportingServices.Library.RSService.get_MyReportsEnabled()
> at Microsoft.ReportingServices.Library.RSService.PathToInternal(String
> source)
> at
> Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
> path, Boolean validate, Boolean convert, Boolean translate)
> at
> Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
> path)
> at
>
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPageCon
> tent()
> at
>
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPage()
> -- End of inner exception stack trace --
> aspnet_wp!crypto!9b8!09/10/2004-08:32:20:: i INFO: Initializing crypto as
> user: SRV120W03\ASPNET
> aspnet_wp!crypto!9b8!09/10/2004-08:32:20:: i INFO: Exporting public key
> aspnet_wp!webserver!9b8!09/10/2004-08:32:20:: e ERROR: Internal error:
> System.Runtime.InteropServices.COMException (0x8009000B): Key not valid
for
> use in specified state.
> at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
> errorCode, IntPtr errorInfo)
> at RSManagedCrypto.RSCrypto.ExportPublicKey()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
> at
Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
> at
Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
> at Microsoft.ReportingServices.Library.Storage.get_Connection()
> at
> Microsoft.ReportingServices.Library.Storage.NewStandardSqlCommand(String
> storedProcedureName)
> at
>
Microsoft.ReportingServices.Library.DBInterface.GetOneConfigurationInfo(Stri
> ng key)
> at
>
Microsoft.ReportingServices.Library.CachedSystemProperties.GetSystemProperty
> (String name)
> at
Microsoft.ReportingServices.Library.CachedSystemProperties.Get(String
> name)
> at
>
Microsoft.ReportingServices.Library.CachedSystemProperties.GetParameter(Stri
> ng name)
> at Microsoft.ReportingServices.Library.RSService.get_MyReportsEnabled()
> at Microsoft.ReportingServices.Library.RSService.PathToInternal(String
> source)
> at
> Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
> path, Boolean validate, Boolean convert, Boolean translate)
> at
> Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
> path)
> at
>
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPageCon
> tent()
> at
>
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPage()
> aspnet_wp!library!9b8!09/10/2004-08:32:20:: e ERROR: Throwing
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details., ;
> Info:
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details. --> System.Runtime.InteropServices.COMException (0x8009000B):
Key
> not valid for use in specified state.
> at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
> errorCode, IntPtr errorInfo)
> at RSManagedCrypto.RSCrypto.ExportPublicKey()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
> at
Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
> at
Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
> at Microsoft.ReportingServices.Library.Storage.get_Connection()
> at
> Microsoft.ReportingServices.Library.Storage.NewStandardSqlCommand(String
> storedProcedureName)
> at
>
Microsoft.ReportingServices.Library.DBInterface.GetOneConfigurationInfo(Stri
> ng key)
> at
>
Microsoft.ReportingServices.Library.CachedSystemProperties.GetSystemProperty
> (String name)
> at
Microsoft.ReportingServices.Library.CachedSystemProperties.Get(String
> name)
> at
>
Microsoft.ReportingServices.Library.CachedSystemProperties.GetParameter(Stri
> ng name)
> at Microsoft.ReportingServices.Library.RSService.get_MyReportsEnabled()
> at Microsoft.ReportingServices.Library.RSService.PathToInternal(String
> source)
> at
> Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
> path, Boolean validate, Boolean convert, Boolean translate)
> at
> Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
> path)
> at
>
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPageCon
> tent()
> at
>
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPage()
> -- End of inner exception stack trace --
> aspnet_wp!crypto!e18!10/09/2004-08:32:45:: i INFO: Initializing crypto as
> user: SRV120W03\ASPNET
> aspnet_wp!crypto!e18!10/09/2004-08:32:45:: i INFO: Exporting public key
> aspnet_wp!library!e18!10/09/2004-08:32:45:: e ERROR: Throwing
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details., Error getting running jobs;
> Info:
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details. --> System.Runtime.InteropServices.COMException (0x8009000B):
Key
> not valid for use in specified state.
> at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
> errorCode, IntPtr errorInfo)
> at RSManagedCrypto.RSCrypto.ExportPublicKey()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
> at
Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
> at
Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
> at Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRunningJobs()
> -- End of inner exception stack trace --
> aspnet_wp!crypto!3b8!10/09/2004-08:33:45:: i INFO: Initializing crypto as
> user: SRV120W03\ASPNET
> aspnet_wp!crypto!3b8!10/09/2004-08:33:45:: i INFO: Exporting public key
> aspnet_wp!library!3b8!10/09/2004-08:33:45:: e ERROR: Throwing
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details., Error getting running jobs;
> Info:
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details. --> System.Runtime.InteropServices.COMException (0x8009000B):
Key
> not valid for use in specified state.
> at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
> errorCode, IntPtr errorInfo)
> at RSManagedCrypto.RSCrypto.ExportPublicKey()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
> at
Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
> at
Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
> at Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRunningJobs()
> -- End of inner exception stack trace --
> aspnet_wp!crypto!e18!10/09/2004-08:34:45:: i INFO: Initializing crypto as
> user: SRV120W03\ASPNET
> aspnet_wp!crypto!e18!10/09/2004-08:34:45:: i INFO: Exporting public key
> aspnet_wp!library!e18!10/09/2004-08:34:45:: e ERROR: Throwing
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details., Error getting running jobs;
> Info:
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details. --> System.Runtime.InteropServices.COMException (0x8009000B):
Key
> not valid for use in specified state.
> at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
> errorCode, IntPtr errorInfo)
> at RSManagedCrypto.RSCrypto.ExportPublicKey()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
> at
Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
> at
Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
> at Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRunningJobs()
> -- End of inner exception stack trace --
> aspnet_wp!crypto!e18!10/09/2004-08:35:45:: i INFO: Initializing crypto as
> user: SRV120W03\ASPNET
> aspnet_wp!crypto!e18!10/09/2004-08:35:45:: i INFO: Exporting public key
> aspnet_wp!library!e18!10/09/2004-08:35:45:: e ERROR: Throwing
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details., Error getting running jobs;
> Info:
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details. --> System.Runtime.InteropServices.COMException (0x8009000B):
Key
> not valid for use in specified state.
> at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
> errorCode, IntPtr errorInfo)
> at RSManagedCrypto.RSCrypto.ExportPublicKey()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
> at
Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
> at
Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
> at Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRunningJobs()
> -- End of inner exception stack trace --
> aspnet_wp!crypto!e18!10/09/2004-08:36:45:: i INFO: Initializing crypto as
> user: SRV120W03\ASPNET
> aspnet_wp!crypto!e18!10/09/2004-08:36:45:: i INFO: Exporting public key
> aspnet_wp!library!e18!10/09/2004-08:36:45:: e ERROR: Throwing
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details., Error getting running jobs;
> Info:
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details. --> System.Runtime.InteropServices.COMException (0x8009000B):
Key
> not valid for use in specified state.
> at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
> errorCode, IntPtr errorInfo)
> at RSManagedCrypto.RSCrypto.ExportPublicKey()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
> at
Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
> at
Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
> at Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRunningJobs()
> -- End of inner exception stack trace --
> aspnet_wp!crypto!3b8!10/09/2004-08:37:45:: i INFO: Initializing crypto as
> user: SRV120W03\ASPNET
> aspnet_wp!crypto!3b8!10/09/2004-08:37:45:: i INFO: Exporting public key
> aspnet_wp!library!3b8!10/09/2004-08:37:45:: e ERROR: Throwing
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details., Error getting running jobs;
> Info:
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details. --> System.Runtime.InteropServices.COMException (0x8009000B):
Key
> not valid for use in specified state.
> at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
> errorCode, IntPtr errorInfo)
> at RSManagedCrypto.RSCrypto.ExportPublicKey()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
> at
Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
> at
Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
> at Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRunningJobs()
> -- End of inner exception stack trace --
> aspnet_wp!crypto!3b8!10/09/2004-08:38:45:: i INFO: Initializing crypto as
> user: SRV120W03\ASPNET
> aspnet_wp!crypto!3b8!10/09/2004-08:38:45:: i INFO: Exporting public key
> aspnet_wp!library!3b8!10/09/2004-08:38:45:: e ERROR: Throwing
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details., Error getting running jobs;
> Info:
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details. --> System.Runtime.InteropServices.COMException (0x8009000B):
Key
> not valid for use in specified state.
> at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
> errorCode, IntPtr errorInfo)
> at RSManagedCrypto.RSCrypto.ExportPublicKey()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
> at
Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
> at
Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
> at Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRunningJobs()
> -- End of inner exception stack trace --
> aspnet_wp!crypto!3b8!10/09/2004-08:39:45:: i INFO: Initializing crypto as
> user: SRV120W03\ASPNET
> aspnet_wp!crypto!3b8!10/09/2004-08:39:45:: i INFO: Exporting public key
> aspnet_wp!library!3b8!10/09/2004-08:39:45:: e ERROR: Throwing
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details., Error getting running jobs;
> Info:
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details. --> System.Runtime.InteropServices.COMException (0x8009000B):
Key
> not valid for use in specified state.
> at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
> errorCode, IntPtr errorInfo)
> at RSManagedCrypto.RSCrypto.ExportPublicKey()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
> at
Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
> at
Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
> at Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRunningJobs()
> -- End of inner exception stack trace --
> aspnet_wp!crypto!e18!10/09/2004-08:40:45:: i INFO: Initializing crypto as
> user: SRV120W03\ASPNET
> aspnet_wp!crypto!e18!10/09/2004-08:40:45:: i INFO: Exporting public key
> aspnet_wp!library!e18!10/09/2004-08:40:45:: e ERROR: Throwing
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details., Error getting running jobs;
> Info:
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details. --> System.Runtime.InteropServices.COMException (0x8009000B):
Key
> not valid for use in specified state.
> at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
> errorCode, IntPtr errorInfo)
> at RSManagedCrypto.RSCrypto.ExportPublicKey()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
> at
Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
> at
Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
> at Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRunningJobs()
> -- End of inner exception stack trace --
> aspnet_wp!crypto!e18!10/09/2004-08:41:45:: i INFO: Initializing crypto as
> user: SRV120W03\ASPNET
> aspnet_wp!crypto!e18!10/09/2004-08:41:45:: i INFO: Exporting public key
> aspnet_wp!library!e18!10/09/2004-08:41:45:: e ERROR: Throwing
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details., Error doing timer action for Database Cleanup (Web Service);
> Info:
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details. --> System.Runtime.InteropServices.COMException (0x8009000B):
Key
> not valid for use in specified state.
> at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
> errorCode, IntPtr errorInfo)
> at RSManagedCrypto.RSCrypto.ExportPublicKey()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
> at
Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
> at
Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
> at Microsoft.ReportingServices.Library.Storage.get_Connection()
> at
> Microsoft.ReportingServices.Library.Storage.NewStandardSqlCommand(String
> storedProcedureName)
> at Microsoft.ReportingServices.Library.DBInterface.CleanBatchRecords()
> at Microsoft.ReportingServices.Library.RSService.CleanBatch()
> at
> Microsoft.ReportingServices.Library.DatabaseCleanupTimer.DoTimerAction()
> at
> Microsoft.ReportingServices.Diagnostics.TimerActionBase.TimerAction(Object
> unused)
> -- End of inner exception stack trace --
> aspnet_wp!crypto!3b8!10/09/2004-08:41:45:: i INFO: Initializing crypto as
> user: SRV120W03\ASPNET
> aspnet_wp!crypto!3b8!10/09/2004-08:41:45:: i INFO: Exporting public key
> aspnet_wp!library!3b8!10/09/2004-08:41:45:: e ERROR: Throwing
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details., Error getting running jobs;
> Info:
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details. --> System.Runtime.InteropServices.COMException (0x8009000B):
Key
> not valid for use in specified state.
> at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
> errorCode, IntPtr errorInfo)
> at RSManagedCrypto.RSCrypto.ExportPublicKey()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
> at
Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
> at
Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
> at Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRunningJobs()
> -- End of inner exception stack trace --
> aspnet_wp!crypto!c54!10/09/2004-08:42:45:: i INFO: Initializing crypto as
> user: SRV120W03\ASPNET
> aspnet_wp!crypto!c54!10/09/2004-08:42:45:: i INFO: Exporting public key
> aspnet_wp!library!c54!10/09/2004-08:42:45:: e ERROR: Throwing
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details., Error getting running jobs;
> Info:
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details. --> System.Runtime.InteropServices.COMException (0x8009000B):
Key
> not valid for use in specified state.
> at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
> errorCode, IntPtr errorInfo)
> at RSManagedCrypto.RSCrypto.ExportPublicKey()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
> at
Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
> at
Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
> at Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRunningJobs()
> -- End of inner exception stack trace --
> aspnet_wp!crypto!9b8!09/10/2004-08:43:30:: i INFO: Initializing crypto as
> user: SRV120W03\ASPNET
> aspnet_wp!crypto!9b8!09/10/2004-08:43:30:: i INFO: Exporting public key
> aspnet_wp!webserver!9b8!09/10/2004-08:43:30:: e ERROR: Internal error:
> System.Runtime.InteropServices.COMException (0x8009000B): Key not valid
for
> use in specified state.
> at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
> errorCode, IntPtr errorInfo)
> at RSManagedCrypto.RSCrypto.ExportPublicKey()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
> at
Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
> at
Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
> at Microsoft.ReportingServices.Library.Storage.get_Connection()
> at
> Microsoft.ReportingServices.Library.Storage.NewStandardSqlCommand(String
> storedProcedureName)
> at
>
Microsoft.ReportingServices.Library.DBInterface.GetOneConfigurationInfo(Stri
> ng key)
> at
>
Microsoft.ReportingServices.Library.CachedSystemProperties.GetSystemProperty
> (String name)
> at
Microsoft.ReportingServices.Library.CachedSystemProperties.Get(String
> name)
> at
>
Microsoft.ReportingServices.Library.CachedSystemProperties.GetParameter(Stri
> ng name)
> at Microsoft.ReportingServices.Library.RSService.get_MyReportsEnabled()
> at Microsoft.ReportingServices.Library.RSService.PathToInternal(String
> source)
> at
> Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
> path, Boolean validate, Boolean convert, Boolean translate)
> at
> Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
> path)
> at
>
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPageCon
> tent()
> at
>
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPage()
> aspnet_wp!library!9b8!09/10/2004-08:43:30:: e ERROR: Throwing
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details., ;
> Info:
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details. --> System.Runtime.InteropServices.COMException (0x8009000B):
Key
> not valid for use in specified state.
> at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
> errorCode, IntPtr errorInfo)
> at RSManagedCrypto.RSCrypto.ExportPublicKey()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
> at
Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
> at
Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
> at Microsoft.ReportingServices.Library.Storage.get_Connection()
> at
> Microsoft.ReportingServices.Library.Storage.NewStandardSqlCommand(String
> storedProcedureName)
> at
>
Microsoft.ReportingServices.Library.DBInterface.GetOneConfigurationInfo(Stri
> ng key)
> at
>
Microsoft.ReportingServices.Library.CachedSystemProperties.GetSystemProperty
> (String name)
> at
Microsoft.ReportingServices.Library.CachedSystemProperties.Get(String
> name)
> at
>
Microsoft.ReportingServices.Library.CachedSystemProperties.GetParameter(Stri
> ng name)
> at Microsoft.ReportingServices.Library.RSService.get_MyReportsEnabled()
> at Microsoft.ReportingServices.Library.RSService.PathToInternal(String
> source)
> at
> Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
> path, Boolean validate, Boolean convert, Boolean translate)
> at
> Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
> path)
> at
>
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPageCon
> tent()
> at
>
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPage()
> -- End of inner exception stack trace --
> aspnet_wp!crypto!3b8!10/09/2004-08:43:45:: i INFO: Initializing crypto as
> user: SRV120W03\ASPNET
> aspnet_wp!crypto!3b8!10/09/2004-08:43:45:: i INFO: Exporting public key
> aspnet_wp!library!3b8!10/09/2004-08:43:45:: e ERROR: Throwing
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details., Error getting running jobs;
> Info:
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details. --> System.Runtime.InteropServices.COMException (0x8009000B):
Key
> not valid for use in specified state.
> at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
> errorCode, IntPtr errorInfo)
> at RSManagedCrypto.RSCrypto.ExportPublicKey()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
> at
Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
> at
Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
> at Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRunningJobs()
> -- End of inner exception stack trace --
> aspnet_wp!crypto!c54!10/09/2004-08:44:45:: i INFO: Initializing crypto as
> user: SRV120W03\ASPNET
> aspnet_wp!crypto!c54!10/09/2004-08:44:45:: i INFO: Exporting public key
> aspnet_wp!library!c54!10/09/2004-08:44:45:: e ERROR: Throwing
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details., Error getting running jobs;
> Info:
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details. --> System.Runtime.InteropServices.COMException (0x8009000B):
Key
> not valid for use in specified state.
> at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
> errorCode, IntPtr errorInfo)
> at RSManagedCrypto.RSCrypto.ExportPublicKey()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
> at
Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
> at
Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
> at Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRunningJobs()
> -- End of inner exception stack trace --
> aspnet_wp!crypto!c54!10/09/2004-08:45:45:: i INFO: Initializing crypto as
> user: SRV120W03\ASPNET
> aspnet_wp!crypto!c54!10/09/2004-08:45:45:: i INFO: Exporting public key
> aspnet_wp!library!c54!10/09/2004-08:45:45:: e ERROR: Throwing
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details., Error getting running jobs;
> Info:
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details. --> System.Runtime.InteropServices.COMException (0x8009000B):
Key
> not valid for use in specified state.
> at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
> errorCode, IntPtr errorInfo)
> at RSManagedCrypto.RSCrypto.ExportPublicKey()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
> at
Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
> at
Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
> at Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRunningJobs()
> -- End of inner exception stack trace --
> aspnet_wp!crypto!9b8!09/10/2004-08:46:35:: i INFO: Initializing crypto as
> user: SRV120W03\ASPNET
> aspnet_wp!crypto!9b8!09/10/2004-08:46:35:: i INFO: Exporting public key
> aspnet_wp!webserver!9b8!09/10/2004-08:46:35:: e ERROR: Internal error:
> System.Runtime.InteropServices.COMException (0x8009000B): Key not valid
for
> use in specified state.
> at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
> errorCode, IntPtr errorInfo)
> at RSManagedCrypto.RSCrypto.ExportPublicKey()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
> at
Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
> at
Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
> at Microsoft.ReportingServices.Library.Storage.get_Connection()
> at
> Microsoft.ReportingServices.Library.Storage.NewStandardSqlCommand(String
> storedProcedureName)
> at
>
Microsoft.ReportingServices.Library.DBInterface.GetOneConfigurationInfo(Stri
> ng key)
> at
>
Microsoft.ReportingServices.Library.CachedSystemProperties.GetSystemProperty
> (String name)
> at
Microsoft.ReportingServices.Library.CachedSystemProperties.Get(String
> name)
> at
>
Microsoft.ReportingServices.Library.CachedSystemProperties.GetParameter(Stri
> ng name)
> at Microsoft.ReportingServices.Library.RSService.get_MyReportsEnabled()
> at Microsoft.ReportingServices.Library.RSService.PathToInternal(String
> source)
> at
> Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
> path, Boolean validate, Boolean convert, Boolean translate)
> at
> Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
> path)
> at
>
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPageCon
> tent()
> at
>
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPage()
> aspnet_wp!library!9b8!09/10/2004-08:46:35:: e ERROR: Throwing
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details., ;
> Info:
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details. --> System.Runtime.InteropServices.COMException (0x8009000B):
Key
> not valid for use in specified state.
> at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
> errorCode, IntPtr errorInfo)
> at RSManagedCrypto.RSCrypto.ExportPublicKey()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
> at
Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
> at
Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
> at Microsoft.ReportingServices.Library.Storage.get_Connection()
> at
> Microsoft.ReportingServices.Library.Storage.NewStandardSqlCommand(String
> storedProcedureName)
> at
>
Microsoft.ReportingServices.Library.DBInterface.GetOneConfigurationInfo(Stri
> ng key)
> at
>
Microsoft.ReportingServices.Library.CachedSystemProperties.GetSystemProperty
> (String name)
> at
Microsoft.ReportingServices.Library.CachedSystemProperties.Get(String
> name)
> at
>
Microsoft.ReportingServices.Library.CachedSystemProperties.GetParameter(Stri
> ng name)
> at Microsoft.ReportingServices.Library.RSService.get_MyReportsEnabled()
> at Microsoft.ReportingServices.Library.RSService.PathToInternal(String
> source)
> at
> Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
> path, Boolean validate, Boolean convert, Boolean translate)
> at
> Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
> path)
> at
>
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPageCon
> tent()
> at
>
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPage()
> -- End of inner exception stack trace --
> aspnet_wp!crypto!3b8!10/09/2004-08:46:45:: i INFO: Initializing crypto as
> user: SRV120W03\ASPNET
> aspnet_wp!crypto!3b8!10/09/2004-08:46:45:: i INFO: Exporting public key
> aspnet_wp!library!3b8!10/09/2004-08:46:45:: e ERROR: Throwing
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details., Error getting running jobs;
> Info:
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details. --> System.Runtime.InteropServices.COMException (0x8009000B):
Key
> not valid for use in specified state.
> at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
> errorCode, IntPtr errorInfo)
> at RSManagedCrypto.RSCrypto.ExportPublicKey()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
> at
Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
> at
Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
> at Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRunningJobs()
> -- End of inner exception stack trace --
> aspnet_wp!crypto!9b8!09/10/2004-08:47:00:: i INFO: Initializing crypto as
> user: SRV120W03\ASPNET
> aspnet_wp!crypto!9b8!09/10/2004-08:47:00:: i INFO: Exporting public key
> aspnet_wp!webserver!9b8!09/10/2004-08:47:00:: e ERROR: Internal error:
> System.Runtime.InteropServices.COMException (0x8009000B): Key not valid
for
> use in specified state.
> at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
> errorCode, IntPtr errorInfo)
> at RSManagedCrypto.RSCrypto.ExportPublicKey()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
> at
Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
> at
Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
> at Microsoft.ReportingServices.Library.Storage.get_Connection()
> at
> Microsoft.ReportingServices.Library.Storage.NewStandardSqlCommand(String
> storedProcedureName)
> at
>
Microsoft.ReportingServices.Library.DBInterface.GetOneConfigurationInfo(Stri
> ng key)
> at
>
Microsoft.ReportingServices.Library.CachedSystemProperties.GetSystemProperty
> (String name)
> at
Microsoft.ReportingServices.Library.CachedSystemProperties.Get(String
> name)
> at
>
Microsoft.ReportingServices.Library.CachedSystemProperties.GetParameter(Stri
> ng name)
> at Microsoft.ReportingServices.Library.RSService.get_MyReportsEnabled()
> at Microsoft.ReportingServices.Library.RSService.PathToInternal(String
> source)
> at
> Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
> path, Boolean validate, Boolean convert, Boolean translate)
> at
> Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
> path)
> at
>
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPageCon
> tent()
> at
>
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPage()
> aspnet_wp!library!9b8!09/10/2004-08:47:00:: e ERROR: Throwing
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details., ;
> Info:
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details. --> System.Runtime.InteropServices.COMException (0x8009000B):
Key
> not valid for use in specified state.
> at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
> errorCode, IntPtr errorInfo)
> at RSManagedCrypto.RSCrypto.ExportPublicKey()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
> at
Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
> at
Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
> at Microsoft.ReportingServices.Library.Storage.get_Connection()
> at
> Microsoft.ReportingServices.Library.Storage.NewStandardSqlCommand(String
> storedProcedureName)
> at
>
Microsoft.ReportingServices.Library.DBInterface.GetOneConfigurationInfo(Stri
> ng key)
> at
>
Microsoft.ReportingServices.Library.CachedSystemProperties.GetSystemProperty
> (String name)
> at
Microsoft.ReportingServices.Library.CachedSystemProperties.Get(String
> name)
> at
>
Microsoft.ReportingServices.Library.CachedSystemProperties.GetParameter(Stri
> ng name)
> at Microsoft.ReportingServices.Library.RSService.get_MyReportsEnabled()
> at Microsoft.ReportingServices.Library.RSService.PathToInternal(String
> source)
> at
> Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
> path, Boolean validate, Boolean convert, Boolean translate)
> at
> Microsoft.ReportingServices.Diagnostics.CatalogItemContext.SetPath(String
> path)
> at
>
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPageCon
> tent()
> at
>
Microsoft.ReportingServices.WebServer.ReportServiceHttpHandler.RenderPage()
> -- End of inner exception stack trace --
> aspnet_wp!crypto!c54!10/09/2004-08:47:45:: i INFO: Initializing crypto as
> user: SRV120W03\ASPNET
> aspnet_wp!crypto!c54!10/09/2004-08:47:45:: i INFO: Exporting public key
> aspnet_wp!library!c54!10/09/2004-08:47:45:: e ERROR: Throwing
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details., Error getting running jobs;
> Info:
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details. --> System.Runtime.InteropServices.COMException (0x8009000B):
Key
> not valid for use in specified state.
> at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
> errorCode, IntPtr errorInfo)
> at RSManagedCrypto.RSCrypto.ExportPublicKey()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
> at
Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
> at
Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
> at Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRunningJobs()
> -- End of inner exception stack trace --
> aspnet_wp!crypto!3b8!10/09/2004-08:48:45:: i INFO: Initializing crypto as
> user: SRV120W03\ASPNET
> aspnet_wp!crypto!3b8!10/09/2004-08:48:45:: i INFO: Exporting public key
> aspnet_wp!library!3b8!10/09/2004-08:48:45:: e ERROR: Throwing
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details., Error getting running jobs;
> Info:
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details. --> System.Runtime.InteropServices.COMException (0x8009000B):
Key
> not valid for use in specified state.
> at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
> errorCode, IntPtr errorInfo)
> at RSManagedCrypto.RSCrypto.ExportPublicKey()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
> at
Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
> at
Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
> at Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRunningJobs()
> -- End of inner exception stack trace --
> aspnet_wp!crypto!3b8!10/09/2004-08:49:45:: i INFO: Initializing crypto as
> user: SRV120W03\ASPNET
> aspnet_wp!crypto!3b8!10/09/2004-08:49:45:: i INFO: Exporting public key
> aspnet_wp!library!3b8!10/09/2004-08:49:45:: e ERROR: Throwing
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details., Error getting running jobs;
> Info:
>
Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException:
> An internal error occurred on the report server. See the error log for
more
> details. --> System.Runtime.InteropServices.COMException (0x8009000B):
Key
> not valid for use in specified state.
> at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
> errorCode, IntPtr errorInfo)
> at RSManagedCrypto.RSCrypto.ExportPublicKey()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.GetEncryptionKey()
> at
Microsoft.ReportingServices.Library.ConnectionManager.ConnectStorage()
> at
> Microsoft.ReportingServices.Library.ConnectionManager.VerifyConnection()
> at
Microsoft.ReportingServices.Library.ConnectionManager.get_Connection()
> at Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRunningJobs()
> -- End of inner exception stack trace --
>|||For the benefit of others that may come across this error it was something
to do with the installation of a patch for the invalid cursor state(KB
Article http://support.microsoft.com/default.aspx?kbid=831997 ). Microsoft
appeared to know of this when we called and here is the worst of it - a full
reinstall of Reporting Services was the only way to correct the error which
meant having to republish every single report on the reporting server.
Simon
"Carlos C Tapang" <ctapang@.centerus.com> wrote in message
news:efWak4xlEHA.1008@.tk2msftngp13.phx.gbl...
> Simon,
> In your machine.config file, what are your <machineKey> settings?
> --|||Carlos, Simon, have you discovered a solution to this
issue? Same thing happened to me after I installed
VS.NET remote debugging on the development server where I
was hosting the report service. I tried reinstalling
reporting services, but I'm getting the same error.
FWIW, my machine key setting is
<machineKey
validationKey="AutoGenerate,IsolateApps"
decryptionKey="AutoGenerate,IsolateApps"
validation="SHA1"/>.
Thanks,
-Marc
>--Original Message--
>Simon,
>In your machine.config file, what are your <machineKey>
settings?
>--Carlos
>"Simon Dingley" <newsgroups@.nospam-creativenrg.co.uk>
wrote in message
>news:ueiTVzwlEHA.2864@.TK2MSFTNGP14.phx.gbl...
>> Reporting Services has been fine for me up until last
night and now I
>can't
>> view any reports as the R/Server keeps throwing the
error:
>> "Key not valid for use in specified state"
>> I can't seem to track down any help and the link
provided in the error
>> report is completly useless saying:
>> "Internal errors are uncommon and difficult to
diagnose."
>> If it helps the log file is below:
>> <Header>
>> <Product>Microsoft SQL Server Reporting Services
Version
>> 8.00.743.00</Product>
>> <Locale>en-US</Locale>
>> <TimeZone>GMT Daylight Time</TimeZone>
>> <Path>C:\Program Files\Microsoft SQL
Server\MSSQL\Reporting
Services\LogFiles\ReportServer__09_10_2004_08_31_45.log</P
ath>
>> <SystemName>SRV120W03</SystemName>
>> <OSName>Microsoft Windows NT 5.2.3790.0</OSName>
>> <OSVersion>5.2.3790.0</OSVersion>
>> </Header>
>> aspnet_wp!webserver!9b8!10/09/2004-08:31:45:: i INFO:
Reporting Web Server
>> started
>> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO:
Initializing
>> ConnectionType to '0' as specified in Configuration
file.
>> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO:
Initializing
>> IsSchedulingService to 'True' as specified in
Configuration file.
>> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO:
Initializing
>> IsNotificationService to 'True' as specified in
Configuration file.
>> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO:
Initializing
>> IsEventService to 'True' as specified in
Configuration file.
>> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO:
Initializing
>> PollingInterval to '10' second(s) as specified in
Configuration file.
>> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO:
Initializing
>MemoryLimit
>> to '60' percent as specified in Configuration file.
>> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO:
Initializing
>RecycleTime
>> to '720' minute(s) as specified in Configuration file.
>> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO:
Initializing
>> MaximumMemoryLimit to '80' percent as specified in
Configuration file.
>> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO:
Initializing
>> MaxAppDomainUnloadTime to '30' minute(s) as specified
in Configuration
>file.
>> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO:
Initializing
>> MaxQueueThreads to '0' thread(s) as specified in
Configuration file.
>> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO:
Initializing
>> MaxActiveReqForOneUser to '20' requests(s) as
specified in Configuration
>> file.
>> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO:
Initializing
>> MaxScheduleWait to '5' second(s) as specified in
Configuration file.
>> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO:
Initializing
>> DatabaseQueryTimeout to '120' second(s) as specified
in Configuration
>file.
>> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO:
Initializing
>> InstanceName to 'MSSQLSERVER' as specified in
Configuration file.
>> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO:
Initializing
>> ProcessRecycleOptions to '0' as specified in
Configuration file.
>> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO:
Initializing
>> RunningRequestsScavengerCycle to '60' second(s) as
specified in
>> Configuration file.
>> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO:
Initializing
>> RunningRequestsDbCycle to '60' second(s) as specified
in Configuration
>file.
>> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO:
Initializing
>> RunningRequestsAge to '30' second(s) as specified in
Configuration file.
>> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO:
Initializing
>> CleanupCycleMinutes to '10' minute(s) as specified in
Configuration file.
>> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO:
Initializing
>> SecureConnectionLevel to '0' as specified in
Configuration file.
>> aspnet_wp!library!9b8!10/09/2004-08:31:45:: i INFO:
Initializing
>> DisplayErrorLink to 'True' as specified in
Configuration file.
>> aspnet_wp!resourceutilities!9b8!10/09/2004-08:31:45::
i INFO: Running on 1
>> physical processors, 2 logical processors
>> aspnet_wp!resourceutilities!9b8!10/09/2004-08:31:45::
i INFO: Reporting
>> Services starting SKU: Standard
>> aspnet_wp!runningjobs!9b8!10/09/2004-08:31:45:: i
INFO: Database Cleanup
>> (Web Service) timer enabled: Cycle: 600 seconds
>> aspnet_wp!runningjobs!9b8!10/09/2004-08:31:45:: i
INFO: Running Requests
>> Scavenger timer enabled: Cycle: 60 seconds
>> aspnet_wp!runningjobs!9b8!10/09/2004-08:31:45:: i
INFO: Running Requests
>DB
>> timer enabled: Cycle: 60 seconds
>> aspnet_wp!runningjobs!9b8!10/09/2004-08:31:45:: i
INFO: Memory stats
>update
>> timer enabled: Cycle: 60 seconds
>> aspnet_wp!crypto!9b8!09/10/2004-08:31:46:: i INFO:
Initializing crypto as
>> user: SRV120W03\ASPNET
>> aspnet_wp!crypto!9b8!09/10/2004-08:31:46:: i INFO:
Exporting public key
>> aspnet_wp!webserver!9b8!09/10/2004-08:31:46:: e ERROR:
Internal error:
>> System.Runtime.InteropServices.COMException
(0x8009000B): Key not valid
>for
>> use in specified state.
>> at
System.Runtime.InteropServices.Marshal.ThrowExceptionForHR
(Int32
>> errorCode, IntPtr errorInfo)
>> at RSManagedCrypto.RSCrypto.ExportPublicKey()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.GetE
ncryptionKey()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.Con
nectStorage()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.Veri
fyConnection()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.get
_Connection()
>> at
Microsoft.ReportingServices.Library.Storage.get_Connection
()
>> at
Microsoft.ReportingServices.Library.Storage.NewStandardSql
Command(String
>> storedProcedureName)
>> at
>Microsoft.ReportingServices.Library.DBInterface.GetOneCon
figurationInfo(Stri
>> ng key)
>> at
>Microsoft.ReportingServices.Library.CachedSystemPropertie
s.GetSystemProperty
>> (String name)
>> at
>Microsoft.ReportingServices.Library.CachedSystemPropertie
s.Get(String
>> name)
>> at
>Microsoft.ReportingServices.Library.CachedSystemPropertie
s.GetParameter(Stri
>> ng name)
>> at
Microsoft.ReportingServices.Library.RSService.get_MyReport
sEnabled()
>> at
Microsoft.ReportingServices.Library.RSService.PathToIntern
al(String
>> source)
>> at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext
.SetPath(String
>> path, Boolean validate, Boolean convert, Boolean
translate)
>> at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext
.SetPath(String
>> path)
>> at
>Microsoft.ReportingServices.WebServer.ReportServiceHttpHa
ndler.RenderPageCon
>> tent()
>> at
>Microsoft.ReportingServices.WebServer.ReportServiceHttpHa
ndler.RenderPage()
>> aspnet_wp!library!9b8!09/10/2004-08:31:46:: e ERROR:
Throwing
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details., ;
>> Info:
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details. -->
System.Runtime.InteropServices.COMException (0x8009000B):
>Key
>> not valid for use in specified state.
>> at
System.Runtime.InteropServices.Marshal.ThrowExceptionForHR
(Int32
>> errorCode, IntPtr errorInfo)
>> at RSManagedCrypto.RSCrypto.ExportPublicKey()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.GetE
ncryptionKey()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.Con
nectStorage()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.Veri
fyConnection()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.get
_Connection()
>> at
Microsoft.ReportingServices.Library.Storage.get_Connection
()
>> at
Microsoft.ReportingServices.Library.Storage.NewStandardSql
Command(String
>> storedProcedureName)
>> at
>Microsoft.ReportingServices.Library.DBInterface.GetOneCon
figurationInfo(Stri
>> ng key)
>> at
>Microsoft.ReportingServices.Library.CachedSystemPropertie
s.GetSystemProperty
>> (String name)
>> at
>Microsoft.ReportingServices.Library.CachedSystemPropertie
s.Get(String
>> name)
>> at
>Microsoft.ReportingServices.Library.CachedSystemPropertie
s.GetParameter(Stri
>> ng name)
>> at
Microsoft.ReportingServices.Library.RSService.get_MyReport
sEnabled()
>> at
Microsoft.ReportingServices.Library.RSService.PathToIntern
al(String
>> source)
>> at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext
.SetPath(String
>> path, Boolean validate, Boolean convert, Boolean
translate)
>> at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext
.SetPath(String
>> path)
>> at
>Microsoft.ReportingServices.WebServer.ReportServiceHttpHa
ndler.RenderPageCon
>> tent()
>> at
>Microsoft.ReportingServices.WebServer.ReportServiceHttpHa
ndler.RenderPage()
>> -- End of inner exception stack trace --
>> aspnet_wp!crypto!9b8!09/10/2004-08:32:20:: i INFO:
Initializing crypto as
>> user: SRV120W03\ASPNET
>> aspnet_wp!crypto!9b8!09/10/2004-08:32:20:: i INFO:
Exporting public key
>> aspnet_wp!webserver!9b8!09/10/2004-08:32:20:: e ERROR:
Internal error:
>> System.Runtime.InteropServices.COMException
(0x8009000B): Key not valid
>for
>> use in specified state.
>> at
System.Runtime.InteropServices.Marshal.ThrowExceptionForHR
(Int32
>> errorCode, IntPtr errorInfo)
>> at RSManagedCrypto.RSCrypto.ExportPublicKey()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.GetE
ncryptionKey()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.Con
nectStorage()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.Veri
fyConnection()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.get
_Connection()
>> at
Microsoft.ReportingServices.Library.Storage.get_Connection
()
>> at
Microsoft.ReportingServices.Library.Storage.NewStandardSql
Command(String
>> storedProcedureName)
>> at
>Microsoft.ReportingServices.Library.DBInterface.GetOneCon
figurationInfo(Stri
>> ng key)
>> at
>Microsoft.ReportingServices.Library.CachedSystemPropertie
s.GetSystemProperty
>> (String name)
>> at
>Microsoft.ReportingServices.Library.CachedSystemPropertie
s.Get(String
>> name)
>> at
>Microsoft.ReportingServices.Library.CachedSystemPropertie
s.GetParameter(Stri
>> ng name)
>> at
Microsoft.ReportingServices.Library.RSService.get_MyReport
sEnabled()
>> at
Microsoft.ReportingServices.Library.RSService.PathToIntern
al(String
>> source)
>> at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext
.SetPath(String
>> path, Boolean validate, Boolean convert, Boolean
translate)
>> at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext
.SetPath(String
>> path)
>> at
>Microsoft.ReportingServices.WebServer.ReportServiceHttpHa
ndler.RenderPageCon
>> tent()
>> at
>Microsoft.ReportingServices.WebServer.ReportServiceHttpHa
ndler.RenderPage()
>> aspnet_wp!library!9b8!09/10/2004-08:32:20:: e ERROR:
Throwing
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details., ;
>> Info:
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details. -->
System.Runtime.InteropServices.COMException (0x8009000B):
>Key
>> not valid for use in specified state.
>> at
System.Runtime.InteropServices.Marshal.ThrowExceptionForHR
(Int32
>> errorCode, IntPtr errorInfo)
>> at RSManagedCrypto.RSCrypto.ExportPublicKey()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.GetE
ncryptionKey()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.Con
nectStorage()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.Veri
fyConnection()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.get
_Connection()
>> at
Microsoft.ReportingServices.Library.Storage.get_Connection
()
>> at
Microsoft.ReportingServices.Library.Storage.NewStandardSql
Command(String
>> storedProcedureName)
>> at
>Microsoft.ReportingServices.Library.DBInterface.GetOneCon
figurationInfo(Stri
>> ng key)
>> at
>Microsoft.ReportingServices.Library.CachedSystemPropertie
s.GetSystemProperty
>> (String name)
>> at
>Microsoft.ReportingServices.Library.CachedSystemPropertie
s.Get(String
>> name)
>> at
>Microsoft.ReportingServices.Library.CachedSystemPropertie
s.GetParameter(Stri
>> ng name)
>> at
Microsoft.ReportingServices.Library.RSService.get_MyReport
sEnabled()
>> at
Microsoft.ReportingServices.Library.RSService.PathToIntern
al(String
>> source)
>> at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext
.SetPath(String
>> path, Boolean validate, Boolean convert, Boolean
translate)
>> at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext
.SetPath(String
>> path)
>> at
>Microsoft.ReportingServices.WebServer.ReportServiceHttpHa
ndler.RenderPageCon
>> tent()
>> at
>Microsoft.ReportingServices.WebServer.ReportServiceHttpHa
ndler.RenderPage()
>> -- End of inner exception stack trace --
>> aspnet_wp!crypto!e18!10/09/2004-08:32:45:: i INFO:
Initializing crypto as
>> user: SRV120W03\ASPNET
>> aspnet_wp!crypto!e18!10/09/2004-08:32:45:: i INFO:
Exporting public key
>> aspnet_wp!library!e18!10/09/2004-08:32:45:: e ERROR:
Throwing
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details., Error getting running jobs;
>> Info:
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details. -->
System.Runtime.InteropServices.COMException (0x8009000B):
>Key
>> not valid for use in specified state.
>> at
System.Runtime.InteropServices.Marshal.ThrowExceptionForHR
(Int32
>> errorCode, IntPtr errorInfo)
>> at RSManagedCrypto.RSCrypto.ExportPublicKey()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.GetE
ncryptionKey()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.Con
nectStorage()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.Veri
fyConnection()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.get
_Connection()
>> at
Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRun
ningJobs()
>> -- End of inner exception stack trace --
>> aspnet_wp!crypto!3b8!10/09/2004-08:33:45:: i INFO:
Initializing crypto as
>> user: SRV120W03\ASPNET
>> aspnet_wp!crypto!3b8!10/09/2004-08:33:45:: i INFO:
Exporting public key
>> aspnet_wp!library!3b8!10/09/2004-08:33:45:: e ERROR:
Throwing
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details., Error getting running jobs;
>> Info:
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details. -->
System.Runtime.InteropServices.COMException (0x8009000B):
>Key
>> not valid for use in specified state.
>> at
System.Runtime.InteropServices.Marshal.ThrowExceptionForHR
(Int32
>> errorCode, IntPtr errorInfo)
>> at RSManagedCrypto.RSCrypto.ExportPublicKey()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.GetE
ncryptionKey()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.Con
nectStorage()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.Veri
fyConnection()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.get
_Connection()
>> at
Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRun
ningJobs()
>> -- End of inner exception stack trace --
>> aspnet_wp!crypto!e18!10/09/2004-08:34:45:: i INFO:
Initializing crypto as
>> user: SRV120W03\ASPNET
>> aspnet_wp!crypto!e18!10/09/2004-08:34:45:: i INFO:
Exporting public key
>> aspnet_wp!library!e18!10/09/2004-08:34:45:: e ERROR:
Throwing
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details., Error getting running jobs;
>> Info:
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details. -->
System.Runtime.InteropServices.COMException (0x8009000B):
>Key
>> not valid for use in specified state.
>> at
System.Runtime.InteropServices.Marshal.ThrowExceptionForHR
(Int32
>> errorCode, IntPtr errorInfo)
>> at RSManagedCrypto.RSCrypto.ExportPublicKey()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.GetE
ncryptionKey()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.Con
nectStorage()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.Veri
fyConnection()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.get
_Connection()
>> at
Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRun
ningJobs()
>> -- End of inner exception stack trace --
>> aspnet_wp!crypto!e18!10/09/2004-08:35:45:: i INFO:
Initializing crypto as
>> user: SRV120W03\ASPNET
>> aspnet_wp!crypto!e18!10/09/2004-08:35:45:: i INFO:
Exporting public key
>> aspnet_wp!library!e18!10/09/2004-08:35:45:: e ERROR:
Throwing
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details., Error getting running jobs;
>> Info:
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details. -->
System.Runtime.InteropServices.COMException (0x8009000B):
>Key
>> not valid for use in specified state.
>> at
System.Runtime.InteropServices.Marshal.ThrowExceptionForHR
(Int32
>> errorCode, IntPtr errorInfo)
>> at RSManagedCrypto.RSCrypto.ExportPublicKey()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.GetE
ncryptionKey()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.Con
nectStorage()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.Veri
fyConnection()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.get
_Connection()
>> at
Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRun
ningJobs()
>> -- End of inner exception stack trace --
>> aspnet_wp!crypto!e18!10/09/2004-08:36:45:: i INFO:
Initializing crypto as
>> user: SRV120W03\ASPNET
>> aspnet_wp!crypto!e18!10/09/2004-08:36:45:: i INFO:
Exporting public key
>> aspnet_wp!library!e18!10/09/2004-08:36:45:: e ERROR:
Throwing
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details., Error getting running jobs;
>> Info:
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details. -->
System.Runtime.InteropServices.COMException (0x8009000B):
>Key
>> not valid for use in specified state.
>> at
System.Runtime.InteropServices.Marshal.ThrowExceptionForHR
(Int32
>> errorCode, IntPtr errorInfo)
>> at RSManagedCrypto.RSCrypto.ExportPublicKey()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.GetE
ncryptionKey()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.Con
nectStorage()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.Veri
fyConnection()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.get
_Connection()
>> at
Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRun
ningJobs()
>> -- End of inner exception stack trace --
>> aspnet_wp!crypto!3b8!10/09/2004-08:37:45:: i INFO:
Initializing crypto as
>> user: SRV120W03\ASPNET
>> aspnet_wp!crypto!3b8!10/09/2004-08:37:45:: i INFO:
Exporting public key
>> aspnet_wp!library!3b8!10/09/2004-08:37:45:: e ERROR:
Throwing
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details., Error getting running jobs;
>> Info:
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details. -->
System.Runtime.InteropServices.COMException (0x8009000B):
>Key
>> not valid for use in specified state.
>> at
System.Runtime.InteropServices.Marshal.ThrowExceptionForHR
(Int32
>> errorCode, IntPtr errorInfo)
>> at RSManagedCrypto.RSCrypto.ExportPublicKey()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.GetE
ncryptionKey()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.Con
nectStorage()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.Veri
fyConnection()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.get
_Connection()
>> at
Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRun
ningJobs()
>> -- End of inner exception stack trace --
>> aspnet_wp!crypto!3b8!10/09/2004-08:38:45:: i INFO:
Initializing crypto as
>> user: SRV120W03\ASPNET
>> aspnet_wp!crypto!3b8!10/09/2004-08:38:45:: i INFO:
Exporting public key
>> aspnet_wp!library!3b8!10/09/2004-08:38:45:: e ERROR:
Throwing
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details., Error getting running jobs;
>> Info:
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details. -->
System.Runtime.InteropServices.COMException (0x8009000B):
>Key
>> not valid for use in specified state.
>> at
System.Runtime.InteropServices.Marshal.ThrowExceptionForHR
(Int32
>> errorCode, IntPtr errorInfo)
>> at RSManagedCrypto.RSCrypto.ExportPublicKey()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.GetE
ncryptionKey()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.Con
nectStorage()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.Veri
fyConnection()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.get
_Connection()
>> at
Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRun
ningJobs()
>> -- End of inner exception stack trace --
>> aspnet_wp!crypto!3b8!10/09/2004-08:39:45:: i INFO:
Initializing crypto as
>> user: SRV120W03\ASPNET
>> aspnet_wp!crypto!3b8!10/09/2004-08:39:45:: i INFO:
Exporting public key
>> aspnet_wp!library!3b8!10/09/2004-08:39:45:: e ERROR:
Throwing
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details., Error getting running jobs;
>> Info:
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details. -->
System.Runtime.InteropServices.COMException (0x8009000B):
>Key
>> not valid for use in specified state.
>> at
System.Runtime.InteropServices.Marshal.ThrowExceptionForHR
(Int32
>> errorCode, IntPtr errorInfo)
>> at RSManagedCrypto.RSCrypto.ExportPublicKey()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.GetE
ncryptionKey()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.Con
nectStorage()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.Veri
fyConnection()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.get
_Connection()
>> at
Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRun
ningJobs()
>> -- End of inner exception stack trace --
>> aspnet_wp!crypto!e18!10/09/2004-08:40:45:: i INFO:
Initializing crypto as
>> user: SRV120W03\ASPNET
>> aspnet_wp!crypto!e18!10/09/2004-08:40:45:: i INFO:
Exporting public key
>> aspnet_wp!library!e18!10/09/2004-08:40:45:: e ERROR:
Throwing
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details., Error getting running jobs;
>> Info:
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details. -->
System.Runtime.InteropServices.COMException (0x8009000B):
>Key
>> not valid for use in specified state.
>> at
System.Runtime.InteropServices.Marshal.ThrowExceptionForHR
(Int32
>> errorCode, IntPtr errorInfo)
>> at RSManagedCrypto.RSCrypto.ExportPublicKey()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.GetE
ncryptionKey()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.Con
nectStorage()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.Veri
fyConnection()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.get
_Connection()
>> at
Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRun
ningJobs()
>> -- End of inner exception stack trace --
>> aspnet_wp!crypto!e18!10/09/2004-08:41:45:: i INFO:
Initializing crypto as
>> user: SRV120W03\ASPNET
>> aspnet_wp!crypto!e18!10/09/2004-08:41:45:: i INFO:
Exporting public key
>> aspnet_wp!library!e18!10/09/2004-08:41:45:: e ERROR:
Throwing
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details., Error doing timer action for Database
Cleanup (Web Service);
>> Info:
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details. -->
System.Runtime.InteropServices.COMException (0x8009000B):
>Key
>> not valid for use in specified state.
>> at
System.Runtime.InteropServices.Marshal.ThrowExceptionForHR
(Int32
>> errorCode, IntPtr errorInfo)
>> at RSManagedCrypto.RSCrypto.ExportPublicKey()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.GetE
ncryptionKey()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.Con
nectStorage()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.Veri
fyConnection()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.get
_Connection()
>> at
Microsoft.ReportingServices.Library.Storage.get_Connection
()
>> at
Microsoft.ReportingServices.Library.Storage.NewStandardSql
Command(String
>> storedProcedureName)
>> at
Microsoft.ReportingServices.Library.DBInterface.CleanBatch
Records()
>> at
Microsoft.ReportingServices.Library.RSService.CleanBatch()
>> at
Microsoft.ReportingServices.Library.DatabaseCleanupTimer.D
oTimerAction()
>> at
Microsoft.ReportingServices.Diagnostics.TimerActionBase.Ti
merAction(Object
>> unused)
>> -- End of inner exception stack trace --
>> aspnet_wp!crypto!3b8!10/09/2004-08:41:45:: i INFO:
Initializing crypto as
>> user: SRV120W03\ASPNET
>> aspnet_wp!crypto!3b8!10/09/2004-08:41:45:: i INFO:
Exporting public key
>> aspnet_wp!library!3b8!10/09/2004-08:41:45:: e ERROR:
Throwing
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details., Error getting running jobs;
>> Info:
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details. -->
System.Runtime.InteropServices.COMException (0x8009000B):
>Key
>> not valid for use in specified state.
>> at
System.Runtime.InteropServices.Marshal.ThrowExceptionForHR
(Int32
>> errorCode, IntPtr errorInfo)
>> at RSManagedCrypto.RSCrypto.ExportPublicKey()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.GetE
ncryptionKey()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.Con
nectStorage()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.Veri
fyConnection()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.get
_Connection()
>> at
Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRun
ningJobs()
>> -- End of inner exception stack trace --
>> aspnet_wp!crypto!c54!10/09/2004-08:42:45:: i INFO:
Initializing crypto as
>> user: SRV120W03\ASPNET
>> aspnet_wp!crypto!c54!10/09/2004-08:42:45:: i INFO:
Exporting public key
>> aspnet_wp!library!c54!10/09/2004-08:42:45:: e ERROR:
Throwing
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details., Error getting running jobs;
>> Info:
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details. -->
System.Runtime.InteropServices.COMException (0x8009000B):
>Key
>> not valid for use in specified state.
>> at
System.Runtime.InteropServices.Marshal.ThrowExceptionForHR
(Int32
>> errorCode, IntPtr errorInfo)
>> at RSManagedCrypto.RSCrypto.ExportPublicKey()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.GetE
ncryptionKey()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.Con
nectStorage()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.Veri
fyConnection()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.get
_Connection()
>> at
Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRun
ningJobs()
>> -- End of inner exception stack trace --
>> aspnet_wp!crypto!9b8!09/10/2004-08:43:30:: i INFO:
Initializing crypto as
>> user: SRV120W03\ASPNET
>> aspnet_wp!crypto!9b8!09/10/2004-08:43:30:: i INFO:
Exporting public key
>> aspnet_wp!webserver!9b8!09/10/2004-08:43:30:: e ERROR:
Internal error:
>> System.Runtime.InteropServices.COMException
(0x8009000B): Key not valid
>for
>> use in specified state.
>> at
System.Runtime.InteropServices.Marshal.ThrowExceptionForHR
(Int32
>> errorCode, IntPtr errorInfo)
>> at RSManagedCrypto.RSCrypto.ExportPublicKey()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.GetE
ncryptionKey()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.Con
nectStorage()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.Veri
fyConnection()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.get
_Connection()
>> at
Microsoft.ReportingServices.Library.Storage.get_Connection
()
>> at
Microsoft.ReportingServices.Library.Storage.NewStandardSql
Command(String
>> storedProcedureName)
>> at
>Microsoft.ReportingServices.Library.DBInterface.GetOneCon
figurationInfo(Stri
>> ng key)
>> at
>Microsoft.ReportingServices.Library.CachedSystemPropertie
s.GetSystemProperty
>> (String name)
>> at
>Microsoft.ReportingServices.Library.CachedSystemPropertie
s.Get(String
>> name)
>> at
>Microsoft.ReportingServices.Library.CachedSystemPropertie
s.GetParameter(Stri
>> ng name)
>> at
Microsoft.ReportingServices.Library.RSService.get_MyReport
sEnabled()
>> at
Microsoft.ReportingServices.Library.RSService.PathToIntern
al(String
>> source)
>> at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext
.SetPath(String
>> path, Boolean validate, Boolean convert, Boolean
translate)
>> at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext
.SetPath(String
>> path)
>> at
>Microsoft.ReportingServices.WebServer.ReportServiceHttpHa
ndler.RenderPageCon
>> tent()
>> at
>Microsoft.ReportingServices.WebServer.ReportServiceHttpHa
ndler.RenderPage()
>> aspnet_wp!library!9b8!09/10/2004-08:43:30:: e ERROR:
Throwing
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details., ;
>> Info:
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details. -->
System.Runtime.InteropServices.COMException (0x8009000B):
>Key
>> not valid for use in specified state.
>> at
System.Runtime.InteropServices.Marshal.ThrowExceptionForHR
(Int32
>> errorCode, IntPtr errorInfo)
>> at RSManagedCrypto.RSCrypto.ExportPublicKey()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.GetE
ncryptionKey()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.Con
nectStorage()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.Veri
fyConnection()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.get
_Connection()
>> at
Microsoft.ReportingServices.Library.Storage.get_Connection
()
>> at
Microsoft.ReportingServices.Library.Storage.NewStandardSql
Command(String
>> storedProcedureName)
>> at
>Microsoft.ReportingServices.Library.DBInterface.GetOneCon
figurationInfo(Stri
>> ng key)
>> at
>Microsoft.ReportingServices.Library.CachedSystemPropertie
s.GetSystemProperty
>> (String name)
>> at
>Microsoft.ReportingServices.Library.CachedSystemPropertie
s.Get(String
>> name)
>> at
>Microsoft.ReportingServices.Library.CachedSystemPropertie
s.GetParameter(Stri
>> ng name)
>> at
Microsoft.ReportingServices.Library.RSService.get_MyReport
sEnabled()
>> at
Microsoft.ReportingServices.Library.RSService.PathToIntern
al(String
>> source)
>> at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext
.SetPath(String
>> path, Boolean validate, Boolean convert, Boolean
translate)
>> at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext
.SetPath(String
>> path)
>> at
>Microsoft.ReportingServices.WebServer.ReportServiceHttpHa
ndler.RenderPageCon
>> tent()
>> at
>Microsoft.ReportingServices.WebServer.ReportServiceHttpHa
ndler.RenderPage()
>> -- End of inner exception stack trace --
>> aspnet_wp!crypto!3b8!10/09/2004-08:43:45:: i INFO:
Initializing crypto as
>> user: SRV120W03\ASPNET
>> aspnet_wp!crypto!3b8!10/09/2004-08:43:45:: i INFO:
Exporting public key
>> aspnet_wp!library!3b8!10/09/2004-08:43:45:: e ERROR:
Throwing
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details., Error getting running jobs;
>> Info:
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details. -->
System.Runtime.InteropServices.COMException (0x8009000B):
>Key
>> not valid for use in specified state.
>> at
System.Runtime.InteropServices.Marshal.ThrowExceptionForHR
(Int32
>> errorCode, IntPtr errorInfo)
>> at RSManagedCrypto.RSCrypto.ExportPublicKey()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.GetE
ncryptionKey()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.Con
nectStorage()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.Veri
fyConnection()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.get
_Connection()
>> at
Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRun
ningJobs()
>> -- End of inner exception stack trace --
>> aspnet_wp!crypto!c54!10/09/2004-08:44:45:: i INFO:
Initializing crypto as
>> user: SRV120W03\ASPNET
>> aspnet_wp!crypto!c54!10/09/2004-08:44:45:: i INFO:
Exporting public key
>> aspnet_wp!library!c54!10/09/2004-08:44:45:: e ERROR:
Throwing
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details., Error getting running jobs;
>> Info:
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details. -->
System.Runtime.InteropServices.COMException (0x8009000B):
>Key
>> not valid for use in specified state.
>> at
System.Runtime.InteropServices.Marshal.ThrowExceptionForHR
(Int32
>> errorCode, IntPtr errorInfo)
>> at RSManagedCrypto.RSCrypto.ExportPublicKey()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.GetE
ncryptionKey()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.Con
nectStorage()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.Veri
fyConnection()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.get
_Connection()
>> at
Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRun
ningJobs()
>> -- End of inner exception stack trace --
>> aspnet_wp!crypto!c54!10/09/2004-08:45:45:: i INFO:
Initializing crypto as
>> user: SRV120W03\ASPNET
>> aspnet_wp!crypto!c54!10/09/2004-08:45:45:: i INFO:
Exporting public key
>> aspnet_wp!library!c54!10/09/2004-08:45:45:: e ERROR:
Throwing
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details., Error getting running jobs;
>> Info:
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details. -->
System.Runtime.InteropServices.COMException (0x8009000B):
>Key
>> not valid for use in specified state.
>> at
System.Runtime.InteropServices.Marshal.ThrowExceptionForHR
(Int32
>> errorCode, IntPtr errorInfo)
>> at RSManagedCrypto.RSCrypto.ExportPublicKey()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.GetE
ncryptionKey()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.Con
nectStorage()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.Veri
fyConnection()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.get
_Connection()
>> at
Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRun
ningJobs()
>> -- End of inner exception stack trace --
>> aspnet_wp!crypto!9b8!09/10/2004-08:46:35:: i INFO:
Initializing crypto as
>> user: SRV120W03\ASPNET
>> aspnet_wp!crypto!9b8!09/10/2004-08:46:35:: i INFO:
Exporting public key
>> aspnet_wp!webserver!9b8!09/10/2004-08:46:35:: e ERROR:
Internal error:
>> System.Runtime.InteropServices.COMException
(0x8009000B): Key not valid
>for
>> use in specified state.
>> at
System.Runtime.InteropServices.Marshal.ThrowExceptionForHR
(Int32
>> errorCode, IntPtr errorInfo)
>> at RSManagedCrypto.RSCrypto.ExportPublicKey()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.GetE
ncryptionKey()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.Con
nectStorage()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.Veri
fyConnection()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.get
_Connection()
>> at
Microsoft.ReportingServices.Library.Storage.get_Connection
()
>> at
Microsoft.ReportingServices.Library.Storage.NewStandardSql
Command(String
>> storedProcedureName)
>> at
>Microsoft.ReportingServices.Library.DBInterface.GetOneCon
figurationInfo(Stri
>> ng key)
>> at
>Microsoft.ReportingServices.Library.CachedSystemPropertie
s.GetSystemProperty
>> (String name)
>> at
>Microsoft.ReportingServices.Library.CachedSystemPropertie
s.Get(String
>> name)
>> at
>Microsoft.ReportingServices.Library.CachedSystemPropertie
s.GetParameter(Stri
>> ng name)
>> at
Microsoft.ReportingServices.Library.RSService.get_MyReport
sEnabled()
>> at
Microsoft.ReportingServices.Library.RSService.PathToIntern
al(String
>> source)
>> at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext
.SetPath(String
>> path, Boolean validate, Boolean convert, Boolean
translate)
>> at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext
.SetPath(String
>> path)
>> at
>Microsoft.ReportingServices.WebServer.ReportServiceHttpHa
ndler.RenderPageCon
>> tent()
>> at
>Microsoft.ReportingServices.WebServer.ReportServiceHttpHa
ndler.RenderPage()
>> aspnet_wp!library!9b8!09/10/2004-08:46:35:: e ERROR:
Throwing
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details., ;
>> Info:
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details. -->
System.Runtime.InteropServices.COMException (0x8009000B):
>Key
>> not valid for use in specified state.
>> at
System.Runtime.InteropServices.Marshal.ThrowExceptionForHR
(Int32
>> errorCode, IntPtr errorInfo)
>> at RSManagedCrypto.RSCrypto.ExportPublicKey()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.GetE
ncryptionKey()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.Con
nectStorage()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.Veri
fyConnection()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.get
_Connection()
>> at
Microsoft.ReportingServices.Library.Storage.get_Connection
()
>> at
Microsoft.ReportingServices.Library.Storage.NewStandardSql
Command(String
>> storedProcedureName)
>> at
>Microsoft.ReportingServices.Library.DBInterface.GetOneCon
figurationInfo(Stri
>> ng key)
>> at
>Microsoft.ReportingServices.Library.CachedSystemPropertie
s.GetSystemProperty
>> (String name)
>> at
>Microsoft.ReportingServices.Library.CachedSystemPropertie
s.Get(String
>> name)
>> at
>Microsoft.ReportingServices.Library.CachedSystemPropertie
s.GetParameter(Stri
>> ng name)
>> at
Microsoft.ReportingServices.Library.RSService.get_MyReport
sEnabled()
>> at
Microsoft.ReportingServices.Library.RSService.PathToIntern
al(String
>> source)
>> at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext
.SetPath(String
>> path, Boolean validate, Boolean convert, Boolean
translate)
>> at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext
.SetPath(String
>> path)
>> at
>Microsoft.ReportingServices.WebServer.ReportServiceHttpHa
ndler.RenderPageCon
>> tent()
>> at
>Microsoft.ReportingServices.WebServer.ReportServiceHttpHa
ndler.RenderPage()
>> -- End of inner exception stack trace --
>> aspnet_wp!crypto!3b8!10/09/2004-08:46:45:: i INFO:
Initializing crypto as
>> user: SRV120W03\ASPNET
>> aspnet_wp!crypto!3b8!10/09/2004-08:46:45:: i INFO:
Exporting public key
>> aspnet_wp!library!3b8!10/09/2004-08:46:45:: e ERROR:
Throwing
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details., Error getting running jobs;
>> Info:
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details. -->
System.Runtime.InteropServices.COMException (0x8009000B):
>Key
>> not valid for use in specified state.
>> at
System.Runtime.InteropServices.Marshal.ThrowExceptionForHR
(Int32
>> errorCode, IntPtr errorInfo)
>> at RSManagedCrypto.RSCrypto.ExportPublicKey()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.GetE
ncryptionKey()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.Con
nectStorage()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.Veri
fyConnection()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.get
_Connection()
>> at
Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRun
ningJobs()
>> -- End of inner exception stack trace --
>> aspnet_wp!crypto!9b8!09/10/2004-08:47:00:: i INFO:
Initializing crypto as
>> user: SRV120W03\ASPNET
>> aspnet_wp!crypto!9b8!09/10/2004-08:47:00:: i INFO:
Exporting public key
>> aspnet_wp!webserver!9b8!09/10/2004-08:47:00:: e ERROR:
Internal error:
>> System.Runtime.InteropServices.COMException
(0x8009000B): Key not valid
>for
>> use in specified state.
>> at
System.Runtime.InteropServices.Marshal.ThrowExceptionForHR
(Int32
>> errorCode, IntPtr errorInfo)
>> at RSManagedCrypto.RSCrypto.ExportPublicKey()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.GetE
ncryptionKey()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.Con
nectStorage()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.Veri
fyConnection()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.get
_Connection()
>> at
Microsoft.ReportingServices.Library.Storage.get_Connection
()
>> at
Microsoft.ReportingServices.Library.Storage.NewStandardSql
Command(String
>> storedProcedureName)
>> at
>Microsoft.ReportingServices.Library.DBInterface.GetOneCon
figurationInfo(Stri
>> ng key)
>> at
>Microsoft.ReportingServices.Library.CachedSystemPropertie
s.GetSystemProperty
>> (String name)
>> at
>Microsoft.ReportingServices.Library.CachedSystemPropertie
s.Get(String
>> name)
>> at
>Microsoft.ReportingServices.Library.CachedSystemPropertie
s.GetParameter(Stri
>> ng name)
>> at
Microsoft.ReportingServices.Library.RSService.get_MyReport
sEnabled()
>> at
Microsoft.ReportingServices.Library.RSService.PathToIntern
al(String
>> source)
>> at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext
.SetPath(String
>> path, Boolean validate, Boolean convert, Boolean
translate)
>> at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext
.SetPath(String
>> path)
>> at
>Microsoft.ReportingServices.WebServer.ReportServiceHttpHa
ndler.RenderPageCon
>> tent()
>> at
>Microsoft.ReportingServices.WebServer.ReportServiceHttpHa
ndler.RenderPage()
>> aspnet_wp!library!9b8!09/10/2004-08:47:00:: e ERROR:
Throwing
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details., ;
>> Info:
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details. -->
System.Runtime.InteropServices.COMException (0x8009000B):
>Key
>> not valid for use in specified state.
>> at
System.Runtime.InteropServices.Marshal.ThrowExceptionForHR
(Int32
>> errorCode, IntPtr errorInfo)
>> at RSManagedCrypto.RSCrypto.ExportPublicKey()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.GetE
ncryptionKey()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.Con
nectStorage()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.Veri
fyConnection()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.get
_Connection()
>> at
Microsoft.ReportingServices.Library.Storage.get_Connection
()
>> at
Microsoft.ReportingServices.Library.Storage.NewStandardSql
Command(String
>> storedProcedureName)
>> at
>Microsoft.ReportingServices.Library.DBInterface.GetOneCon
figurationInfo(Stri
>> ng key)
>> at
>Microsoft.ReportingServices.Library.CachedSystemPropertie
s.GetSystemProperty
>> (String name)
>> at
>Microsoft.ReportingServices.Library.CachedSystemPropertie
s.Get(String
>> name)
>> at
>Microsoft.ReportingServices.Library.CachedSystemPropertie
s.GetParameter(Stri
>> ng name)
>> at
Microsoft.ReportingServices.Library.RSService.get_MyReport
sEnabled()
>> at
Microsoft.ReportingServices.Library.RSService.PathToIntern
al(String
>> source)
>> at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext
.SetPath(String
>> path, Boolean validate, Boolean convert, Boolean
translate)
>> at
Microsoft.ReportingServices.Diagnostics.CatalogItemContext
.SetPath(String
>> path)
>> at
>Microsoft.ReportingServices.WebServer.ReportServiceHttpHa
ndler.RenderPageCon
>> tent()
>> at
>Microsoft.ReportingServices.WebServer.ReportServiceHttpHa
ndler.RenderPage()
>> -- End of inner exception stack trace --
>> aspnet_wp!crypto!c54!10/09/2004-08:47:45:: i INFO:
Initializing crypto as
>> user: SRV120W03\ASPNET
>> aspnet_wp!crypto!c54!10/09/2004-08:47:45:: i INFO:
Exporting public key
>> aspnet_wp!library!c54!10/09/2004-08:47:45:: e ERROR:
Throwing
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details., Error getting running jobs;
>> Info:
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details. -->
System.Runtime.InteropServices.COMException (0x8009000B):
>Key
>> not valid for use in specified state.
>> at
System.Runtime.InteropServices.Marshal.ThrowExceptionForHR
(Int32
>> errorCode, IntPtr errorInfo)
>> at RSManagedCrypto.RSCrypto.ExportPublicKey()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.GetE
ncryptionKey()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.Con
nectStorage()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.Veri
fyConnection()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.get
_Connection()
>> at
Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRun
ningJobs()
>> -- End of inner exception stack trace --
>> aspnet_wp!crypto!3b8!10/09/2004-08:48:45:: i INFO:
Initializing crypto as
>> user: SRV120W03\ASPNET
>> aspnet_wp!crypto!3b8!10/09/2004-08:48:45:: i INFO:
Exporting public key
>> aspnet_wp!library!3b8!10/09/2004-08:48:45:: e ERROR:
Throwing
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details., Error getting running jobs;
>> Info:
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details. -->
System.Runtime.InteropServices.COMException (0x8009000B):
>Key
>> not valid for use in specified state.
>> at
System.Runtime.InteropServices.Marshal.ThrowExceptionForHR
(Int32
>> errorCode, IntPtr errorInfo)
>> at RSManagedCrypto.RSCrypto.ExportPublicKey()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.GetE
ncryptionKey()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.Con
nectStorage()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.Veri
fyConnection()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.get
_Connection()
>> at
Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRun
ningJobs()
>> -- End of inner exception stack trace --
>> aspnet_wp!crypto!3b8!10/09/2004-08:49:45:: i INFO:
Initializing crypto as
>> user: SRV120W03\ASPNET
>> aspnet_wp!crypto!3b8!10/09/2004-08:49:45:: i INFO:
Exporting public key
>> aspnet_wp!library!3b8!10/09/2004-08:49:45:: e ERROR:
Throwing
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details., Error getting running jobs;
>> Info:
>Microsoft.ReportingServices.Diagnostics.Utilities.Interna
lCatalogException:
>> An internal error occurred on the report server. See
the error log for
>more
>> details. -->
System.Runtime.InteropServices.COMException (0x8009000B):
>Key
>> not valid for use in specified state.
>> at
System.Runtime.InteropServices.Marshal.ThrowExceptionForHR
(Int32
>> errorCode, IntPtr errorInfo)
>> at RSManagedCrypto.RSCrypto.ExportPublicKey()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.GetE
ncryptionKey()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.Con
nectStorage()
>> at
Microsoft.ReportingServices.Library.ConnectionManager.Veri
fyConnection()
>> at
>Microsoft.ReportingServices.Library.ConnectionManager.get
_Connection()
>> at
Microsoft.ReportingServices.Library.RunningJobsDb.GetMyRun
ningJobs()
>> -- End of inner exception stack trace --
>>
>
>.
>
Posted by depredationnmqp at 4:31 AM 0 comments
Email This BlogThis! Share to X Share to Facebook
Labels: database, error, key, microsoft, mysql, oracle, reporting, reports, server, services, specified, sql, state, throwing, valid, view
Older Posts Home
Subscribe to: Posts (Atom)

KDC Problem

Blog Archive

  • ▼  2012 (488)
    • ▼  March (398)
      • KPI that compares the growth over years
      • KPI measure and dimension
      • KPI List Web Part in MOSS 2007 - How Do I Display ...
      • KPI List Web Part in MOSS 2007 - How Do I Display ...
      • KPI in SQL 2005
      • KPI in SQL 2005
      • KPI in SQL 2005
      • KPI in Reporting Service
      • KPI in Reporting Service
      • KPI Help Required-I want a revenue report with ave...
      • KPI graphic in RS2005
      • KPI Goals from dimension attributes.
      • KPI Goals from dimension attributes.
      • KPI Goal Value doesn't change after filtering the ...
      • KPI for each member of a dimension
      • KPI design and implementation
      • KPI Annotations property field
      • KPI Annotations property field
      • KPI and report deployment on WSS 3.0
      • KPI and MDX in Goal-Expression
      • KPI Aggregation
      • KPI - Sales Trend
      • KPI
      • Korean wording appear as ? in PDF
      • Konesans File Watcher Tasks
      • known, expected or weird behavior ?
      • Known sp3a bugs.
      • Known SMTP bug in .NET 2.0?
      • Known SMTP bug in .NET 2.0?
      • Known issues of upgrading from SQL 2000 to SQL 2005
      • Known Issues for SQL Server 2000 SP4
      • Known Issues for SQL Server 2000 SP4
      • Known Issues for SQL Server 2000 SP4
      • Known fields are not returned by using a stored pr...
      • known error with Transfer SQL Server Objects Task...
      • Known assembly FileIOPermission error, still no so...
      • Knowlege transfer Template
      • Knowlege transfer Template
      • Knowlege transfer Template
      • Knowledgeable yet simple book for database modelli...
      • Knowledge Base-article - 829386 - Hotfix where to ...
      • Knowledge Base Article - 815154 Configure SQL Serv...
      • knowledge about SQL Server Express
      • knowing which jobs/dts/SSIS affect which tables
      • Knowing when <NULL>
      • Knowing what is grouped?!
      • knowing the 'result' of a, INSERT/UPDATE/DELETE
      • knowing the 'result' of a, INSERT/UPDATE/DELETE
      • knowing the 'result' of a, INSERT/UPDATE/DELETE
      • Knowing how many connections are open?
      • Knowing current database
      • Know the "country version" of SQL Server
      • know nothing about MsSQL
      • know nothing about MsSQL
      • Know list database and table in SQL Server
      • know if DB has been restored
      • Knickers in a Loop
      • Knickers in a Loop
      • Knickers in a Loop
      • Kishore
      • Kirk: Importing/Exporting with column ErrorCode, E...
      • Kirk Haselden New book
      • kiran
      • Kinder garden question about datatype
      • Kinda urgent Connection error messages
      • Kinda new to SQL, have a few questions
      • Kind of simple join question. Not sure if its that
      • Kind of Replication will work ?
      • Kind of Important. Connection String
      • Kind of cross-tab query
      • Kind Attention: MSFT
      • Kind Attention: MSFT
      • Kimball Templates
      • Kimball Templates
      • Killing xp_cmdshell
      • Killing timed out connections
      • Killing the process automatically
      • killing the duplicates from a table using sql
      • killing sqlservr.exe from sqlclr code
      • killing SQLmail
      • killing SQLmail
      • killing SQLmail
      • Killing SPIDs
      • Killing SPIDs
      • Killing SPIDs
      • Killing Sleeping Processes
      • Killing Sleeping Processes
      • Killing Remote Application
      • killing process
      • killing process
      • Killing mupltiple batches
      • Killing Locks by Object - SS2005
      • Killing bug in ASP.Net 2, Report server is dead, 1...
      • Killing automatically crashed sessions ??
      • Killing an active connection
      • Killing an active connection
      • Killing an active connection
      • Killing all sleeping processes
      • Killing active connections before detaching a data...
      • Killing a user/login
    • ►  February (90)

About Me

depredationnmqp
View my complete profile
  • loan
  • sql
  • sql server
  • sql
  • sql server
  • sql
  • imwebhost