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
SharePoint Access Service-PowerShell的更多相关文章
- SharePoint excel service web part 连接到 filter web part
		本文讲述SharePoint excel service web part 连接到 filter web part的一个简单应用场景. SharePoint excel service web par ... 
- SharePoint Web service and template
		SharePoint Web service对应的映射列表 WSS Web Services Web Reference Administration Service http://<s ... 
- Azure AD, Endpoint Manger(Intune), SharePoint  access token 的获取
		本章全是干货,干货,干货,重要的事情说三遍. 最近在研究Azure, Cloud相关的东西,项目中用的是Graph API(这个在下一章会相信介绍),可能是Graph API推出的时间比较晚,部分AP ... 
- SharePoint 2013 使用PowerShell创建State Service
		今天,搞SPD配置的sp2010wf迁移到sp2013环境上去,发布解决方案都很正常,给列表添加wf的时候报错“该表单无法显示,可能是由于 Microsoft SharePoint Server St ... 
- SharePoint 2013 Service 状态无法启动,显示“启动中(Starting)”
		Problem 在SharePoint 2013 Central Administration中启动 SharePoint Service(也称为:Service Machine Instance)时 ... 
- SharePoint 2013 使用 PowerShell 更新用户
		在SharePoint开发中,经常会遇到网站部署,然而,当我们从开发环境,部署到正式环境以后,尤其是备份还原,所有用户组的用户,还依然是开发环境的,这时,我们就需要用PowerShell更新一下: P ... 
- How to Get SharePoint Client Context in SharePoint Apps (Provider Hosted / SharePoint Access ) in CSOM (Client Side Object Model)
		http://www.codeproject.com/Articles/581060/HowplustoplusGetplusSharePointplusClientplusContex Downlo ... 
- Office 2010 & SharePoint 2010 Service Pack 2现在可用啦
		Access 2010 Runtime SP2 KB2687444 32-bit 64-bit Duet Enterprise for Microsoft SharePoint and SAP SP2 ... 
- sharepoint 2013 使用powershell更改站点集配额和锁定
		打开sharepoint powershell 2013,使用管理员方式打开 逐行输入下面命令: $Admin = new-object Microsoft.SharePoint.Administr ... 
随机推荐
- Linux Mysql 权限相关信息 来源于网络
			查看用户权限 show grants for 你的用户 比如: show grants for root@’localhost’; mysql> use mysql; Database chan ... 
- NM常用网络命令
			Ipconfig命令 Ipconfig命令可以被用来显示机器当前TCP/IP配置信息. 当使用Ipconfig时不带不论什么參数选项,那么它为每一个已经配置好的接口显示IP地址.子网掩码和默认网关值. ... 
- c#  播放器 支持所有格式
			原文:c# 播放器 支持所有格式 ---恢复内容开始--- 直接上代码 internal static class LibVlcAPI { internal struct PointerToArray ... 
- JQUERY简写案例
			源代码: <script ttype="text/javascript"> $(function(){ $(".btn").eq(0).click( ... 
- List environment variables from Command Prompt
			Request: List the environment variables from Command Promt To list one varibales , the syntax is lik ... 
- javascript面向对象2
			原文:javascript面向对象2 首先我们先创建一个对象 var user = Object(); user.name = "张三"; user.age = 20; user. ... 
- 题目要求:建立一个类Str,将一个正整数转换成相应的字符串,例如整数3456转换为字符串"3456".
			题目要求:建立一个类Str,将一个正整数转换成相应的字符串,例如整数3456转换为字符串"3456". 关键:怎么将一个数字转换为字符? [cpp] view plaincopy ... 
- messageBox以及新窗体的使用
			DialogResult dr = MessageBox.Show("你确定要点击吗", "安全提示", MessageBoxButtons.YesNo); ... 
- [转]iOS hacking resource collection
			Link:http://www.securitylearn.net/tag/apple-ios-hacking-slides/ A collection of iOS research present ... 
- C#做的颜色工具
			常常会用到绘制以及配色,每次看到 framework 里边的 KnowColor.xxx 我就一阵......到底啥颜色啊,干脆做一个一劳永逸的工具吧.功能包含: 可以实现枚举所有系统颜色 圆形.矩形 ... 
