Test-SPContentDatabase
适用于: SharePoint Foundation 2010, SharePoint Server 2010
上一次修改主题: 2015-03-09
测试内容数据库。
Syntax
Test-SPContentDatabase [-Identity] <SPContentDatabasePipeBind> [-AssignmentCollection <SPAssignmentCollection>] [-DatabaseCredentials <PSCredential>] [-ServerInstance <SPDatabaseServiceInstancePipeBind>] [-ShowRowCounts <SwitchParameter>]
Test-SPContentDatabase -Name <String> -WebApplication <SPWebApplicationPipeBind> [-AssignmentCollection <SPAssignmentCollection>] [-DatabaseCredentials <PSCredential>] [-ServerInstance <SPDatabaseServiceInstancePipeBind>] [-ShowRowCounts <SwitchParameter>]
详细说明
此 cmdlet 包含多个参数集。您可以只使用来自一个参数集的参数,也可以不合并来自不同参数集的参数。有关如何使用参数集的详细信息,请参阅 Cmdlet 参数集。
使用 Test-SPContentDatabase cmdlet 可对照 Web 应用程序测试内容数据库,以验证 Web 应用程序中是否还安装了内容数据库中所引用的所有自定义内容。此 cmdlet 可以对当前连接到服务器场的内容数据库发出,也可以对未连接到服务器场的内容数据库发出。它可以用来从 SharePoint 2010 产品以及从 SharePoint 产品和技术测试内容数据库。
备注
Test-SPContentDatabase cmdlet 不会更改内容数据库的任何数据或结构,但在检查过程中,可能会对数据库造成负荷,这可能暂时阻止使用内容数据库。此 cmdlet 应该只对当前使用率较低,或未在使用的内容数据库使用。
Parameters
参数 | 是否必需 | 类型 | 说明 |
---|---|---|---|
Identity |
必需 |
Microsoft.SharePoint.PowerShell.SPContentDatabasePipeBind |
指定以 GUID 或数据库名称(如果唯一)形式已连接到两个参数集其中之一的现有 Microsoft SharePoint 2010 产品 内容数据库。 |
Name |
必需 |
System.String |
指定要测试的现有内容数据库。 类型必须是有效的 SharePoint 内容数据库名称;例如,SPContentDB1。 |
WebApplication |
必需 |
Microsoft.SharePoint.PowerShell.SPWebApplicationPipeBind |
指定要用来测试内容数据库的 SharePoint Web 应用程序。 类型必须为有效的 GUID,格式为 12345678-90ab-cdef-1234-567890bcdefgh;SharePoint Web 应用程序的有效名称(例如,MyOfficeApp1);或者有效 SPWebApplication 对象的实例。 |
AssignmentCollection |
可选 |
Microsoft.SharePoint.PowerShell.SPAssignmentCollection |
管理对象以便正确进行处理。使用 SPWeb 或 SPSite 等对象可能会耗用大量内存,而且在 Windows PowerShell 脚本中使用这些对象需要正确管理内存。通过使用 SPAssignment 对象,可以将对象分配给变量,然后在不需要这些对象时对它们进行处理,以释放内存。在使用 SPWeb、SPSite 或 SPSiteAdministration 对象时,如果不使用分配集合或 Global 参数,则会自动处理这些对象。
Note
在使用 Global 参数时,所有对象均包含在全局存储中。如果未立即使用对象,或未通过使用 Stop-SPAssignment 命令来处理对象,则可能会发生内存不足的情况。
|
DatabaseCredentials |
可选 |
System.Management.Automation.PSCredential |
指定包含要用于数据库 SQL Server 身份验证的用户名和密码的 PSCredential 对象。 类型必须是有效的 PSCredential 对象。 |
ServerInstance |
可选 |
Microsoft.SharePoint.PowerShell.SPDatabaseServiceInstancePipeBind |
指定要用来测试指定内容数据库的数据库服务的实例。 类型必须为有效的 GUID,如 12345678-90ab-cdef-1234-567890bcdefgh;SQL Server 实例的有效名称(例如,DBSvrInstance1);或者有效 SPDatabaseServiceInstance 对象的实例。 |
ShowRowCounts |
可选 |
System.Management.Automation.SwitchParameter |
返回数据库统计信息,在内容数据库的表中是指行计数。 |
输入类型
返回类型
Example
----------------------------示例 1-----------------------
Test-SPContentDatabase -name WSS_Content_DB -webapplication http://sitename
此示例对照 sitename
Web 应用程序测试 WSS_Content_DB
内容数据库,并返回问题的列表。
----------------------------示例 2-----------------------
$DB = Get-SPContentDatabase -site https://contoso.com
Test-SPContentDatabase $DB -showrowcounts
此示例获取包含网站集(位于 https://contoso.com
)的内容数据库,然后对照承载该数据库的 Web 应用程序测试此数据库,以确定问题。除了显示问题列表之外,因为指定了 ShowRowCounts 参数,所以此 cmdlet 还将从内容数据库返回表大小度量。
See Also
Reference
Get-SPContentDatabase
New-SPContentDatabase
Set-SPContentDatabase
Remove-SPContentDatabase
Mount-SPContentDatabase
Upgrade-SPContentDatabase