Showing posts with label text. Show all posts
Showing posts with label text. Show all posts

Thursday, March 29, 2012

Error when trying to deploy

This is a multi-part message in MIME format.
--=_NextPart_000_006C_01C54B87.15611800
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
Hi All
Has any one ever seen this error?
Error : The type initializer for = "Microsoft.ReportingServices.Diagnostics.CatalogItemUrlBuilder" threw an = exception.
I have deployed reports numerous times and never seen it.
Thanks,
Jessica
--=_NextPart_000_006C_01C54B87.15611800
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
&
Hi All

Has any one ever seen this = error?

Error : The type initializer for "Microsoft.ReportingServices.Diagnostics.CatalogItemUrlBuilder" threw an = exception.

I have deployed reports numerous times = and never seen it.

Thanks,

Jessica

--=_NextPart_000_006C_01C54B87.15611800--A few people have reported this error before, but we never identified the
cause. Did anything on your machine change recently? What version of
Reporting Services are you using?
--
Albert Yen
SQL Server Reporting Services
This posting is provided "AS IS" with no warranties, and confers no rights.
"Jessica C" <jesscobbe@.hotmail.com> wrote in message
news:u%23BoLH8SFHA.1152@.tk2msftngp13.phx.gbl...
Hi All
Has any one ever seen this error?
Error : The type initializer for
"Microsoft.ReportingServices.Diagnostics.CatalogItemUrlBuilder" threw an
exception.
I have deployed reports numerous times and never seen it.
Thanks,
Jessicasql

Friday, March 23, 2012

error when importing text file - saving in notepad first works

I'm trying to import a tab separated text file into sql server 2005 using the import guide. But when running the job I get the error message

Error 0xc02020c5: Data Flow Task: Data conversion failed while converting column "Column 19" (67) to column "Column 19" (404). The conversion returned status value 2 and status text "The value could not be converted because of a potential loss of data.".
(SQL Server Import and Export Wizard)

The column 19 which reported a problem contains this information:
?searchroot=/_gen_/txt/&template=std.htm&use=prospect&intref=1_26067

However what is mysterious is that if I open the file in notepad or Excel and resave it again the job runs perfectly. This is not a way we could make it work later on since it's an automatic job that will run each night on a new text file.

The text file is sent from Norway to Sweden - and I use ANSI latin 1 when importing.

The column has datatype DT_STR with a width of 500.

I use Locale Swedish and when I save in Notepad it is saved in ANSI,

I use Windows XP Swedish version.

Try DT_WSTR instead as its unicode.

There could be a control character in that field that gets thrown away when you save in Notepad.|||

Had the same error importing a text file. Error was resolved by changing the dataype as you advised. Thanks!

error when importing text file - saving in notepad first works

I'm trying to import a tab separated text file into sql server 2005 using the import guide. But when running the job I get the error message

Error 0xc02020c5: Data Flow Task: Data conversion failed while converting column "Column 19" (67) to column "Column 19" (404). The conversion returned status value 2 and status text "The value could not be converted because of a potential loss of data.".
(SQL Server Import and Export Wizard)

The column 19 which reported a problem contains this information:
?searchroot=/_gen_/txt/&template=std.htm&use=prospect&intref=1_26067

However what is mysterious is that if I open the file in notepad or Excel and resave it again the job runs perfectly. This is not a way we could make it work later on since it's an automatic job that will run each night on a new text file.

The text file is sent from Norway to Sweden - and I use ANSI latin 1 when importing.

The column has datatype DT_STR with a width of 500.

I use Locale Swedish and when I save in Notepad it is saved in ANSI,

I use Windows XP Swedish version.

Try DT_WSTR instead as its unicode.

There could be a control character in that field that gets thrown away when you save in Notepad.|||

Had the same error importing a text file. Error was resolved by changing the dataype as you advised. Thanks!

Wednesday, March 21, 2012

Error when getting data from the database. VWDE/SQL/Asp.Net/C#

I get the error:
Index out of range exception was unhandled by user code.
At the line:
Label4.Text += reader["RelativeLN"].ToString();

The two lines above it:
Label4.Text += reader["Relation"].ToString() + ": ";
Label4.Text += reader["RelativeFN"].ToString();

will read just fine if I comment out that third line. I don'tunderstand why this could be happening. There is data in the db for theRelativeLN column and it has the same data type as the previous twocolumns.

private void getRelatives()
{
//Define database connection
SqlConnection conn = new SqlConnection(
"Server=localhost\\SqlExpress;Database=MyDB;" + "Integrated Security=True");
//Create command
SqlCommand comm = new SqlCommand("SELECT Relation, RelativeFN FROMRelativeTable WHERE RelativeTable.UserID IN (SELECT UserID FROM UsrTblWHERE UserName = @.usrnmeLbl)", conn);
comm.Parameters.AddWithValue("@.usrnmeLbl", usrNmeLbl.Text);
conn.Open();
SqlDataReader reader = comm.ExecuteReader();
while (reader.Read())
{
Label4.Text += reader["Relation"].ToString() + ": ";
Label4.Text += reader["RelativeFN"].ToString();
Label4.Text += reader["RelativeLN"].ToString();
}
}

I'm hoping someone can provide me some info on what could possibly be going wrong.
Thank you so much in advance.

Hello my friend,

There may be data in the database for it but you are not including this column in your query.

Your query starts with: SELECT Relation, RelativeFN FROM RelativeTable

Change it to start with: SELECT Relation, RelativeFN, RelativeLN FROM RelativeTable

Kind regards

Scotty

|||

OMG, thank you so much. I have been finagling around with this code so much I missed my changes.

THANK YOU THANK YOU!

Friday, February 24, 2012

Error trying to do transactional replication on a long text column

I am getting the following error message when I try to do a transactional
replication of a large table with a text column:
Error Message: The process could not bulk copy into table '"monitorResults"'.
Error Details: Expected the text length in data stream for bulk copy of
text, ntext, or image data.
(Source: IWPSQL3 (Data source); Error number: 4813)
I checked sp_configure 'max text repl size (B)' and it is much larger than
the results from: SELECT max(datalength(notes)) FROM dbo.monitorResults
Does anyone have any ideas?
Thanks!
Racer-D
does this post help?
http://groups.google.com/groups?selm...utput =gplain
Hilary Cotter
Looking for a SQL Server replication book?
http://www.nwsu.com/0974973602.html
"Racer-D" <RacerD@.discussions.microsoft.com> wrote in message
news:960960F3-46E7-44C6-A46F-078D6A448DD7@.microsoft.com...
> I am getting the following error message when I try to do a transactional
> replication of a large table with a text column:
> Error Message: The process could not bulk copy into table
'"monitorResults"'.
> Error Details: Expected the text length in data stream for bulk copy of
> text, ntext, or image data.
> (Source: IWPSQL3 (Data source); Error number: 4813)
> ----
--
> I checked sp_configure 'max text repl size (B)' and it is much larger than
> the results from: SELECT max(datalength(notes)) FROM dbo.monitorResults
> Does anyone have any ideas?
> Thanks!
> Racer-D

Sunday, February 19, 2012

Error Starting Full text search service

I am tryin to start MS search service on the server and getting this error :
1307 0x051B This security ID may not be assigned as the owner of this object.
Please help.
Anoop,
Sorry, for the late reply, as I only saw this today...
Is the "Microsoft Search" service still throwing the below error? What
account have you assigned to start this service? If you have any other
account other than the system account (LocalSystem), then re-set this
service to use the system account (LocalSystem) and then stop and re-start
the service and confirm that you are no longer getting the below error.
If after changing the startup account to LocalSystem, you are still getting
the below error, could you check the contents of SearchSetup.log (usually
located under C:\WINNT\ or C:\WINDOWS) and post any related installation
errors.
Thanks,
John
"Anoop" <Anoop@.discussions.microsoft.com> wrote in message
news:BC851143-57DE-4182-8C9B-FC064EC63FEA@.microsoft.com...
> I am tryin to start MS search service on the server and getting this error
:
> 1307 0x051B This security ID may not be assigned as the owner of this
object.
> Please help.

Friday, February 17, 2012

Error selecting text from a SQL database

Hello,
I have an application that used an access database and I am currently
migrating to SQL Server. The software is designed to use Odbc object
found in the .Net framework version 1.1. I have a simple select
statement that is driving me nuts. It works fine with the Access
databases but dies under SQL Server.
The statement is:
SELECT
settingValue
FROM
tblSettings
WHERE ( owner=@.owner and setting=@.setting )
settingValue is an ntext field and owner and setting are varchar fields.
When I try to execute the query I get an error:
ERROR [42000][Microsoft][ODBC SQL Server Driver][SQL Server]The text,
ntext, and image data types cannot be compared or sorted, except when
using IS NULL, or LIKE operator.
There are no indexes on any of the fields so I cannot figure out what
the problem is.
Mageos
Try this to see if you still get an error:
SELECT
owner,
setting,
settingValue
FROM
tblSettings
WHERE owner = @.owner
and setting=@.setting
--
Mike Epprecht, Microsoft SQL Server MVP
Zurich, Switzerland
IM: mike@.epprecht.net
MVP Program: http://www.microsoft.com/mvp
Blog: http://www.msmvps.com/epprecht/
"mageos" <matt.dot.osborne@.cox.dot.com> wrote in message
news:vbGyd.2281$wZ2.581@.newssvr13.news.prodigy.com ...
> Hello,
> I have an application that used an access database and I am currently
> migrating to SQL Server. The software is designed to use Odbc object
> found in the .Net framework version 1.1. I have a simple select
> statement that is driving me nuts. It works fine with the Access
> databases but dies under SQL Server.
> The statement is:
> SELECT
> settingValue
> FROM
> tblSettings
> WHERE ( owner=@.owner and setting=@.setting )
> settingValue is an ntext field and owner and setting are varchar fields.
> When I try to execute the query I get an error:
> ERROR [42000][Microsoft][ODBC SQL Server Driver][SQL Server]The text,
> ntext, and image data types cannot be compared or sorted, except when
> using IS NULL, or LIKE operator.
> There are no indexes on any of the fields so I cannot figure out what
> the problem is.
> Mageos
|||> settingValue is an ntext field and owner and setting are varchar fields.
> When I try to execute the query I get an error:
> ERROR [42000][Microsoft][ODBC SQL Server Driver][SQL Server]The text,
> ntext, and image data types cannot be compared or sorted, except when
> using IS NULL, or LIKE operator.
The error tells you exactly where the problem is. You are trying to do a
compare on an ntext field. Double check your create table statement. I think
you will find that either owner or setting is not of the datatype you
expected. What method of creating the tables in SQL did you use. I find that
often when I let SQL help me out converting data from an outside source, it
comes up with insane assumptions about what the datatype needs to be.
I tried reproducing the error with the script below and it works fine for
me.
create table test(
settingvalue ntext,
owner varchar(5),
setting varchar(5)
)
insert test (settingvalue, owner, setting)
values ('jgdfkjgiugsv8ohyohfef mne hevbe vmnerv', '1', '2')
declare @.owner varchar(5)
declare @.setting varchar(5)
set @.owner = '1'
set @.setting ='2'
select * from test where owner = @.owner and setting = @.setting

Wednesday, February 15, 2012

Error Running With SharePoint

This is a multi-part message in MIME format.
--=_NextPart_000_0006_01C53602.65E443A0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
Hi,
Installed Reporting Services on the same box as SharePoint.
Followed instructions in the article:
Troubleshooting a Side-by-Side Installation of Reporting Services and = Windows SharePoint Services
http://msdn.microsoft.com/library/default.asp?url=3D/library/en-us/RSinst= all/htm/gs_installingrs_v1_9fdy.asp
However when I got to the last step to activate the site using the = RSactivate utility I got the following error:
"The Report Server Web service has not generated a public key. The = service may not have started successfully. Check the log files for more = information"
I checked the logs (I didn't write it down or save it) but saw a message = about the "client is not a local admin"
So I went into Service Manager and opened up Reporting Services and = changed the login. I tried both an administrator user account and a = local services account. Now when I run the RSActivate utility I get the = error:
"Failure starting the web service:
The local NT Service is disabled 0x80090005"
However the Reporting Service is running as I can tell from Service = Manager.
Help!!!!
Alan
--=_NextPart_000_0006_01C53602.65E443A0
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
&
Hi,

Installed Reporting Services on the = same box as SharePoint.

Followed instructions in the = article:

Troubleshooting a Side-by-Side = Installation of Reporting Services and Windows SharePoint Services
http://msdn.microsoft.com/li= brary/default.asp?url=3D/library/en-us/RSinstall/htm/gs_installingrs_v1_9= fdy.asp


However when I got to the last step to = activate the site using the RSactivate utility I got the following = error:

"The Report Server Web service has not = generated a public key. The service may not have started successfully. = Check the log files for more information"


I checked the logs (I didn't write it = down or save it) but saw a message about the "client is not a local = admin"

So I went into Service Manager and = opened up Reporting Services and changed the login. I tried both an = administrator user account and a local services account. Now when I run the = RSActivate utility I get the error:

"Failure starting the web = service:
The local NT Service is = disabled 0x80090005"


However the Reporting Service is = running as I can tell from Service Manager.

Help!!!!

Alan
--=_NextPart_000_0006_01C53602.65E443A0--This is a multi-part message in MIME format.
--=_NextPart_000_0011_01C53691.25146AA0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
HELP!!!!
"Alan Whitehouse" <awhitehouse@._SPAMBLOCKREMOVE_tgo.ca> wrote in =message news:eTfnQxiNFHA.2964@.TK2MSFTNGP10.phx.gbl...
Hi,
Installed Reporting Services on the same box as SharePoint.
Followed instructions in the article:
Troubleshooting a Side-by-Side Installation of Reporting Services and =Windows SharePoint Services
=http://msdn.microsoft.com/library/default.asp?url=3D/library/en-us/RSinst=
all/htm/gs_installingrs_v1_9fdy.asp
However when I got to the last step to activate the site using the =RSactivate utility I got the following error:
"The Report Server Web service has not generated a public key. The =service may not have started successfully. Check the log files for more =information"
I checked the logs (I didn't write it down or save it) but saw a =message about the "client is not a local admin"
So I went into Service Manager and opened up Reporting Services and =changed the login. I tried both an administrator user account and a =local services account. Now when I run the RSActivate utility I get the =error:
"Failure starting the web service:
The local NT Service is disabled 0x80090005"
However the Reporting Service is running as I can tell from Service =Manager.
Help!!!!
Alan
--=_NextPart_000_0011_01C53691.25146AA0
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
&

HELP!!!!
"Alan Whitehouse" wrote in message news:eTfnQxiNFHA.2964=@.TK2MSFTNGP10.phx.gbl...
Hi,

Installed Reporting Services on the =same box as SharePoint.

Followed instructions in the article:

Troubleshooting a Side-by-Side =Installation of Reporting Services and Windows SharePoint Services
http://msdn.microsoft.com/li=brary/default.asp?url=3D/library/en-us/RSinstall/htm/gs_installingrs_v1_9=fdy.asp


However when I got to the last step =to activate the site using the RSactivate utility I got the following =error:

"The Report Server Web service has =not generated a public key. The service may not have started =successfully. Check the log files for more information"


I checked the logs (I didn't write it =down or save it) but saw a message about the "client is not a local admin"

So I went into Service Manager and =opened up Reporting Services and changed the login. I tried both an =administrator user account and a local services account. Now when I run the =RSActivate utility I get the error:

"Failure starting the web =service:
The local NT Service is =disabled 0x80090005"


However the Reporting Service is =running as I can tell from Service Manager.

Help!!!!

Alan

--=_NextPart_000_0011_01C53691.25146AA0--|||This is a multi-part message in MIME format.
--=_NextPart_000_0025_01C536BF.3A0B9C20
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
I got around the error I was getting below. Now when I go to the =website I get the following error. Can someone give me some guidance.
Server Error in '/Reports' Application. ----=--
Configuration Error Description: An error occurred during the processing of a configuration =file required to service this request. Please review the specific error =details below and modify your configuration file appropriately.
Parser Error Message: File or assembly name Microsoft.BusinessFramework, =or one of its dependencies, was not found.
Source Error:
Line 76: <add name=3D"WindowsAuthentication" =type=3D"System.Web.Security.WindowsAuthenticationModule" />
Line 77: <!-- <add name=3D"Session" =type=3D"System.Web.SessionState.SessionStateModule"/>-->
Line 78: <add name=3D"EnterpriseInitializationModule" =type=3D"Microsoft.BusinessFramework.Security.EnterpriseInitializationModu=le,Microsoft.BusinessFramework" />
Line 79: <add name=3D"Session" =type=3D"System.Web.SessionState.SessionStateModule" />
Line 80: </httpModules>
Source File: c:\inetpub\wwwroot\web.config Line: 78
Assembly Load Trace: The following information can be helpful to =determine why the assembly 'Microsoft.BusinessFramework' could not be =loaded.
"Alan Whitehouse" <awhitehouse@._SPAMBLOCKREMOVE_tgo.ca> wrote in =message news:eTfnQxiNFHA.2964@.TK2MSFTNGP10.phx.gbl...
Hi,
Installed Reporting Services on the same box as SharePoint.
Followed instructions in the article:
Troubleshooting a Side-by-Side Installation of Reporting Services and =Windows SharePoint Services
=http://msdn.microsoft.com/library/default.asp?url=3D/library/en-us/RSinst=
all/htm/gs_installingrs_v1_9fdy.asp
However when I got to the last step to activate the site using the =RSactivate utility I got the following error:
"The Report Server Web service has not generated a public key. The =service may not have started successfully. Check the log files for more =information"
I checked the logs (I didn't write it down or save it) but saw a =message about the "client is not a local admin"
So I went into Service Manager and opened up Reporting Services and =changed the login. I tried both an administrator user account and a =local services account. Now when I run the RSActivate utility I get the =error:
"Failure starting the web service:
The local NT Service is disabled 0x80090005"
However the Reporting Service is running as I can tell from Service =Manager.
Help!!!!
Alan
--=_NextPart_000_0025_01C536BF.3A0B9C20
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
&

I got around the error I was getting below. Now when I go to the website I get the following error. Can someone give me some guidance.
Server Error in '/Reports' Application. Configuration Error Description: An error occurred during the processing of a configuration file =required to service this request. Please review the specific error details below and =modify your configuration file appropriately. Parser Error Message: =File or assembly name Microsoft.BusinessFramework, or one of its =dependencies, was not found.Source Error:
Line 76:
Line 77:
Line 78:
Line 79:
Line 80: =Source File: =c:\inetpub\wwwroot\web.config Line: 78 Assembly Load Trace: The following information =can be helpful to determine why the assembly 'Microsoft.BusinessFramework' =could not be loaded.
"Alan Whitehouse" wrote in message news:eTfnQxiNFHA.2964=@.TK2MSFTNGP10.phx.gbl...
Hi,

Installed Reporting Services on the =same box as SharePoint.

Followed instructions in the article:

Troubleshooting a Side-by-Side =Installation of Reporting Services and Windows SharePoint Services
http://msdn.microsoft.com/li=brary/default.asp?url=3D/library/en-us/RSinstall/htm/gs_installingrs_v1_9=fdy.asp


However when I got to the last step =to activate the site using the RSactivate utility I got the following =error:

"The Report Server Web service has =not generated a public key. The service may not have started =successfully. Check the log files for more information"


I checked the logs (I didn't write it =down or save it) but saw a message about the "client is not a local admin"

So I went into Service Manager and =opened up Reporting Services and changed the login. I tried both an =administrator user account and a local services account. Now when I run the =RSActivate utility I get the error:

"Failure starting the web =service:
The local NT Service is =disabled 0x80090005"


However the Reporting Service is =running as I can tell from Service Manager.

Help!!!!

Alan

--=_NextPart_000_0025_01C536BF.3A0B9C20--|||This is a multi-part message in MIME format.
--=_NextPart_000_0036_01C53923.9F5DF260
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
Anyone? Anyone? Bueller? Bueller?
I got around the error I was getting below. Now when I go to the =website I get the following error. Can someone give me some guidance.
Server Error in '/Reports' Application. ----=--
Configuration Error Description: An error occurred during the processing of a =configuration file required to service this request. Please review the =specific error details below and modify your configuration file =appropriately.
Parser Error Message: File or assembly name =Microsoft.BusinessFramework, or one of its dependencies, was not found.
Source Error:
Line 76: <add name=3D"WindowsAuthentication" =type=3D"System.Web.Security.WindowsAuthenticationModule" />
Line 77: <!-- <add name=3D"Session" =type=3D"System.Web.SessionState.SessionStateModule"/>-->
Line 78: <add name=3D"EnterpriseInitializationModule" =type=3D"Microsoft.BusinessFramework.Security.EnterpriseInitializationModu=le,Microsoft.BusinessFramework" />
Line 79: <add name=3D"Session" =type=3D"System.Web.SessionState.SessionStateModule" />
Line 80: </httpModules>
Source File: c:\inetpub\wwwroot\web.config Line: 78
Assembly Load Trace: The following information can be helpful to =determine why the assembly 'Microsoft.BusinessFramework' could not be =loaded.
"Alan Whitehouse" <awhitehouse@._SPAMBLOCKREMOVE_tgo.ca> wrote in =message news:eTfnQxiNFHA.2964@.TK2MSFTNGP10.phx.gbl...
Hi,
Installed Reporting Services on the same box as SharePoint.
Followed instructions in the article:
Troubleshooting a Side-by-Side Installation of Reporting Services =and Windows SharePoint Services
=http://msdn.microsoft.com/library/default.asp?url=3D/library/en-us/RSinst=
all/htm/gs_installingrs_v1_9fdy.asp
However when I got to the last step to activate the site using the =RSactivate utility I got the following error:
"The Report Server Web service has not generated a public key. The =service may not have started successfully. Check the log files for more =information"
I checked the logs (I didn't write it down or save it) but saw a =message about the "client is not a local admin"
So I went into Service Manager and opened up Reporting Services and =changed the login. I tried both an administrator user account and a =local services account. Now when I run the RSActivate utility I get the =error:
"Failure starting the web service:
The local NT Service is disabled 0x80090005"
However the Reporting Service is running as I can tell from Service =Manager.
Help!!!!
Alan
--=_NextPart_000_0036_01C53923.9F5DF260
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
&

Anyone? Anyone? =Bueller? Bueller?
I got around the error I was getting below. Now when I go to the website I get the following error. Can someone give me some guidance.


Server Error in '/Reports' Application.
Configuration Error Description: An error occurred during the processing of a configuration file =required to service this request. Please review the specific error details =below and modify your configuration file appropriately. Parser Error =Message: File or assembly name Microsoft.BusinessFramework, or one of its dependencies, was not found.Source Error:
Line 76:
Line 77:
Line 78:
Line 79:
Line 80: =Source File: =c:\inetpub\wwwroot\web.config Line: 78 Assembly Load Trace: The following =information can be helpful to determine why the assembly 'Microsoft.BusinessFramework' =could not be loaded.





"Alan Whitehouse" wrote in message news:eTfnQxiNFHA.2964=@.TK2MSFTNGP10.phx.gbl...
Hi,

Installed Reporting Services on the =same box as SharePoint.

Followed instructions in the article:

Troubleshooting a Side-by-Side =Installation of Reporting Services and Windows SharePoint Services
http://msdn.microsoft.com/li=brary/default.asp?url=3D/library/en-us/RSinstall/htm/gs_installingrs_v1_9=fdy.asp


However when I got to the last step =to activate the site using the RSactivate utility I got the following error:

"The Report Server Web service has =not generated a public key. The service may not have started successfully. Check the log files for more =information"


I checked the logs (I didn't write =it down or save it) but saw a message about the "client is not a local admin"

So I went into Service Manager and =opened up Reporting Services and changed the login. I tried both an administrator user account and a local services account. Now =when I run the RSActivate utility I get the error:

"Failure starting the web =service:
The local NT Service is =disabled 0x80090005"


However the Reporting Service is =running as I can tell from Service Manager.

Help!!!!

Alan

--=_NextPart_000_0036_01C53923.9F5DF260--