Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
blackX
Posting Yak Master
102 Posts |
Posted - 2008-06-12 : 15:27:39
|
I need to create two non clustered indexes on my ListCalls2 table. The problem is there is already about 75000 rows in the table. Below is the script for the tableUSE [Premier]GO/****** Object: Table [dbo].[ListCalls2] Script Date: 06/12/2008 15:26:59 ******/SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGOCREATE TABLE [dbo].[ListCalls2]( [ListCallID] [int] IDENTITY(1,1) NOT NULL, [ListID] [int] NOT NULL, [Member_Id] [int] NOT NULL, [CallLast] [datetime] NULL, [CallTimes] [int] NOT NULL, [CallTimesStart] [datetime] NULL, [Inactive] [bit] NOT NULL) ON [PRIMARY]any help would be greateThanks in advance |
|
blackX
Posting Yak Master
102 Posts |
Posted - 2008-06-12 : 15:53:52
|
sorry, i need the indexes on the Member_id and ListID |
 |
|
tosscrosby
Aged Yak Warrior
676 Posts |
|
|
|
|
|
|