适用于: SQL Server Azure SQL 数据库 Azure SQL 托管实例检查当前数据库中指定表上的指定约束或所有约束的完整性。Transact-SQL 语法约定语法syntaxsql 复制 DBCC CHECKCONSTRAINTS [ ( table_name | table_id | constraint_name | constraint_id ) ] [ WITH [ { ALL_CONSTRAINTS | ALL_ERRORMSGS } ...
要求具有 sysadmin 固定服务器角色或 db_owner 固定数据库角色的成员身份。 示例 下面的示例将对当前数据库和DBCC CHECKALLOC数据库执行AdventureWorks2022。 SQL -- Check the current database.DBCC CHECKALLOC; GO-- Check the AdventureWorks2022 database.DBCC CHECKALLOC (AdventureWorks2022); GO ...
MySQL, Redis, SQL Server, MongoDB, PostgreSQL, and Oracle Applications Tomcat, FTP, rsync, Subversion (SVN), ActiveMQ, RabbitMQ, OpenVPN, JBoss 6, JBoss 7, Jenkins, OpenLDAP, VNC Server, and pptpd You must fix the baseline risks at the earliest opportunity. This way, you can prevent we...
azure.elasticdb.shard.mapper com.microsoft.azure.elasticdb.shard.recovery com.microsoft.azure.elasticdb.shard.schema com.microsoft.azure.elasticdb.shard.store com.microsoft.azure.loganalytics com.microsoft.azure.management.appservice com.microsoft.azure.management.compute com.microsoft.azure.management.data...
要求具有sysadmin固定服务器角色或db_owner固定数据库角色的成员身份。 示例 下面的示例将检查当前数据库的主文件组。 SQL DBCC CHECKFILEGROUP; GO B. 检查不含非聚集索引的 AdventureWorks PRIMARY 文件组 下面的示例通过指定主文件组的标识号并指定NOINDEX,对AdventureWorks2022数据库主文件组(不包括非聚集索引)进行检...
@@PACKET_ERRORS (Transact-SQL) @@PROCID (Transact-SQL) @@REMSERVER (Transact-SQL) @@ROWCOUNT (Transact-SQL) @@SERVERNAME (Transact-SQL) @@SERVICENAME (Transact-SQL) @@SPID (Transact-SQL) @@TEXTSIZE (Transact-SQL) @@TIMETICKS (Transact-SQL) @@TOTAL_ERRORS (Transact-SQL) @@TOTAL_READ...
acs:rds:{#regionId}:{#accountId}:dbinstance/{#dbinstanceId} rds:ResourceTag 无 请求参数 名称类型必填描述示例值 DBInstanceId string 是 实例ID。可调用 DescribeDBInstances 获取。 pgm-bp1c808s731l*** PageSize integer 否 表示大版本升级前检查报告每页显示的记录数。 取值范围: 30(默认值) 50 10...
PageSize integer 否 设置分页查询时,每页显示的检查结果的数量。默认值为 20,表示每页显示 20 条检查结果。 20 QueryFlag string 否 检查项的启用状态。取值: enabled:已启用 disabled:未启用 enabled ItemIds array 否 检查项 ID。ID 值对应的风险检查项详细信息请参见本文档返回参数后的风险检查项表格。 str...
Even if I am not sure if this is what you are looking for, I hope that I have helped you a bit. NikolinoDE I know I don't know anything (Socrates)
Requires membership in thesysadminfixed server role or thedb_ownerfixed database role. Examples A. Check a table The following example checks the constraint integrity of the tableTable1in theAdventureWorks2022database. SQL USEAdventureWorks2022; GOCREATETABLETable1 (Col1INT, Col2CHAR(30)); GOINSE...