Sqlserver
 sql >> Datenbank >  >> RDS >> Sqlserver

SQL Server 2005:Datenbank mit sp_attach_db mit Volltextkatalog anhängen

Verwenden Sie CREATE DATABASE ... FOR ATTACH; . Siehe Beispiel H:

USE master;
GO
--Detach the AdventureWorks2008R2 database
sp_detach_db AdventureWorks2008R2;
GO
-- Physically move the full text catalog to the new location.
--Attach the AdventureWorks2008R2 database and specify the new location of the full-text catalog.
CREATE DATABASE AdventureWorks2008R2 ON 
    (FILENAME = 'c:\...\Data\AdventureWorks2008R2_Data.mdf'), 
    (FILENAME = 'c:\...\Data\AdventureWorks2008R2_log.ldf'),
    (FILENAME = 'c:\myFTCatalogs\AdvWksFtCat')
FOR ATTACH;
GO