次の方法で共有


Export-SPAccessServicesDatabase

Data-Tier フレームワークを使用して Access Services データベースを DACPAC にエクスポートします。

構文

Export-SPAccessServicesDatabase
      [-AssignmentCollection <SPAssignmentCollection>]
      -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

$contentdb = Get-SPContentDatabase ContentDbName
$accessDb = Get-SPAccessServicesDatabase -ContentDb $contentdb -EA 0 | Select -First 1
Export-SPAccessServicesDatabase -DatabaseName $accessDb.DatabaseName -ServerReferenceId $accessDb.ServerReferenceId | Set-Content -Path C:\accessDb.bacpac -Encoding Byte

このコマンドレットは、指定されたコンテンツ データベースから最初の Access Database を取得し、アクセス データベースを BACPAC にエクスポートします。 その後、この BACPAC ファイルを SQL Server Management Studio 経由でインポートして、Access Database を復元できます。

パラメーター

-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

-DatabaseName

Access Database の名前。

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 Microsoft。SharePoint.PowerShell.SPAssignmentCollection

出力

System.Object