sql >> Database teknologi >  >> RDS >> Sqlserver

SQL Server 2005:Vedhæft database ved hjælp af sp_attach_db med fuldtekstkatalog

Brug CREATE DATABASE ... FOR ATTACH; . Se eksempel 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. returnere enkelt række i lagret procedure på oracle

  2. Sådan viser du den aktuelle indstilling for Null-output i PostgreSQL (psql)

  3. Indstilling af forbindelsePool crasher Slick 3.0

  4. foreslå et postgres-værktøj til at finde forskellen mellem skemaet og dataene