The Sites Table stores information about site collections. The Table is defined using T-SQL syntax, as follows.

 TABLE <table name>(FullUrl                        nvarchar(255) DEFAULT N’’,Id                             uniqueidentifier,NextUserOrGroupId              int,OwnerID                        int,SecondaryContactID             int,Subscribed                     bit,TimeCreated                    datetime,UsersCount                     int           DEFAULT ((1)),BWUsed                         bigint,DiskUsed                       bigint,SecondStageDiskUsed            bigint,QuotaTemplateID                smallint,DiskQuota                      bigint,UserQuota                      int,DiskWarning                    bigint,DiskWarned                     datetime,BitFlags                       int,SecurityVersion                bigint,CertificationDate              datetime,DeadWebNotifyCount             smallint,PortalURL                      nvarchar(260),PortalName                     nvarchar(255),LastContentChange              datetime      DEFAULT (getutcdate()),LastSecurityChange             datetime      DEFAULT (getutcdate()),AuditFlags                     int,InheritAuditFlags              int,UserInfoListId                 uniqueidentifier,UserIsActiveFieldRowOrdinal    int,UserIsActiveFieldColumnName    nvarchar(64),UserAccountDirectoryPath       nvarchar(255),RootWebId                      uniqueidentifier,HashKey                        binary(16),DomainGroupMapVersion          bigint,DomainGroupMapCacheVersion     bigint        DEFAULT ((-1)),DomainGroupMapCache            image,HostHeader                     nvarchar(128),EmailEnabled                   bit  );

FullUrl: The absolute URL of the site collection.

Id: The Site Collection Identifier (section 2.2.1.9) of the site collection. Used only during upgrade.

NextUserOrGroupId: An integer value that is incremented when a new user or site group is added to the site collection. Indicates that the value of the next user or Site Group Identifier (section 2.2.1.10) to be used.

OwnerID: The User Identifier (section 2.2.1.13) of the user who owns the site collection.

SecondaryContactID: The User Identifier of the user who is the secondary contact of the site collection.

Subscribed: A bit set to 1 to indicate that the site collection has been subscribed for implementation-specific notifications.

TimeCreated: The date and time in UTC format when the site collection was created.

UsersCount: The number of users in the site collection.

BWUsed: The number of sites in the site collection actively used. Serves a Windows SharePoint Services implementation-specific, usage-reporting feature.

DiskUsed: The size of disk space used to store content in the site collection, in bytes.

SecondStageDiskUsed: The size of disk space used to store the second-stage trash bin items for the site collection, in bytes.

QuotaTemplateID: An identifier of a quota template used to set the disk quota for the site collection.

DiskQuota: The maximum size, in bytes, of disk space that can be allocated by the site collection. A value of 0 indicates that no limit is set.

UserQuota: The maximum number of users that the site collection can contain. A value of 0 indicates that no limit is set.

DiskWarning: An integer value indicating the number of times a warning was sent to the site collection owner about disk usage.

DiskWarned: A date and time value in UTC format set to the last time a warning was sent to the site collection owner about disk usage, if any.

BitFlags: A Site Collection Flags (section 2.2.2.9) value describing the site collection.

SecurityVersion: A version number incremented when changes are made to the site collection's permissions.

CertificationDate: The date and time, in UTC format, when the site collection was last confirmed by its owner as being used.

DeadWebNotifyCount: The number of times that a notification was sent to the site collection owner that the site collection will be deleted if the owner does not certify it as being used. (See CertificationDate.)

PortalURL: The URL of an external website designated as the sites' portal. This is a Windows SharePoint Services implementation-specific navigation links feature.

PortalName: The name of the external website referenced in the PortalURL column. Used for display in the Windows SharePoint Services implementation-specific navigation feature.

LastContentChange: The date and time value, in UTC format, that the content of the site collection was last changed.

LastSecurityChange: The date and time value, in UTC format, when the permissions on the site collection were last changed.

AuditFlags: An Audit Flags (section 2.2.2.1) value specifying the operations to be audited that are set directly on the site collection.

InheritAuditFlags: An Audit Flags value specifying the operations to be audited on the specified object that are inherited.

UserInfoListId: The List Identifier (section 2.2.1.5) of a list holding user information for the site collection.

UserIsActiveFieldRowOrdinal: The ordinal of the column in the list identified by UserInfoList Id that tracks whether a user is an active user in the site collection.

UserIsActiveFieldColumnName: The name of the column in the list identified by UserInfoListId that tracks whether a user is an active user  in the site collection.

UserAccountDirectoryPath: A provider-specific user account path. The value is used for validation of added user accounts if the site collection flags bit 0x00080000 is set in the BitFlags column.

RootWebId: The Site Identifier (section 2.2.1.11) of the site configured as the root site in the site collection.

HashKey: A hash key associated with the site collection.

DomainGroupMapVersion: The version of the domain group map.

DomainGroupMapCacheVersion: The version of the domain group map cache.

DomainGroupMapCache: A binary serialization of the domain group map cache, containing a mapping of external groups to the site groups of which they are members.

HostHeader: When used in host header mode, this contains the Host Header string associated with the site collection's web application.

EmailEnabled: A bit indicating if the site collection has Windows SharePoint Services implementation-specific email integration features enabled. Set to 1 if enabled; otherwise, set to 0.

Sites Table相关推荐

  1. 【转】SharePoint Content Database简介

    SharePoint作为微软主打的企业Portal平台,功能强大,使用简单,非常的方便.对于很多关系数据,我们可以使用自定义列表来维护,如果是非关系数据,可以使用文档库来维护.另外还可以在上面进行版本 ...

  2. SharePoint 2016文档库所在数据库表的说明(文档库数据库)

    突然被客户问一个问题,说数据库存在哪一个表,这个原本是开发的事,竟然文档我了,好吧这里记录一下,以便记忆给客户汇报. SharePoint 数据库表说明: Features Table that ho ...

  3. Heap Allocation Profiles (heap=sites)

    Heap Allocation Profiles (heap=sites) 基于JDK-6,使用的类不同,展示的信息可能不同,内容一样的javac -J-agentlib:hprof=heap=sit ...

  4. layui table动态选中_NeurIPS 2020 | 伯克利新工作: 基于动态关系推理的多智能体轨迹预测问题...

    公众号:将门创投(thejiangmen)作者:加州大学伯克利分校在读博士生 李家琛卡内基梅隆大学在读硕士生 杨帆 NeurlPS 2020系列论文解读 第·1·期 本文将分享来自UC Berkele ...

  5. IDEA中根据数据库自动生成实体类,并自定义所生成的实体类中的注解 @Table @Id @...

    使用IDEA项目添加Hibernate扩展,生成实体类并配置实体类中的注解 一.使用Hibernate自动生成实体类 1.在项目上右键,选择Add Framework Support找到 Hibern ...

  6. 2021年大数据Flink(三十九):​​​​​​​Table与SQL ​​​​​​总结 Flink-SQL常用算子

    目录 总结 Flink-SQL常用算子 SELECT WHERE ​​​​​​​DISTINCT ​​​​​​​GROUP BY ​​​​​​​UNION 和 UNION ALL ​​​​​​​JOI ...

  7. 2021年大数据Flink(三十八):​​​​​​​Table与SQL ​​​​​​案例五 FlinkSQL整合Hive

    目录 案例五 FlinkSQL整合Hive 介绍 集成Hive的基本方式 准备工作 1.添加hadoop_classpath 2.下载jar并上传至flink/lib目录 3.修改hive配置 4.启 ...

  8. 2021年大数据Flink(三十七):​​​​​​​Table与SQL ​​​​​​案例四

    目录 案例四 需求 代码实现 案例四 需求 从Kafka中消费数据并过滤出状态为success的数据再写入到Kafka {"user_id": "1", &qu ...

  9. 2021年大数据Flink(三十六):​​​​​​​Table与SQL ​​​​​​案例三

    目录 案例三 需求 编码步骤 代码实现-方式1 代码实现-方式2 案例三 需求 使用Flink SQL来统计5秒内 每个用户的 订单总数.订单的最大金额.订单的最小金额 也就是每隔5秒统计最近5秒的每 ...

最新文章

  1. PHP Multipart/form-data remote dos Vulnerability
  2. 图像分割2020总结:结构,损失函数,数据集和框架
  3. 为什么只有很少的人听说过西工大这个名字?
  4. linux bash shell 常用快捷键
  5. C++ decltype类型指示符
  6. error RC2108: expected numerical dialog constant
  7. linux 下修改最大文件数
  8. SAP Spartacus HTTP请求url里的语言和货币参数是如何加上去的
  9. python简单实用案例_Python 21 Django 实用小案例1
  10. 打印pdf就一页_我就是死都不想在mac上装第三方pdf软件
  11. 什么样的两个矩阵相似_Lecture 27 | 相似矩阵
  12. ubuntu 配置 tftp 服务器
  13. 微信聊天机器人,不使用iChat,可以群聊
  14. leetcode加油站 Java
  15. java caller_java中callee获取caller
  16. ConceptDraw MINDMAP 12 Mac版思维导图软件有哪些有点?
  17. 后台面试常问问题博客总结
  18. 机器学习入门(浅谈L1和L2正则)
  19. 【题目】pyCharm 专业版 和 社区版的区别以及如何查看其版本
  20. 首都师范大学 计算机学院,首都师范大学信息工程学院

热门文章

  1. Django的各种初识
  2. 【BZOJ3677】[Apio2014]连珠线 换根DP
  3. Unity Scene为每一个游戏物体进行扩展编辑
  4. [Leedcode][JAVA][第22题括号生成][DFS][BFS][动态规划]
  5. python用cmd运行失败_解决python在cmd运行时导入包失败,出现错误信息 ModuleNotFoundError: No module named ***...
  6. c语言大数的加减运算,求用C编个大数加减法运算程序
  7. 一维抛物线的matlab求解,一维抛物线偏微分方程数值解法(附图及matlab程序)
  8. linux桌面旋转了180度,[多图]回顾每一款默认Ubuntu壁纸
  9. mysql 列换行 表设计 设计_今天来讲一下怎么利用MySql进行库表设计
  10. 服务器驱动精灵_驱动精灵真的可以帮你安装驱动吗?别再无脑装驱动了