zoukankan      html  css  js  c++  java
  • SharePoint Access Service-PowerShell

    1. 配置应用程序Log文件大小

    Set-SPAccessServiceApplication –Identity "Access Services"
    –ApplicationLogSize 5

    2. 配置缓存超时时间

    Set-SPAccessServiceApplication –Identity "Access Services"
    –CacheTimeout 600

    3. 设置查询中的最大栏数

    Set-SPAccessServiceApplication –Identity "Access Services"
    –ColumnsMax 20

    4. 设置查询中的最大计算栏数

    Set-SPAccessServiceApplication –Identity "Access Services"
    –OutputCalculatedColumnsMax 5

    5. 设置子句中Order By的最大数

    Set-SPAccessServiceApplication –Identity "Access Services"
    –OrderByMax 2

    6. 配置查询中的最大行数

    Set-SPAccessServiceApplication –Identity "Access Services"
    –RowsMax 10

    7. 配置Access表中的最大记录数

    Set-SPAccessServiceApplication –Identity "Access Services"
    –RecordsInTableMax 100

    8. 配置查询中的最大源数

    Set-SPAccessServiceApplication –Identity "Access Services"
    –SourcesMax 8

    9. 配置是否启用外连接

    Set-SPAccessServiceApplication –Identity "Access Services"
    –OuterJoinsAllowed:$false
    

    10. 允许或限制非远程查询

    Set-SPAccessServiceApplication –Identity "Access Services"
    –NonRemotableQueriesAllowed:$true
    
    

    11. 限制Access Service内存利用率

    Set-SPAccessServiceApplication –Identity "Access Services"
    –PrivateBytesMax 1024

    12. 限制会话内存利用率

    Set-SPAccessServiceApplication –Identity "Access Services"
    –SessionMemoryMax 50

    13. 配置用户会话

    Set-SPAccessServiceApplication –Identity "Access Services"
    –SessionsPerUserMax 5 –SessionsPerAnonymousUserMax 5

    14. 限制模板大小

    Set-SPAccessServiceApplication –Identity "Access Services"
    –TemplateSizeMax 20
    
  • 相关阅读:
    产生多种anchor的代码讲解!很好!
    一个报错
    将自己的数据制作成voc格式
    Python list 增加/插入元素的说明
    SAP 物料主数据屏幕增强 .
    软件測试必读书籍
    20160309,微软3月8日公布13个安全补丁
    UVA
    LLVM每日谈之十九 LLVM的第一本系统的书<Getting Started with LLVM Core Libraries>
    计算程序执行的时间
  • 原文地址:https://www.cnblogs.com/justinliu/p/5961709.html
Copyright © 2011-2022 走看看