Viewing 3 posts - 1 through 3 (of 3 total)
Hi everybody,
Some news......
I have an other index on the table prod_starts:
CREATE NONCLUSTERED INDEX [FK_prod_starts_fitgrp_id] ON [dbo].[prod_starts]
(
[fitgrp_id] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE...
June 26, 2013 at 2:17 am
John Mitchell-245523 (6/25/2013)
Lowell (6/25/2013)
isn't this three different scalar functions being used to...
June 26, 2013 at 2:11 am
Thanks,
Here's the description of the table:
CREATE TABLE [dbo].[prod_starts](
[id] [int] IDENTITY(1,1) NOT NULL,
[linea_id] [int] NOT NULL,
[tipo_art_id] [int] NOT NULL,
[cod_rel_id] [int] NOT NULL,
[fitgrp_id] [int] NOT NULL,
[year] [int] NULL,
[dtsamp] [datetime] NULL,
[dtlotto] [datetime] NULL,
[qmode]...
June 25, 2013 at 9:35 am
Viewing 3 posts - 1 through 3 (of 3 total)