sql server - Unable to set sort_in_tempdb -


  1. i using sql server 2014. while creating index setting sort_in_tempdb = on not set. per search doesn't have other config. can please me how debug this.

  2. we have index created on 4 columns. have use query uses 3 columns of index. performance create index 3 columns. fyi, both indexes partitioned using filename

code:

create nonclustered index [index_filename]  on table_1(columns)     (pad_index = off, statistics_norecompute = off, sort_in_tempdb = on,            drop_existing = on, online = off, allow_row_locks = on, allow_page_locks = on) on [filename_partitionscheme]([filename]) 

questions:

  1. is there possibility of optimization here in sql server 2014 since 3 fields common between both indexes.
  2. after creating 2 indexes, bulk copy talking lot of time.. can't disable indexing while loading because have producer , consumer modules separate..

is there way disable indexing on partition?

thanks help.

there no way know after fact. not property on index. analogy be: let's you're getting package delivered , have ability specify whether use bike courier or not. tell company use bike courier. package sitting on front step. how know used bike courier? answer is: don't. doesn't matter result accomplished (i.e. package delivered).


Comments

Popular posts from this blog

java - Plugin org.apache.maven.plugins:maven-install-plugin:2.4 or one of its dependencies could not be resolved -

Round ImageView Android -

How can I utilize Yahoo Weather API in android -