Skip to content

Tag: indexing

Email address lookup in SQL Server

We have a large subscriber database and have a lookup based on email address of type nvarchar(100). It sometimes times out probably because of a large scan of it. I want to improve this, but weary of some of the options. Would an index on it be ok, I can handle the additional storage if needed, or a computed …

What is an on-disk structure?

An index is an on-disk structure. I couldn’t find anything understandable. For example, I found this Is it like a file system? Answer It just means that the index is physically stored on disk, as opposed to “only exists in-memory”. Your link is not related at all.