To troubleshoot we would need to run SQL profiler. But here is some inforation re the same issue:
https://social.technet.microsoft.com/Forums/en-US/7e472c38-35ac-42cb-ad4a-a683eb0becac/response-group-usage-report-not-working?forum=lyncinterop
Search This Blog
Wednesday, April 22, 2015
Monday, April 13, 2015
O365 federation
http://blogs.technet.com/b/compilations/archive/2014/04/15/office-365-single-sign-on-with-adfs-roadmap-design-implementation-adfs-high-availability-amp-the-choice-of-configuration-database-type-for-redundancy-steps-amp-faqs.aspx#.VSuvTvmsVqU
https://sfspug.files.wordpress.com/2013/11/office-365-single-sign-on-with-adfs.pptx
http://blogs.technet.com/b/rmilne/archive/2014/04/28/how-to-install-adfs-2012-r2-for-office-365.aspx
https://www.youtube.com/watch?v=GHMaQjAS0qo
https://technet.microsoft.com/en-us/library/jj710171.aspx
https://sfspug.files.wordpress.com/2013/11/office-365-single-sign-on-with-adfs.pptx
http://blogs.technet.com/b/rmilne/archive/2014/04/28/how-to-install-adfs-2012-r2-for-office-365.aspx
https://www.youtube.com/watch?v=GHMaQjAS0qo
https://technet.microsoft.com/en-us/library/jj710171.aspx
Saturday, April 11, 2015
Looking for free HLB solution for Lync?
Here are some tools that I have tried and that are proven to work with Lync, Exchange and HTTP web:
http://www.zenloadbalancer.com
this guy you probably know - it is free KEMP (no cluster, 20 mbps limit)
http://freeloadbalancer.com
Heavy weight player from Open Source world:
http://www.haproxy.org
And something I have never tried, but it could be fun:
http://nginx.org/en/docs/http/load_balancing.html (Hello Igor!)
http://www.zenloadbalancer.com
this guy you probably know - it is free KEMP (no cluster, 20 mbps limit)
http://freeloadbalancer.com
Heavy weight player from Open Source world:
http://www.haproxy.org
And something I have never tried, but it could be fun:
http://nginx.org/en/docs/http/load_balancing.html (Hello Igor!)
GetItemById SharePoint list function optimisation
Hello, a little magic for tonight. If you use custom code around your SharePoint, and you wonder why your code is slow on large document libraries , check out this article:
https://msdn.microsoft.com/en-us/library/bb687949(v=office.12).aspx
Then search your code to see if you use GetItemById on items collection level. If you do you might accelerate your code 10x times by simply changing it to list level.
Example (red is not optimal code):
https://msdn.microsoft.com/en-us/library/bb687949(v=office.12).aspx
Then search your code to see if you use GetItemById on items collection level. If you do you might accelerate your code 10x times by simply changing it to list level.
Example (red is not optimal code):
SPList _spList = spWeb.Lists.GetList(document.MossDocLibGuid, false);
/// SPListItemCollection listItemCollection = _spList.Items;
/// SPListItem item = listItemCollection.GetItemById(document.MossDocId);
SPListItem item = _spList.GetItemById(document.MossDocId);
Subscribe to:
Posts (Atom)