Sqlserver
 sql >> Cơ Sở Dữ Liệu >  >> RDS >> Sqlserver

SQL Server 2005:Đính kèm cơ sở dữ liệu bằng sp_attach_db với danh mục văn bản đầy đủ

Sử dụng CREATE DATABASE ... FOR ATTACH; . Xem Ví dụ 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. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Cập nhật một trường của bảng hiện có với Logic Tăng dần Tự động

  2. Hàm AWS Lambda để kết nối với SQL Server bằng Python

  3. Tôi có thể bật ignore_dup_key cho khóa chính không?

  4. Chọn giữa hai ngày trong trường DateTime - SQL Server

  5. Làm thế nào để cam kết và khôi phục giao dịch trong máy chủ sql?