sql >> Databasteknik >  >> RDS >> Sqlserver

SQL Server 2005:Bifoga databas med sp_attach_db med fulltextkatalog

Använd CREATE DATABASE ... FOR ATTACH; . Se exempel 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. Jag behöver en sql-fråga för att gruppera efter namn men returnera andra fält baserat på den senaste posten

  2. Hur installerar man ruby-oci8?

  3. Hur man använder postgresql någon med jsonb-data

  4. Problem med MySQL-konvertering av teckenuppsättning