Click here to Skip to main content
15,896,912 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
For following error occur
1. To upgrade a full-text catalog,click add catalog,and locate and select it. Full-text indexes will be imported, based on the Full-Text Upgrade Option.

2. Dialog box show error message

1.IF you are certain that you have added all the necessary full-text catalogs, click ok. To add more catalogs, click cancel
2. An error occured when attaching the database(s). Click the hyperlink in the message column for details.

please help me remove this error occurs.

thank you.
Posted

You can attach mdf file to SQL Server using the below code:

SQL
CREATE DATABASE TestDb ON
( FILENAME = @'C:\MyFolder\TestDb.mdf')
FOR ATTACH
GO


In reference to your question, itz advisable to remove the existing full text catalog and adding a new catalog with the same name. When upgrading a server instance to SQL Server 2008 R2, the user interface allows you to choose three upgrade options: Import, Rebuild and Reset.
 
Share this answer
 
Comments
arulbaskar 12-Jan-12 0:58am    
I am executed this code
CREATE DATABASE TestDb ON
( FILENAME = 'G:\DB\smsdb_Data.mdf')
FOR ATTACH
GO
For following error occurs
Unable to open the physical file "G:\DB\smsdb_Data.mdf". Operating system error 5: "5(Access is denied.)".

how to remove existing full text catalog please step by step process.

Thankyou
Change the permission levels to FullControl for that *.mdf file, which ever you trying to attach the database.
 
Share this answer
 
Run the same thing by using "Run As Administrator" option
 
Share this answer
 
Comments
narayana1984 20-Jul-14 13:42pm    
thank u so much it worked
NguyenVan Tu 26-Jul-14 10:25am    
thank u

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900