Viewing 15 posts - 76 through 90 (of 301 total)
I would like to recall this post. I was running under wrong database.
July 12, 2016 at 12:32 pm
Grant Fritchey (7/8/2016)
So the majority of your queries, or the most frequently called queries use all these columns when filtering:
[Col1] ASC,
[Col2] ASC,
[Col3] ASC,
[Col4] ASC
Majority of the queries use all these...
July 8, 2016 at 8:45 am
Table/columns are renamed due to security reasons.
July 8, 2016 at 8:37 am
Please see the table structure:
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[Test](
[Id] [int] IDENTITY(1,1) NOT NULL,
[Col1] [varchar](256) NOT NULL,
[Col2] [varchar](256) NOT NULL,
[Col3] [varchar](256) NOT NULL,
[Col4] [int] NOT NULL,
[ColumnValue] [varchar](max)...
July 8, 2016 at 8:25 am
Any downside if the clustered key(non-primary key columns) is not unique and the columns are VARCHAR fields and NOT NULL?
Or is it better to create Primary key (identity key)...
July 8, 2016 at 7:00 am
Phil Parkin (7/8/2016)
Grant Fritchey (7/8/2016)
Since the clustered index defines data storage, I recommend that the cluster be the most commonly used path to the storage. If...
July 8, 2016 at 5:51 am
Does the clustered key column(s) has to be NOT NULL/UNIQUE as best practice?
July 8, 2016 at 5:47 am
Thanks, I will post the table info/spreadsheet.
May 15, 2016 at 9:23 am
Auto close is set to off.
May 7, 2016 at 8:35 am
curtkrueger (5/4/2016)
For example, our domain is xyz but on the...
May 4, 2016 at 9:54 am
Viewing 15 posts - 76 through 90 (of 301 total)