sql >> Database >  >> RDS >> Sqlserver

SQL Server 2005:database koppelen met sp_attach_db met volledige tekstcatalogus

Gebruik CREATE DATABASE ... FOR ATTACH; . Zie voorbeeld 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



  1. Json van twee mysql-tabellen in PHP

  2. SQL SELECT voor beginners

  3. Drop MySQL-databases die overeenkomen met een wildcard?

  4. Mysql-resultaat krijgen van itemupdate