SharePoint Survey list when more tha 5000 response -


i had created survey in sharepoint 2010 standard, got response around 7k users.

the problem is, not able show result in normal user view hit 5k limit. try index survey list, not possible don't see option in survey list.

i tried create new custom view, column not can group information.

thus, there anyway can show result? of now, admin can read result.

thanks

assuming on premises sharepoint installation, (or server administrator) can use powershell temporarily disable throttling on list long enough export results excel. once that's done, can keep results in excel or can re-import items normal sharepoint list column indexing circumvent threshold.

  1. log in 1 of web servers in farm.

  2. start "sharepoint 2010 management shell" (or else start powershell console , load sharepoint management snap-ins)

enter following lines:

$web = get-spweb http://server.domain/site/web $list = $web.lists["list title"] $list.enablethrottling = $false $web.dispose() 

after you've exported list excel, you'll want turn throttling on:

$web = get-spweb http://server.domain/site/web $list = $web.lists["list title"] $list.enablethrottling = $true $web.dispose() 

remember replace http://server.domain/site/web path site on list resides, , replace list title actual name of list.


Comments

Popular posts from this blog

javascript - Using jquery append to add option values into a select element not working -

Android soft keyboard reverts to default keyboard on orientation change -

jquery - javascript onscroll fade same class but with different div -