sql server - What does "materializing" temporary table mean? -
i have noticed quite few mentions of word "materializing" when people talking using temporary tables in sql server. can expand on means? trying better understanding of means in terms of using temp tables?
thanks!
s
the term "materializing" used in context of view. when create clustered index on view, materialize view; means view's data stored table on disk, , updated automatically when tables participate in view updated.
if view not materialized, sql server must compute data in view performing joins in view definition every time query performed (though results may cached, or what-have-you).
Comments
Post a Comment