sql >> データベース >  >> RDS >> Sqlserver

SQL Server 2005:フル テキスト カタログで sp_attach_db を使用してデータベースを接続する

    CREATE DATABASE ... FOR ATTACH; を使用します。 .例 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. PythonとMySQLdbを使用してmysqlデータベースのテーブル名を取得するにはどうすればよいですか?

    2. 一般的なデータベースサーバーの構築と展開の手順

    3. MariaDBでのLPAD()のしくみ

    4. WindowsからSQLServerへのOracleの接続