Showing posts with label type. Show all posts
Showing posts with label type. Show all posts

Monday, March 26, 2012

Error 17055

Getting the following in the event log after starting the
sql services.
Event Type: Information
Event Source: MSSQLSERVER
Event Category: (4)
Event ID: 17055
Date: 1/22/2004
Time: 2:37:21 PM
User: N/A
Computer: SMSPRIMARY
Description:
18456 :
Login failed for user 'smslab\smsadmin'.
For more information, see Help and Support Center at
http://go.microsoft.com/fwlink/events.asp.
Data:
0000: 18 48 00 00 0e 00 00 00 .H.....
0008: 0b 00 00 00 53 00 4d 00 ...S.M.
0010: 53 00 50 00 52 00 49 00 S.P.R.I.
0018: 4d 00 41 00 52 00 59 00 M.A.R.Y.
0020: 00 00 07 00 00 00 6d 00 .....m.
0028: 61 00 73 00 74 00 65 00 a.s.t.e.
0030: 72 00 00 00 r...
This is a SMS 2003 server.
Any info would be helpful. Thanks.Piedmont,
This is actually error 18456. It appears that smslab\smsadmin does not have
rights to login. From the BOL:
Error 18456
Severity Level 14
Message Text
Login failed for user '%ls'.
Explanation
You do not have permission to log in to the server.
Action
Contact a member of the sysadmin fixed server role to request login
permission.
Russell Fields
"Piedmont" <anonymous@.discussions.microsoft.com> wrote in message
news:26c401c3e11d$7e06ec70$a001280a@.phx.gbl...
quote:

> Getting the following in the event log after starting the
> sql services.
> Event Type: Information
> Event Source: MSSQLSERVER
> Event Category: (4)
> Event ID: 17055
> Date: 1/22/2004
> Time: 2:37:21 PM
> User: N/A
> Computer: SMSPRIMARY
> Description:
> 18456 :
> Login failed for user 'smslab\smsadmin'.
>
> For more information, see Help and Support Center at
> http://go.microsoft.com/fwlink/events.asp.
> Data:
> 0000: 18 48 00 00 0e 00 00 00 .H.....
> 0008: 0b 00 00 00 53 00 4d 00 ...S.M.
> 0010: 53 00 50 00 52 00 49 00 S.P.R.I.
> 0018: 4d 00 41 00 52 00 59 00 M.A.R.Y.
> 0020: 00 00 07 00 00 00 6d 00 .....m.
> 0028: 61 00 73 00 74 00 65 00 a.s.t.e.
> 0030: 72 00 00 00 r...
>
> This is a SMS 2003 server.
> Any info would be helpful. Thanks.
|||In enterprise manager under logins the user is listed and
has the right to login to the database.
quote:

>--Original Message--
>Piedmont,
>This is actually error 18456. It appears that

smslab\smsadmin does not have
quote:

>rights to login. From the BOL:
>Error 18456
>Severity Level 14
>Message Text
>Login failed for user '%ls'.
>Explanation
>You do not have permission to log in to the server.
>Action
>Contact a member of the sysadmin fixed server role to

request login
quote:

>permission.
>
>Russell Fields
>"Piedmont" <anonymous@.discussions.microsoft.com> wrote in

message
quote:

>news:26c401c3e11d$7e06ec70$a001280a@.phx.gbl...
the[QUOTE]
>
>.
>
|||Then I have no help for you, I am afraid. My only suggestions are clerical:
-- Double check the spelling of the login that you see in SEM just in case.
-- Doube check the server you are investigating, the domain of the login is
smslab, do you have an smsprd?
Sorry,
Russell Fields
"Piedmont" <anonymous@.discussions.microsoft.com> wrote in message
news:2bd501c3e126$2c249e30$a601280a@.phx.gbl...[QUOTE]
> In enterprise manager under logins the user is listed and
> has the right to login to the database.
>
> smslab\smsadmin does not have
> request login
> message
> the|||Perhaps the SMSAdmin password was changed. Make sure you can stop n start
this account from Control panel services. Also verify that it is a member
of the Builtin admin group via the local administrators group on the
machine.
Thanks,
Kevin McDonnell
Microsoft Corporation
This posting is provided AS IS with no warranties, and confers no rights.sql

Wednesday, March 7, 2012

Error = Arithmetic overflow error converting expression to data type smalldatetim

$exception {"Arithmetic overflow error converting expression to data type smalldatetime.\r\nThe statement has been terminated."} System.Exception {System.Data.SqlClient.SqlException}

occursCrying

here is my code

protectedvoid EmailSubmitBtn_Click(object sender,EventArgs e)

{

SqlDataSource NewsletterSqlDataSource =newSqlDataSource();

NewsletterSqlDataSource.ConnectionString =

ConfigurationManager.ConnectionStrings["NewsletterConnectionString"].ToString();

//Text version

NewsletterSqlDataSource.InsertCommandType =

SqlDataSourceCommandType.Text;

NewsletterSqlDataSource.InsertCommand =

"INSERT INTO NewsLetter (EmailAddress, IPAddress, DateTimeStamp) VALUES (@.EmailAddress, @.IPAddress, @.DateTimeStamp)";

//storeprocedure version//NewsletterSqlDataSource.InsertCommandType = SqlDataSourceCommandType.StoredProcedure;//NewsletterSqlDataSource.InsertCommand = "EmailInsert";

NewsletterSqlDataSource.InsertParameters.Add(

"EmailAddress", EmailTb.Text);

NewsletterSqlDataSource.InsertParameters.Add(

"IPAddress", Request.UserHostAddress.ToString());

NewsletterSqlDataSource.InsertParameters.Add(

"DateTimeStamp",DateTime.Now.ToString());int rowsAffected = 0;try

{

rowsAffected = NewsletterSqlDataSource.Insert();

}

catch (Exception ex)

{

Server.Transfer(

"NewsletterProblem.aspx");

}

finally

{

NewsletterSqlDataSource =

null;

}

if (rowsAffected != 1)

{

Server.Transfer(

"NewsletterProblem.aspx");

}

else

{

Server.Transfer(

"NewsletterSuccess.aspx");

}

Do not pass the Value asDateTime.Now.ToString() . Just pass the value asDateTime.Now if the db datatype is smalldatetime. If the input datatype for stored procedure is string , try

DateTime

.Now.ToShortDateString(); . Let me know if you need any clarifications

Error ?

Hi,
any ideas on this error '?
Event Type: Information
Event Source: MSSQLSERVER
Event Category: (2)
Event ID: 17052
Date: 23-10-2003
Time: 21:45:44
User: N/A
Computer: LX1SQL004
Description:
Error: 17883, Severity: 1, State: 0
The Scheduler 0 appears to be hung. SPID 68, ECID 0, UMS Context 0x03843DE8 Data:
0000: db 45 00 00 01 00 00 00 =DBE.....
0008: 0a 00 00 00 4c 00 58 00 ...L.X.
0010: 31 00 53 00 51 00 4c 00 1.S.Q.L.
0018: 30 00 30 00 34 00 00 00 0.0.4...
0020: 00 00 00 00 ...
Thanks in advance
Miguel CorreiaHave a look at this KB article
http://support.microsoft.com/default.aspx?scid=kb%3Ben-us%3B810885
--
Allan Mitchell (Microsoft SQL Server MVP)
MCSE,MCDBA
www.SQLDTS.com
I support PASS - the definitive, global community
for SQL Server professionals - http://www.sqlpass.org
"Miguel" <cmlcorreia@.netcabo.pt> wrote in message
news:084c01c39a1c$c9a680c0$a501280a@.phx.gbl...
Hi,
any ideas on this error '?
Event Type: Information
Event Source: MSSQLSERVER
Event Category: (2)
Event ID: 17052
Date: 23-10-2003
Time: 21:45:44
User: N/A
Computer: LX1SQL004
Description:
Error: 17883, Severity: 1, State: 0
The Scheduler 0 appears to be hung. SPID 68, ECID 0, UMS
Context 0x03843DE8
Data:
0000: db 45 00 00 01 00 00 00 ÛE.....
0008: 0a 00 00 00 4c 00 58 00 ...L.X.
0010: 31 00 53 00 51 00 4c 00 1.S.Q.L.
0018: 30 00 30 00 34 00 00 00 0.0.4...
0020: 00 00 00 00 ...
Thanks in advance
Miguel Correia|||Thanks a lot :)
>--Original Message--
>Have a look at this KB article
>http://support.microsoft.com/default.aspx?scid=3Dkb%3Ben-us%
3B810885
>-- >
>Allan Mitchell (Microsoft SQL Server MVP)
>MCSE,MCDBA
>www.SQLDTS.com
>I support PASS - the definitive, global community
>for SQL Server professionals - http://www.sqlpass.org
>
>
>"Miguel" <cmlcorreia@.netcabo.pt> wrote in message
>news:084c01c39a1c$c9a680c0$a501280a@.phx.gbl...
>Hi,
>any ideas on this error '?
>Event Type: Information
>Event Source: MSSQLSERVER
>Event Category: (2)
>Event ID: 17052
>Date: 23-10-2003
>Time: 21:45:44
>User: N/A
>Computer: LX1SQL004
>Description:
>Error: 17883, Severity: 1, State: 0
>The Scheduler 0 appears to be hung. SPID 68, ECID 0, UMS
>Context 0x03843DE8
>Data:
>0000: db 45 00 00 01 00 00 00 =DBE.....
>0008: 0a 00 00 00 4c 00 58 00 ...L.X.
>0010: 31 00 53 00 51 00 4c 00 1.S.Q.L.
>0018: 30 00 30 00 34 00 00 00 0.0.4...
>0020: 00 00 00 00 ...
>
>Thanks in advance
>Miguel Correia
>
>.
>

Sunday, February 19, 2012

Error - Application uses a value of the wrong type for the current operation

I have a sql statement using MS SQL Server as follows
SELECT TowerNumber, TowerNumber AS CountEntriesPerTowerNumber
FROM tblTowers
WHERE (ReadingDate BETWEEN @.BeginningMonth AND @.EndingMonth) AND
(LocationID = @.LocationID) AND (SystemID = @.SystemID)
ORDER BY LocationID, SystemID, TowerNumber
When I use the same query and add group by, I get the error - Application
uses a value of the wrong type for the current operation
SELECT TowerNumber, COUNT(TowerNumber) AS CountEntriesPerTowerNumber
FROM tblTowers
WHERE (ReadingDate BETWEEN @.BeginningMonth AND @.EndingMonth)
GROUP BY TowerNumber, LocationID, SystemID
HAVING (LocationID = @.LocationID) AND (SystemID = @.SystemID)
ORDER BY LocationID, SystemID, TowerNumber
How do I get past this error?
ThanksHi,
Have u used any variable with datatype uniqueidentifier.If yes then
change the datatype.
from
Doller|||Not using uniqueidentifier.
I do have a field that is an identity field but it is not in the query and I
have never run into this before.
Plus the first query does work the second does not.
"doller" <sufianarif@.gmail.com> wrote in message
news:1128420745.167906.89260@.o13g2000cwo.googlegroups.com...
> Hi,
> Have u used any variable with datatype uniqueidentifier.If yes then
> change the datatype.
> from
> Doller
>|||Hi Craig,
Welcome to use MSDN Managed Newsgroup!
From your descriptions, I understood adding GROUP BY will lead to the error
message "Application uses a value of the wrong type for the current
operation". If I have misunderstood your concern, please feel free to point
it out.
Based on my knowledge, this could be caused by various reasons and let
perform the troubleshooting step by step.
1. Check the length of parameters. The error could if the length of the
data passed to the parameter exceeds the
maximum size of the parameter or field.
2. Use the Profiler to trace what was inserted into SQL Server
3. If we replace all the parameters with real value and execute the
replaced statements in Query Analyzer, will it report the error message?
Sincerely yours,
Michael Cheng
Microsoft Online Partner Support
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
=====================================================This posting is provided "AS IS" with no warranties, and confers no rights.

Error - Application uses a value of the wrong type for the current operation

I have a sql statement using MS SQL Server as follows
SELECT TowerNumber, TowerNumber AS CountEntriesPerTowerNumber
FROM tblTowers
WHERE (ReadingDate BETWEEN @.BeginningMonth AND @.EndingMonth) AND
(LocationID = @.LocationID) AND (SystemID = @.SystemID)
ORDER BY LocationID, SystemID, TowerNumber
When I use the same query and add group by, I get the error - Application
uses a value of the wrong type for the current operation
SELECT TowerNumber, COUNT(TowerNumber) AS CountEntriesPerTowerNumber
FROM tblTowers
WHERE (ReadingDate BETWEEN @.BeginningMonth AND @.EndingMonth)
GROUP BY TowerNumber, LocationID, SystemID
HAVING (LocationID = @.LocationID) AND (SystemID = @.SystemID)
ORDER BY LocationID, SystemID, TowerNumber
How do I get past this error?
ThanksHi,
Have u used any variable with datatype uniqueidentifier.If yes then
change the datatype.
from
Doller|||Not using uniqueidentifier.
I do have a field that is an identity field but it is not in the query and I
have never run into this before.
Plus the first query does work the second does not.
"doller" <sufianarif@.gmail.com> wrote in message
news:1128420745.167906.89260@.o13g2000cwo.googlegroups.com...
> Hi,
> Have u used any variable with datatype uniqueidentifier.If yes then
> change the datatype.
> from
> Doller
>|||Hi Craig,
Welcome to use MSDN Managed Newsgroup!
From your descriptions, I understood adding GROUP BY will lead to the error
message "Application uses a value of the wrong type for the current
operation". If I have misunderstood your concern, please feel free to point
it out.
Based on my knowledge, this could be caused by various reasons and let
perform the troubleshooting step by step.
1. Check the length of parameters. The error could if the length of the
data passed to the parameter exceeds the
maximum size of the parameter or field.
2. Use the Profiler to trace what was inserted into SQL Server
3. If we replace all the parameters with real value and execute the
replaced statements in Query Analyzer, will it report the error message?
Sincerely yours,
Michael Cheng
Microsoft Online Partner Support
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
========================================
=============
This posting is provided "AS IS" with no warranties, and confers no rights.

Error - Application uses a value of the wrong type for the current operation

I have a sql statement using MS SQL Server as follows
SELECT TowerNumber, TowerNumber AS CountEntriesPerTowerNumber
FROM tblTowers
WHERE (ReadingDate BETWEEN @.BeginningMonth AND @.EndingMonth) AND
(LocationID = @.LocationID) AND (SystemID = @.SystemID)
ORDER BY LocationID, SystemID, TowerNumber
When I use the same query and add group by, I get the error - Application
uses a value of the wrong type for the current operation
SELECT TowerNumber, COUNT(TowerNumber) AS CountEntriesPerTowerNumber
FROM tblTowers
WHERE (ReadingDate BETWEEN @.BeginningMonth AND @.EndingMonth)
GROUP BY TowerNumber, LocationID, SystemID
HAVING (LocationID = @.LocationID) AND (SystemID = @.SystemID)
ORDER BY LocationID, SystemID, TowerNumber
How do I get past this error?
Thanks
Hi,
Have u used any variable with datatype uniqueidentifier.If yes then
change the datatype.
from
Doller
|||Not using uniqueidentifier.
I do have a field that is an identity field but it is not in the query and I
have never run into this before.
Plus the first query does work the second does not.
"doller" <sufianarif@.gmail.com> wrote in message
news:1128420745.167906.89260@.o13g2000cwo.googlegro ups.com...
> Hi,
> Have u used any variable with datatype uniqueidentifier.If yes then
> change the datatype.
> from
> Doller
>
|||Hi Craig,
Welcome to use MSDN Managed Newsgroup!
From your descriptions, I understood adding GROUP BY will lead to the error
message "Application uses a value of the wrong type for the current
operation". If I have misunderstood your concern, please feel free to point
it out.
Based on my knowledge, this could be caused by various reasons and let
perform the troubleshooting step by step.
1. Check the length of parameters. The error could if the length of the
data passed to the parameter exceeds the
maximum size of the parameter or field.
2. Use the Profiler to trace what was inserted into SQL Server
3. If we replace all the parameters with real value and execute the
replaced statements in Query Analyzer, will it report the error message?
Sincerely yours,
Michael Cheng
Microsoft Online Partner Support
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
================================================== ===
This posting is provided "AS IS" with no warranties, and confers no rights.

Friday, February 17, 2012

Error

Hey,
Has anyone seen / gotten this error before?
"Could not read and latch page (1:226688) with latch type
SH. Latch failed."
I get this error when i try to run a dbcc showcontig.
Any help is welcome
Thanxs
:)Did you read in Books Online about this error (8966). The most recent update of books online has specific
suggestions for most of these error codes.
--
Tibor Karaszi, SQL Server MVP
http://www.karaszi.com/sqlserver/default.asp
http://www.solidqualitylearning.com/
":)" <anonymous@.discussions.microsoft.com> wrote in message news:1a3b401c44dfe$60fa12d0$a001280a@.phx.gbl...
> Hey,
> Has anyone seen / gotten this error before?
> "Could not read and latch page (1:226688) with latch type
> SH. Latch failed."
> I get this error when i try to run a dbcc showcontig.
> Any help is welcome
> Thanxs
> :)|||I dont find anything about this + when i look online on
error 8966 i get something completly different...
>--Original Message--
>Did you read in Books Online about this error (8966).
The most recent update of books online has specific
>suggestions for most of these error codes.
>--
>Tibor Karaszi, SQL Server MVP
>http://www.karaszi.com/sqlserver/default.asp
>http://www.solidqualitylearning.com/
>
>":)" <anonymous@.discussions.microsoft.com> wrote in
message news:1a3b401c44dfe$60fa12d0$a001280a@.phx.gbl...
>> Hey,
>> Has anyone seen / gotten this error before?
>> "Could not read and latch page (1:226688) with latch
type
>> SH. Latch failed."
>> I get this error when i try to run a dbcc showcontig.
>> Any help is welcome
>> Thanxs
>> :)
>
>.
>|||Do you have the updated books online? Where do you look?
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/trblsql/tr_reslsyserr_2_54ky.asp
--
Tibor Karaszi, SQL Server MVP
http://www.karaszi.com/sqlserver/default.asp
http://www.solidqualitylearning.com/
<anonymous@.discussions.microsoft.com> wrote in message news:1a4d201c44e15$943cd170$a001280a@.phx.gbl...
> I dont find anything about this + when i look online on
> error 8966 i get something completly different...
> >--Original Message--
> >Did you read in Books Online about this error (8966).
> The most recent update of books online has specific
> >suggestions for most of these error codes.
> >
> >--
> >Tibor Karaszi, SQL Server MVP
> >http://www.karaszi.com/sqlserver/default.asp
> >http://www.solidqualitylearning.com/
> >
> >
> >":)" <anonymous@.discussions.microsoft.com> wrote in
> message news:1a3b401c44dfe$60fa12d0$a001280a@.phx.gbl...
> >> Hey,
> >> Has anyone seen / gotten this error before?
> >>
> >> "Could not read and latch page (1:226688) with latch
> type
> >> SH. Latch failed."
> >>
> >> I get this error when i try to run a dbcc showcontig.
> >>
> >> Any help is welcome
> >>
> >> Thanxs
> >>
> >> :)
> >
> >
> >.
> >

Error

I am getting the following error:
Client found response content type of 'text/html; charset=Windows-1252',
but expected 'text/xml'. The request failed with the error message: --
<html> <head> <title>Server cannot access application directory
'D:\Microsoft SQL Server\MSSQL\Reporting Services\ReportServer\'. The
directory does not exist or is not accessible because of security
settings.</title> <style> body {font-family:"Verdana";font-
weight:normal;font-size: .7em;color:black;} p {font-
family:"Verdana";font-weight:normal;color:black;margin-top: -5px} b
{font-family:"Verdana";font-weight:bold;color:black;margin-top: -5px}
H1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red }
H2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon }
pre {font-family:"Lucida Console";font-size: .9em} .marker {font-
weight: bold; color: black;text-decoration: none;} .version {color:
gray;} .error {margin-bottom: 10px;} .expandable { text-
decoration:underline; font-weight:bold; color:navy; cursor:hand; }
</style> </head> <body bgcolor="white"> <span><H1>Server
Error in '/ReportServer' Application.<hr width=100% size=1
color=silver></H1> <h2> <i>Server cannot access application
directory 'D:\Microsoft SQL Server\MSSQL\Reporting Services\ReportServer\'.
The directory does not exist or is not accessible because of security
settings.</i> </h2></span> <font face="Arial, Helvetica, Geneva,
SunSans-Regular, sans-serif "> <b> Description: </b>An unhandled
exception occurred during the execution of the current web request. Please
review the stack trace for more information about the error and where it
originated in the code. <br><br> <b> Exception
Details: </b>System.Web.HttpException: Server cannot access application
directory 'D:\Microsoft SQL Server\MSSQL\Reporting Services\ReportServer\'.
The directory does not exist or is not accessible because of security
settings.<br><br> <b>Source Error:</b> <br><br>
<table width=100% bgcolor="#ffffcc"> <tr>
<td> <code> An unhandled exception was generated
during the execution of the current web request. Information regarding the
origin and location of the exception can be identified using the exception
stack trace below.</code> </td> </tr>
</table> <br> <b>Stack Trace:</b> <br><br>
<table width=100% bgcolor="#ffffcc"> <tr>
<td> <code><pre> [HttpException (0x80004005): Server
cannot access application directory 'D:\Microsoft SQL Server\MSSQL\
Reporting Services\ReportServer\'. The directory does not exist or is not
accessible because of security settings.]
System.Web.HttpRuntime.EnsureAccessToApplicationDirectory() +72
System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +263
[HttpException (0x80004005): ASP.NET Initialization Error]
System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +983
System.Web.HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr) +128
</pre></code> </td> </tr>
</table> <br> <hr width=100% size=1 color=silver>
<b>Version Information:</b> Microsoft .NET Framework
Version:1.1.4322.2300; ASP.NET Version:1.1.4322.2300 </font>
</body> </html> <!-- [HttpException]: Server cannot access application
directory 'D:\Microsoft SQL Server\MSSQL\Reporting Services\ReportServer\'.
The directory does not exist or is not accessible because of security
settings. at System.Web.HttpRuntime.EnsureAccessToApplicationDirectory()
at System.Web.HttpRuntime.FirstRequestInit(HttpContext context)
[HttpException]: ASP.NET Initialization Error at
System.Web.HttpRuntime.FirstRequestInit(HttpContext context) at
System.Web.HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr) --> --.
Any ideas'
--
Message posted via http://www.sqlmonster.comHi,
The answer is shown by the error it self:
'Server cannot access application directory
'D:\Microsoft SQL Server\MSSQL\Reporting Services\ReportServer\'. The
directory does not exist or is not accessible because of security
settings.'
Just check your IIS settings for the Virtual Directory 'ReportServer'
Jan Pieter Posthuma
"Pamela Mitter via SQLMonster.com" wrote:
> I am getting the following error:
> Client found response content type of 'text/html; charset=Windows-1252',
> but expected 'text/xml'. The request failed with the error message: --
> <html> <head> <title>Server cannot access application directory
> 'D:\Microsoft SQL Server\MSSQL\Reporting Services\ReportServer\'. The
> directory does not exist or is not accessible because of security
> settings.</title> <style> body {font-family:"Verdana";font-
> weight:normal;font-size: .7em;color:black;} p {font-
> family:"Verdana";font-weight:normal;color:black;margin-top: -5px} b
> {font-family:"Verdana";font-weight:bold;color:black;margin-top: -5px}
> H1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red }
> H2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon }
> pre {font-family:"Lucida Console";font-size: .9em} .marker {font-
> weight: bold; color: black;text-decoration: none;} .version {color:
> gray;} .error {margin-bottom: 10px;} .expandable { text-
> decoration:underline; font-weight:bold; color:navy; cursor:hand; }
> </style> </head> <body bgcolor="white"> <span><H1>Server
> Error in '/ReportServer' Application.<hr width=100% size=1
> color=silver></H1> <h2> <i>Server cannot access application
> directory 'D:\Microsoft SQL Server\MSSQL\Reporting Services\ReportServer\'.
> The directory does not exist or is not accessible because of security
> settings.</i> </h2></span> <font face="Arial, Helvetica, Geneva,
> SunSans-Regular, sans-serif "> <b> Description: </b>An unhandled
> exception occurred during the execution of the current web request. Please
> review the stack trace for more information about the error and where it
> originated in the code. <br><br> <b> Exception
> Details: </b>System.Web.HttpException: Server cannot access application
> directory 'D:\Microsoft SQL Server\MSSQL\Reporting Services\ReportServer\'.
> The directory does not exist or is not accessible because of security
> settings.<br><br> <b>Source Error:</b> <br><br>
> <table width=100% bgcolor="#ffffcc"> <tr>
> <td> <code> An unhandled exception was generated
> during the execution of the current web request. Information regarding the
> origin and location of the exception can be identified using the exception
> stack trace below.</code> </td> </tr>
> </table> <br> <b>Stack Trace:</b> <br><br>
> <table width=100% bgcolor="#ffffcc"> <tr>
> <td> <code><pre> [HttpException (0x80004005): Server
> cannot access application directory 'D:\Microsoft SQL Server\MSSQL\
> Reporting Services\ReportServer\'. The directory does not exist or is not
> accessible because of security settings.]
> System.Web.HttpRuntime.EnsureAccessToApplicationDirectory() +72
> System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +263
> [HttpException (0x80004005): ASP.NET Initialization Error]
> System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +983
> System.Web.HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr) +128
> </pre></code> </td> </tr>
> </table> <br> <hr width=100% size=1 color=silver>
> <b>Version Information:</b> Microsoft .NET Framework
> Version:1.1.4322.2300; ASP.NET Version:1.1.4322.2300 </font>
> </body> </html> <!-- [HttpException]: Server cannot access application
> directory 'D:\Microsoft SQL Server\MSSQL\Reporting Services\ReportServer\'.
> The directory does not exist or is not accessible because of security
> settings. at System.Web.HttpRuntime.EnsureAccessToApplicationDirectory()
> at System.Web.HttpRuntime.FirstRequestInit(HttpContext context)
> [HttpException]: ASP.NET Initialization Error at
> System.Web.HttpRuntime.FirstRequestInit(HttpContext context) at
> System.Web.HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr) --> --.
> Any ideas'
> --
> Message posted via http://www.sqlmonster.com
>