Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.databases.ms-sqlserver > #2261

Re: No covering indices for table types?

Path csiph.com!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From Anton Shepelev <anton.txt@g{oogle}mail.com>
Newsgroups comp.databases.ms-sqlserver
Subject Re: No covering indices for table types?
Date Mon, 15 Jul 2024 14:27:08 +0300
Organization A noiseless patient Spider
Lines 33
Message-ID <20240715142708.72511985f0c9753807aa6357@g{oogle}mail.com> (permalink)
References <20240712151501.d23ddf433e73ae41365603cf@g{oogle}mail.com> <XnsB1ADF2304F6C3Yazorman@127.0.0.1>
MIME-Version 1.0
Content-Type text/plain; charset=US-ASCII
Content-Transfer-Encoding 7bit
Injection-Date Mon, 15 Jul 2024 13:27:09 +0200 (CEST)
Injection-Info dont-email.me; posting-host="cf6f8ba64e6c33b5356845784b561a46"; logging-data="723524"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/mKVIWkv1FV+3T9SvG9mx4uYM57sEu9Aw="
Cancel-Lock sha1:ZAfpu+swizjTWDNkkm+UmHREfF0=
X-Newsreader Sylpheed 3.7.0 (GTK+ 2.24.30; i686-pc-mingw32)
Xref csiph.com comp.databases.ms-sqlserver:2261

Show key headers only | View raw


Erland Sommarskog to Anton Shepelev:

> > For efficient querying and joining, I need a covering
> > index on the [moment] field that includes [value], but
> > the INCLUDE keyword does not seem to be suported:
>
> Starting with SQL 2019, it is:
>
> CREATE TYPE series_t AS TABLE
>   (  moment DATETIME NOT NULL,
>      value  FLOAT,
>      INDEX Main(moment)
>      INCLUDE (value)
>   )

Glad to know MSSQL is improving, although I am using an
older version.

> If you are an older version, I would suggest adding value
> as an index key is the best in most situations.

Indeed.  That's that I did.

> I will submit an edit to the CREATE TYPE topic.

Thank you.  I myself have fixed a few of their documentation
articles about .NET, including those describing the
connection-string syntax.  How strange that Microsoft has
decidied to let the community wrote their documentation...

-- 
()  ascii ribbon campaign -- against html e-mail
/\  www.asciiribbon.org   -- against proprietary attachments

Back to comp.databases.ms-sqlserver | Previous | NextPrevious in thread | Find similar


Thread

No covering indices for table types? Anton Shepelev <anton.txt@g{oogle}mail.com> - 2024-07-12 15:15 +0300
  Re: No covering indices for table types? Erland Sommarskog <esquel@sommarskog.se> - 2024-07-12 23:48 +0200
    Re: No covering indices for table types? Anton Shepelev <anton.txt@g{oogle}mail.com> - 2024-07-15 14:27 +0300

csiph-web