Import-SPAccessServicesDatabase
Data-Tier フレームワークを使用して Access Services データベースを DACPAC にインポートします。
構文
Import-SPAccessServicesDatabase
[-AssignmentCollection <SPAssignmentCollection>]
-Bacpac <Byte[]>
-DatabaseName <String>
-ServerReferenceId <Guid>
[<CommonParameters>]
説明
このコマンドレットは、Access Services データベースを DACPAC にエクスポートします。 コマンドレットを実行する SharePoint サーバーに Data-Tier Framework をインストールする必要があります。 Data-Tier Framework パッケージは、Microsoft ® SQL Server Data-Tier ® Application Framework (17.4.1 GA DacFx) にあります。 ダウンロードから次の MSI をインストールします。
EN\x86\DacFramework.msi
注: x86 パッケージが必要です。 x64 パッケージは、このコマンドレットと互換性がありません。
Data-Tier Framework の詳細については、「 データ層アプリケーション」を参照してください。
例
例 1
$accessDb = Get-SPAccessServicesDatabaseServer -ServiceContext http://site_url -DatabaseServer SQLSERVERNAME -DatabaseServerGroup DEFAULT
Import-SPAccessServicesDatabase -DatabaseName accessDatabaseName -ServerReferenceId $accessDb.ServerReferenceId -Bacpac (Get-Content -Path C:\accessDb.bacpac -Encoding Byte)
次の使用例は、Access Services サービス アプリケーションのSQL Serverの ServerReferenceId 値を取得します。-DatabaseServerGroup は既定で既定値に設定されています。 次の手順では、bacpac ファイルをバイト配列にインポートし、最後に、指定した SQL データベース名として Access Services Database を指定したSQL Serverにインポートします。
パラメーター
-AssignmentCollection
適切な破棄を行うためにオブジェクトを管理します。 SPWeb や SPSite などのオブジェクトの使用によって大量のメモリが使用される場合があるので、Windows PowerShell スクリプトでこれらのオブジェクトを使用するには適切なメモリ管理が必要です。 メモリの解放が必要になった場合は、SPAssignment オブジェクトを使用して、変数へのオブジェクトの割り当てとオブジェクトの破棄を行うことができます。 割り当てコレクションまたは Global パラメーターが使用されていない場合、SPWeb、SPSite、または SPSiteAdministration オブジェクトが使用されていると、オブジェクトは自動的に破棄されます。
Global パラメーターが使用されている場合は、オブジェクトはすべてグローバル ストアに格納されます。 Stop-SPAssignment コマンドを使用してオブジェクトの使用または破棄を直接行わないと、メモリ不足のシナリオになる場合があります。
Type: | SPAssignmentCollection |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Applies to: | SharePoint Server 2016, SharePoint Server 2019 |
-Bacpac
bacpac ファイルのバイト配列。
Type: | Byte[] |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Applies to: | SharePoint Server 2016, SharePoint Server 2019 |
-DatabaseName
bacpac ファイルから作成するデータベースの名前。
Type: | String |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Applies to: | SharePoint Server 2016, SharePoint Server 2019 |
-ServerReferenceId
Access Database に使用する ServerReferenceId。
Type: | Guid |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Applies to: | SharePoint Server 2016, SharePoint Server 2019 |
入力
System.String
System.Guid System.Byte[] Microsoft。SharePoint.PowerShell.SPAssignmentCollection
出力
System.Object