sql server 2008 - Index creation memory using SSMS 2008r2 -


how can change index creation memory using ssms 2008r2?

what best practice index creation memory?

the best practice not change "index create memory (kb)" setting default value of 0, because default, sql server 2008 dynamically manages amount of memory allocated index creation operations.

if additional memory needed creating indexes, , memory available based on server memory configuration settings, server allocate additional memory index creation operations. if additional memory needed not available, index creation use memory allocated perform index creation. however, if experience difficulties creating indexes, in case there high degree of parallelism (lots of simultaneous index creation operations), might consider increasing value of option.

to use specific index creation memory allocation, complete following steps:

  1. open ssms. in server properties dialog box, go memory page , set value in index creation memory box. note value set in kilobytes.

  2. click ok save changes

note amount of memory allocated index creation operations should @ least large minimum memory per query. if not, sql server use amount of memory specified minimum memory per query , display warning this.


Comments

Popular posts from this blog

Change php variable from jquery value using ajax (same page) -

Pull out data related to my apps from Android Play Store and iOS App Store -

How can I fetch data from a web server in an android application? -