Hi,
I am building a database install aplication that among all other
stuff, creates and populates full-text catalogs for my database.
All this is done in VB.net and SQL Server 2003
My application works fine, here is the come sample:
oSQLServer = CreateObject("SQLDMO.SQLServer")
oSQLServer.connect(strServer, strUserID, strPassword)
' enable full-text indexing for provided database
oSQLServer.Databases(strDBName).EnableFullTextCata logs()
' create full text catalog and add it to the collection
Dim strFullTextCatalogName As String
strFullTextCatalogName = strCatalogPrefix & "_documenttitle"
oFullTextCatalog = CreateObject("SQLDMO.FullTextCatalog")
oFullTextCatalog.Name = strFullTextCatalogName 'name
oFullTextCatalog.RootPath = strCatalogPath 'location
' create full-text catalog on the server and add it to
' the collection of full-text catalogs
oSQLServer.databases(strDBName).fulltextcatalogs.a dd(oFullTextCatalog)
However, I get an System.Runtime.InteropServices.COMException
exception with additional information as:
Additional information:[Microsoft][ODBC SQL Server Driver][SQL
Server]Access is denied to 'C:\Documents and
Settings\username\MyDocuments', or the path is invalid. Full-text
search was not installed properly.
The path to which access is denied is the value of my variable
strCatalogPath that I assign to my full-text catalog RootPath
property. (see code sample above)
How can I fix this error. Please help.
Any help will be appreciated,
_dino_
Dino,
Well, the error message is clear "Access is denied to 'C:\Documents and
Settings\username\MyDocuments', or the path is invalid."
Did you try using sp_fulltext_catalog and create a FT Catalog using the same
path? or perhaps specifically reference 'C:\Program Files\Microsoft SQL
Server\Mssql\Ftdata' enclosed in double quotes? Do the folders "username"
or "MyDocuments" exist?
SQL Server BOL title "sp_fulltext_catalog" for the path states
"[@.path =] 'root_directory'
Is the root directory (not the complete physical path) for a create action.
root_directory is nvarchar(100) and has a default value of NULL, which
indicates the use of the default location specified at setup. This is the
Ftdata subdirectory in the Mssql directory; for example, C:\Program
Files\Microsoft SQL Server\Mssql\Ftdata. The specified root directory must
reside on a drive on the same computer, consist of more than just the drive
letter, and cannot be a relative path. Network drives, removable drives,
floppy disks, and UNC paths are not supported. Full-text catalogs must be
created on a local hard drive associated with an instance of Microsoft SQL
ServerT.
@.path is valid only when action is create. For actions other than create
(stop, rebuild, and so on), @.path must be NULL or omitted."
Hope that helps!
John
SQL Full Text Search Blog
http://spaces.msn.com/members/jtkane/
"Dino Buljubasic" <dino@.noplacelikehome.com> wrote in message
news:fs05f1lapksvfr4i0lgot578hubm1te3gj@.4ax.com...
> Hi,
> I am building a database install aplication that among all other
> stuff, creates and populates full-text catalogs for my database.
> All this is done in VB.net and SQL Server 2003
> My application works fine, here is the come sample:
> oSQLServer = CreateObject("SQLDMO.SQLServer")
> oSQLServer.connect(strServer, strUserID, strPassword)
> ' enable full-text indexing for provided database
> oSQLServer.Databases(strDBName).EnableFullTextCata logs()
> ' create full text catalog and add it to the collection
> Dim strFullTextCatalogName As String
> strFullTextCatalogName = strCatalogPrefix & "_documenttitle"
> oFullTextCatalog = CreateObject("SQLDMO.FullTextCatalog")
> oFullTextCatalog.Name = strFullTextCatalogName 'name
> oFullTextCatalog.RootPath = strCatalogPath 'location
>
> ' create full-text catalog on the server and add it to
> ' the collection of full-text catalogs
> oSQLServer.databases(strDBName).fulltextcatalogs.a dd(oFullTextCatalog)
> However, I get an System.Runtime.InteropServices.COMException
> exception with additional information as:
> Additional information:[Microsoft][ODBC SQL Server Driver][SQL
> Server]Access is denied to 'C:\Documents and
> Settings\username\MyDocuments', or the path is invalid. Full-text
> search was not installed properly.
> The path to which access is denied is the value of my variable
> strCatalogPath that I assign to my full-text catalog RootPath
> property. (see code sample above)
> How can I fix this error. Please help.
> Any help will be appreciated,
> _dino_
|||Are you utilizing MSDE or SQL Server Express? Full-Text is not installed or
supported on either.
"Dino Buljubasic" wrote:
> Hi,
> I am building a database install aplication that among all other
> stuff, creates and populates full-text catalogs for my database.
> All this is done in VB.net and SQL Server 2003
> My application works fine, here is the come sample:
> oSQLServer = CreateObject("SQLDMO.SQLServer")
> oSQLServer.connect(strServer, strUserID, strPassword)
> ' enable full-text indexing for provided database
> oSQLServer.Databases(strDBName).EnableFullTextCata logs()
> ' create full text catalog and add it to the collection
> Dim strFullTextCatalogName As String
> strFullTextCatalogName = strCatalogPrefix & "_documenttitle"
> oFullTextCatalog = CreateObject("SQLDMO.FullTextCatalog")
> oFullTextCatalog.Name = strFullTextCatalogName 'name
> oFullTextCatalog.RootPath = strCatalogPath 'location
>
> ' create full-text catalog on the server and add it to
> ' the collection of full-text catalogs
> oSQLServer.databases(strDBName).fulltextcatalogs.a dd(oFullTextCatalog)
> However, I get an System.Runtime.InteropServices.COMException
> exception with additional information as:
> Additional information:[Microsoft][ODBC SQL Server Driver][SQL
> Server]Access is denied to 'C:\Documents and
> Settings\username\MyDocuments', or the path is invalid. Full-text
> search was not installed properly.
> The path to which access is denied is the value of my variable
> strCatalogPath that I assign to my full-text catalog RootPath
> property. (see code sample above)
> How can I fix this error. Please help.
> Any help will be appreciated,
> _dino_
>
Showing posts with label catalog. Show all posts
Showing posts with label catalog. Show all posts
Friday, March 9, 2012
Friday, February 24, 2012
Help - An unknown full-text failure (80004005) while trying to create a new full-text cata
Hi,
We just started getting this error when trying to create new catalogs
on databases that do not already have a Full-Text catalog. I can
create a new catalog on a database that has an existing catalog, but
cannot on one that does not.
I get the following error: "An unknown full-text failure (80004005)
occurred in function EnumCatalogs on full-text catalog" when I try to
create a new catalog through Enterprise Manager and this error when I
execute sp_FullText_Database:
"Server: Msg 7608, Level 17, State 1, Procedure sp_fulltext_database,
Line 46
An unknown full-text failure (80004005) occurred in function
EnumCatalogs on full-text catalog ''."
Line 46 in sp_fulltext_database looks to be:
DBCC CALLFULLTEXT ( 7, @.dbid )-- FTDropAllCatalogs ( "@.dbid" )
I've seen plenty of postings of this error, but they are all for SQL
Server 7.0.
We're running SQL Server 2000:
Microsoft SQL Server 2000 - 8.00.818 (Intel X86) May 31 2003
16:08:15
Copyright (c) 1988-2003 Microsoft Corporation
Standard Edition on Windows NT 5.0 (Build 2195: Service Pack 4)
Any ideas?
Thanks in advance.
Andy
Andrew,
You are correct *most* of the causes for the "unknown full-text failure
(80004005) while trying to create a new full-text catalog" in SQL Server
2000 were either eliminated or more specific error text messages were
defined. Still, you should check the obvious causes, for example, have you
recently changed the DCOM settings on this server? Have you or anyone else
changed the MSSQLServer startup account via Win2K's Component services? Does
the SQL logon account BUILTIN\Administrator exist with the default settings
of master database and have sysadmin privileges? Is this SQL Server
installed on a Domain Controller (DC) or backup DC (BDC)? Except for the
DCOM setting & installed on a DC/BDC, you should of gotten different error
text messages if any other changes were made. You should review the
following KB articles:
277549 (Q277549) PRB: Unable to Build Full-Text Catalog After You Modify
MSSQLServer Logon Account Through [NT4.0) Control Panel [or Win2K Component
Services]
http://support.microsoft.com/default...B;EN-US;277549
317746 (Q317746) PRB: SQL Server Full-Text Search Does Not Populate Catalogs
http://support.microsoft.com/default...b;en-us;317746
263712 (Q263712) INF: How to Impede Windows NT Administrators from
Administering a Clustered SQL Server
http://support.microsoft.com/default...B;EN-US;263712
Depending upon your answers, it may be necessary to re-install the SQL FTS
components via the procedures doc'ed in the following KB article: 827449 How
to manually reinstall the Microsoft Search service for an instance of SQL
2000
http://support.microsoft.com/default...b;EN-US;827449
Regards,
John
"Andrew Zoltay" <andy_trek@.hotmail.com> wrote in message
news:69abe98.0406281407.6885baa7@.posting.google.co m...
> Hi,
> We just started getting this error when trying to create new catalogs
> on databases that do not already have a Full-Text catalog. I can
> create a new catalog on a database that has an existing catalog, but
> cannot on one that does not.
> I get the following error: "An unknown full-text failure (80004005)
> occurred in function EnumCatalogs on full-text catalog" when I try to
> create a new catalog through Enterprise Manager and this error when I
> execute sp_FullText_Database:
> "Server: Msg 7608, Level 17, State 1, Procedure sp_fulltext_database,
> Line 46
> An unknown full-text failure (80004005) occurred in function
> EnumCatalogs on full-text catalog ''."
> Line 46 in sp_fulltext_database looks to be:
> DBCC CALLFULLTEXT ( 7, @.dbid ) -- FTDropAllCatalogs ( "@.dbid" )
> I've seen plenty of postings of this error, but they are all for SQL
> Server 7.0.
> We're running SQL Server 2000:
> Microsoft SQL Server 2000 - 8.00.818 (Intel X86) May 31 2003
> 16:08:15
> Copyright (c) 1988-2003 Microsoft Corporation
> Standard Edition on Windows NT 5.0 (Build 2195: Service Pack 4)
> Any ideas?
> Thanks in advance.
> Andy
|||Andrew,
You are correct *most* of the causes for the "unknown full-text failure
(80004005) while trying to create a new full-text catalog" in SQL Server
2000 were either eliminated or more specific error text messages were
defined. Still, you should check the obvious causes, for example, have you
recently changed the DCOM settings on this server? Have you or anyone else
changed the MSSQLServer startup account via Win2K's Component services? Does
the SQL logon account BUILTIN\Administrator exist with the default settings
of master database and have sysadmin privileges? Is this SQL Server
installed on a Domain Controller (DC) or backup DC (BDC)? Except for the
DCOM setting & installed on a DC/BDC, you should of gotten different error
text messages if any other changes were made. You should review the
following KB articles:
277549 (Q277549) PRB: Unable to Build Full-Text Catalog After You Modify
MSSQLServer Logon Account Through [NT4.0) Control Panel [or Win2K Component
Services]
http://support.microsoft.com/default...B;EN-US;277549
317746 (Q317746) PRB: SQL Server Full-Text Search Does Not Populate Catalogs
http://support.microsoft.com/default...b;en-us;317746
263712 (Q263712) INF: How to Impede Windows NT Administrators from
Administering a Clustered SQL Server
http://support.microsoft.com/default...B;EN-US;263712
Depending upon your answers, it may be necessary to re-install the SQL FTS
components via the procedures doc'ed in the following KB article: 827449 How
to manually reinstall the Microsoft Search service for an instance of SQL
2000
http://support.microsoft.com/default...b;EN-US;827449
Regards,
John
"Andrew Zoltay" <andy_trek@.hotmail.com> wrote in message
news:69abe98.0406281407.6885baa7@.posting.google.co m...
> Hi,
> We just started getting this error when trying to create new catalogs
> on databases that do not already have a Full-Text catalog. I can
> create a new catalog on a database that has an existing catalog, but
> cannot on one that does not.
> I get the following error: "An unknown full-text failure (80004005)
> occurred in function EnumCatalogs on full-text catalog" when I try to
> create a new catalog through Enterprise Manager and this error when I
> execute sp_FullText_Database:
> "Server: Msg 7608, Level 17, State 1, Procedure sp_fulltext_database,
> Line 46
> An unknown full-text failure (80004005) occurred in function
> EnumCatalogs on full-text catalog ''."
> Line 46 in sp_fulltext_database looks to be:
> DBCC CALLFULLTEXT ( 7, @.dbid ) -- FTDropAllCatalogs ( "@.dbid" )
> I've seen plenty of postings of this error, but they are all for SQL
> Server 7.0.
> We're running SQL Server 2000:
> Microsoft SQL Server 2000 - 8.00.818 (Intel X86) May 31 2003
> 16:08:15
> Copyright (c) 1988-2003 Microsoft Corporation
> Standard Edition on Windows NT 5.0 (Build 2195: Service Pack 4)
> Any ideas?
> Thanks in advance.
> Andy
|||Andrew,
A follow-up to my reply below... There is now an updated KB article
"295772 (Q295772) How to debug full-text search when a 7608
(0x80004005) error message occurs in SQL Server" at
http://support.microsoft.com/?kbid=295772 that discuss in more detail
how to debug the unknown full-text failure (80004005) error you have
encountered. Let us know if you have resolved this error!
Thanks,
John
"John Kane" <jt-kane@.comcast.net> wrote in message news:<#Ju5y0ZXEHA.3892@.TK2MSFTNGP09.phx.gbl>...[vbcol=seagreen]
> Andrew,
> You are correct *most* of the causes for the "unknown full-text failure
> (80004005) while trying to create a new full-text catalog" in SQL Server
> 2000 were either eliminated or more specific error text messages were
> defined. Still, you should check the obvious causes, for example, have you
> recently changed the DCOM settings on this server? Have you or anyone else
> changed the MSSQLServer startup account via Win2K's Component services? Does
> the SQL logon account BUILTIN\Administrator exist with the default settings
> of master database and have sysadmin privileges? Is this SQL Server
> installed on a Domain Controller (DC) or backup DC (BDC)? Except for the
> DCOM setting & installed on a DC/BDC, you should of gotten different error
> text messages if any other changes were made. You should review the
> following KB articles:
> 277549 (Q277549) PRB: Unable to Build Full-Text Catalog After You Modify
> MSSQLServer Logon Account Through [NT4.0) Control Panel [or Win2K Component
> Services]
> http://support.microsoft.com/default...B;EN-US;277549
> 317746 (Q317746) PRB: SQL Server Full-Text Search Does Not Populate Catalogs
> http://support.microsoft.com/default...b;en-us;317746
> 263712 (Q263712) INF: How to Impede Windows NT Administrators from
> Administering a Clustered SQL Server
> http://support.microsoft.com/default...B;EN-US;263712
> Depending upon your answers, it may be necessary to re-install the SQL FTS
> components via the procedures doc'ed in the following KB article: 827449 How
> to manually reinstall the Microsoft Search service for an instance of SQL
> 2000
> http://support.microsoft.com/default...b;EN-US;827449
> Regards,
> John
>
>
>
> "Andrew Zoltay" <andy_trek@.hotmail.com> wrote in message
> news:69abe98.0406281407.6885baa7@.posting.google.co m...
|||Hi John,
Thanks for your quick response. Unfortunately, it was nothing out of
the "obvious" catagory. I checked into the suggested articles with no
luck either.
Found a workaround since we do have another server where there is no
problem creating catalogs. We'll probably end up doing the manual
reinstall you recommended, but currently don't have the time to try
it. It's not mission critical since it's just a dev server.
Thanks again!
Andy
"John Kane" <jt-kane@.comcast.net> wrote in message news:<#Ju5y0ZXEHA.3892@.TK2MSFTNGP09.phx.gbl>...[vbcol=seagreen]
> Andrew,
> You are correct *most* of the causes for the "unknown full-text failure
> (80004005) while trying to create a new full-text catalog" in SQL Server
> 2000 were either eliminated or more specific error text messages were
> defined. Still, you should check the obvious causes, for example, have you
> recently changed the DCOM settings on this server? Have you or anyone else
> changed the MSSQLServer startup account via Win2K's Component services? Does
> the SQL logon account BUILTIN\Administrator exist with the default settings
> of master database and have sysadmin privileges? Is this SQL Server
> installed on a Domain Controller (DC) or backup DC (BDC)? Except for the
> DCOM setting & installed on a DC/BDC, you should of gotten different error
> text messages if any other changes were made. You should review the
> following KB articles:
> 277549 (Q277549) PRB: Unable to Build Full-Text Catalog After You Modify
> MSSQLServer Logon Account Through [NT4.0) Control Panel [or Win2K Component
> Services]
> http://support.microsoft.com/default...B;EN-US;277549
> 317746 (Q317746) PRB: SQL Server Full-Text Search Does Not Populate Catalogs
> http://support.microsoft.com/default...b;en-us;317746
> 263712 (Q263712) INF: How to Impede Windows NT Administrators from
> Administering a Clustered SQL Server
> http://support.microsoft.com/default...B;EN-US;263712
> Depending upon your answers, it may be necessary to re-install the SQL FTS
> components via the procedures doc'ed in the following KB article: 827449 How
> to manually reinstall the Microsoft Search service for an instance of SQL
> 2000
> http://support.microsoft.com/default...b;EN-US;827449
> Regards,
> John
>
>
>
> "Andrew Zoltay" <andy_trek@.hotmail.com> wrote in message
> news:69abe98.0406281407.6885baa7@.posting.google.co m...
We just started getting this error when trying to create new catalogs
on databases that do not already have a Full-Text catalog. I can
create a new catalog on a database that has an existing catalog, but
cannot on one that does not.
I get the following error: "An unknown full-text failure (80004005)
occurred in function EnumCatalogs on full-text catalog" when I try to
create a new catalog through Enterprise Manager and this error when I
execute sp_FullText_Database:
"Server: Msg 7608, Level 17, State 1, Procedure sp_fulltext_database,
Line 46
An unknown full-text failure (80004005) occurred in function
EnumCatalogs on full-text catalog ''."
Line 46 in sp_fulltext_database looks to be:
DBCC CALLFULLTEXT ( 7, @.dbid )-- FTDropAllCatalogs ( "@.dbid" )
I've seen plenty of postings of this error, but they are all for SQL
Server 7.0.
We're running SQL Server 2000:
Microsoft SQL Server 2000 - 8.00.818 (Intel X86) May 31 2003
16:08:15
Copyright (c) 1988-2003 Microsoft Corporation
Standard Edition on Windows NT 5.0 (Build 2195: Service Pack 4)
Any ideas?
Thanks in advance.
Andy
Andrew,
You are correct *most* of the causes for the "unknown full-text failure
(80004005) while trying to create a new full-text catalog" in SQL Server
2000 were either eliminated or more specific error text messages were
defined. Still, you should check the obvious causes, for example, have you
recently changed the DCOM settings on this server? Have you or anyone else
changed the MSSQLServer startup account via Win2K's Component services? Does
the SQL logon account BUILTIN\Administrator exist with the default settings
of master database and have sysadmin privileges? Is this SQL Server
installed on a Domain Controller (DC) or backup DC (BDC)? Except for the
DCOM setting & installed on a DC/BDC, you should of gotten different error
text messages if any other changes were made. You should review the
following KB articles:
277549 (Q277549) PRB: Unable to Build Full-Text Catalog After You Modify
MSSQLServer Logon Account Through [NT4.0) Control Panel [or Win2K Component
Services]
http://support.microsoft.com/default...B;EN-US;277549
317746 (Q317746) PRB: SQL Server Full-Text Search Does Not Populate Catalogs
http://support.microsoft.com/default...b;en-us;317746
263712 (Q263712) INF: How to Impede Windows NT Administrators from
Administering a Clustered SQL Server
http://support.microsoft.com/default...B;EN-US;263712
Depending upon your answers, it may be necessary to re-install the SQL FTS
components via the procedures doc'ed in the following KB article: 827449 How
to manually reinstall the Microsoft Search service for an instance of SQL
2000
http://support.microsoft.com/default...b;EN-US;827449
Regards,
John
"Andrew Zoltay" <andy_trek@.hotmail.com> wrote in message
news:69abe98.0406281407.6885baa7@.posting.google.co m...
> Hi,
> We just started getting this error when trying to create new catalogs
> on databases that do not already have a Full-Text catalog. I can
> create a new catalog on a database that has an existing catalog, but
> cannot on one that does not.
> I get the following error: "An unknown full-text failure (80004005)
> occurred in function EnumCatalogs on full-text catalog" when I try to
> create a new catalog through Enterprise Manager and this error when I
> execute sp_FullText_Database:
> "Server: Msg 7608, Level 17, State 1, Procedure sp_fulltext_database,
> Line 46
> An unknown full-text failure (80004005) occurred in function
> EnumCatalogs on full-text catalog ''."
> Line 46 in sp_fulltext_database looks to be:
> DBCC CALLFULLTEXT ( 7, @.dbid ) -- FTDropAllCatalogs ( "@.dbid" )
> I've seen plenty of postings of this error, but they are all for SQL
> Server 7.0.
> We're running SQL Server 2000:
> Microsoft SQL Server 2000 - 8.00.818 (Intel X86) May 31 2003
> 16:08:15
> Copyright (c) 1988-2003 Microsoft Corporation
> Standard Edition on Windows NT 5.0 (Build 2195: Service Pack 4)
> Any ideas?
> Thanks in advance.
> Andy
|||Andrew,
You are correct *most* of the causes for the "unknown full-text failure
(80004005) while trying to create a new full-text catalog" in SQL Server
2000 were either eliminated or more specific error text messages were
defined. Still, you should check the obvious causes, for example, have you
recently changed the DCOM settings on this server? Have you or anyone else
changed the MSSQLServer startup account via Win2K's Component services? Does
the SQL logon account BUILTIN\Administrator exist with the default settings
of master database and have sysadmin privileges? Is this SQL Server
installed on a Domain Controller (DC) or backup DC (BDC)? Except for the
DCOM setting & installed on a DC/BDC, you should of gotten different error
text messages if any other changes were made. You should review the
following KB articles:
277549 (Q277549) PRB: Unable to Build Full-Text Catalog After You Modify
MSSQLServer Logon Account Through [NT4.0) Control Panel [or Win2K Component
Services]
http://support.microsoft.com/default...B;EN-US;277549
317746 (Q317746) PRB: SQL Server Full-Text Search Does Not Populate Catalogs
http://support.microsoft.com/default...b;en-us;317746
263712 (Q263712) INF: How to Impede Windows NT Administrators from
Administering a Clustered SQL Server
http://support.microsoft.com/default...B;EN-US;263712
Depending upon your answers, it may be necessary to re-install the SQL FTS
components via the procedures doc'ed in the following KB article: 827449 How
to manually reinstall the Microsoft Search service for an instance of SQL
2000
http://support.microsoft.com/default...b;EN-US;827449
Regards,
John
"Andrew Zoltay" <andy_trek@.hotmail.com> wrote in message
news:69abe98.0406281407.6885baa7@.posting.google.co m...
> Hi,
> We just started getting this error when trying to create new catalogs
> on databases that do not already have a Full-Text catalog. I can
> create a new catalog on a database that has an existing catalog, but
> cannot on one that does not.
> I get the following error: "An unknown full-text failure (80004005)
> occurred in function EnumCatalogs on full-text catalog" when I try to
> create a new catalog through Enterprise Manager and this error when I
> execute sp_FullText_Database:
> "Server: Msg 7608, Level 17, State 1, Procedure sp_fulltext_database,
> Line 46
> An unknown full-text failure (80004005) occurred in function
> EnumCatalogs on full-text catalog ''."
> Line 46 in sp_fulltext_database looks to be:
> DBCC CALLFULLTEXT ( 7, @.dbid ) -- FTDropAllCatalogs ( "@.dbid" )
> I've seen plenty of postings of this error, but they are all for SQL
> Server 7.0.
> We're running SQL Server 2000:
> Microsoft SQL Server 2000 - 8.00.818 (Intel X86) May 31 2003
> 16:08:15
> Copyright (c) 1988-2003 Microsoft Corporation
> Standard Edition on Windows NT 5.0 (Build 2195: Service Pack 4)
> Any ideas?
> Thanks in advance.
> Andy
|||Andrew,
A follow-up to my reply below... There is now an updated KB article
"295772 (Q295772) How to debug full-text search when a 7608
(0x80004005) error message occurs in SQL Server" at
http://support.microsoft.com/?kbid=295772 that discuss in more detail
how to debug the unknown full-text failure (80004005) error you have
encountered. Let us know if you have resolved this error!
Thanks,
John
"John Kane" <jt-kane@.comcast.net> wrote in message news:<#Ju5y0ZXEHA.3892@.TK2MSFTNGP09.phx.gbl>...[vbcol=seagreen]
> Andrew,
> You are correct *most* of the causes for the "unknown full-text failure
> (80004005) while trying to create a new full-text catalog" in SQL Server
> 2000 were either eliminated or more specific error text messages were
> defined. Still, you should check the obvious causes, for example, have you
> recently changed the DCOM settings on this server? Have you or anyone else
> changed the MSSQLServer startup account via Win2K's Component services? Does
> the SQL logon account BUILTIN\Administrator exist with the default settings
> of master database and have sysadmin privileges? Is this SQL Server
> installed on a Domain Controller (DC) or backup DC (BDC)? Except for the
> DCOM setting & installed on a DC/BDC, you should of gotten different error
> text messages if any other changes were made. You should review the
> following KB articles:
> 277549 (Q277549) PRB: Unable to Build Full-Text Catalog After You Modify
> MSSQLServer Logon Account Through [NT4.0) Control Panel [or Win2K Component
> Services]
> http://support.microsoft.com/default...B;EN-US;277549
> 317746 (Q317746) PRB: SQL Server Full-Text Search Does Not Populate Catalogs
> http://support.microsoft.com/default...b;en-us;317746
> 263712 (Q263712) INF: How to Impede Windows NT Administrators from
> Administering a Clustered SQL Server
> http://support.microsoft.com/default...B;EN-US;263712
> Depending upon your answers, it may be necessary to re-install the SQL FTS
> components via the procedures doc'ed in the following KB article: 827449 How
> to manually reinstall the Microsoft Search service for an instance of SQL
> 2000
> http://support.microsoft.com/default...b;EN-US;827449
> Regards,
> John
>
>
>
> "Andrew Zoltay" <andy_trek@.hotmail.com> wrote in message
> news:69abe98.0406281407.6885baa7@.posting.google.co m...
|||Hi John,
Thanks for your quick response. Unfortunately, it was nothing out of
the "obvious" catagory. I checked into the suggested articles with no
luck either.
Found a workaround since we do have another server where there is no
problem creating catalogs. We'll probably end up doing the manual
reinstall you recommended, but currently don't have the time to try
it. It's not mission critical since it's just a dev server.
Thanks again!
Andy
"John Kane" <jt-kane@.comcast.net> wrote in message news:<#Ju5y0ZXEHA.3892@.TK2MSFTNGP09.phx.gbl>...[vbcol=seagreen]
> Andrew,
> You are correct *most* of the causes for the "unknown full-text failure
> (80004005) while trying to create a new full-text catalog" in SQL Server
> 2000 were either eliminated or more specific error text messages were
> defined. Still, you should check the obvious causes, for example, have you
> recently changed the DCOM settings on this server? Have you or anyone else
> changed the MSSQLServer startup account via Win2K's Component services? Does
> the SQL logon account BUILTIN\Administrator exist with the default settings
> of master database and have sysadmin privileges? Is this SQL Server
> installed on a Domain Controller (DC) or backup DC (BDC)? Except for the
> DCOM setting & installed on a DC/BDC, you should of gotten different error
> text messages if any other changes were made. You should review the
> following KB articles:
> 277549 (Q277549) PRB: Unable to Build Full-Text Catalog After You Modify
> MSSQLServer Logon Account Through [NT4.0) Control Panel [or Win2K Component
> Services]
> http://support.microsoft.com/default...B;EN-US;277549
> 317746 (Q317746) PRB: SQL Server Full-Text Search Does Not Populate Catalogs
> http://support.microsoft.com/default...b;en-us;317746
> 263712 (Q263712) INF: How to Impede Windows NT Administrators from
> Administering a Clustered SQL Server
> http://support.microsoft.com/default...B;EN-US;263712
> Depending upon your answers, it may be necessary to re-install the SQL FTS
> components via the procedures doc'ed in the following KB article: 827449 How
> to manually reinstall the Microsoft Search service for an instance of SQL
> 2000
> http://support.microsoft.com/default...b;EN-US;827449
> Regards,
> John
>
>
>
> "Andrew Zoltay" <andy_trek@.hotmail.com> wrote in message
> news:69abe98.0406281407.6885baa7@.posting.google.co m...
Subscribe to:
Posts (Atom)