Click here to Skip to main content
15,890,123 members
Home / Discussions / Database
   

Database

 
GeneralRe: need your help! Pin
meki_21187-Jun-08 8:19
meki_21187-Jun-08 8:19 
GeneralRe: need your help! Pin
Parwej Ahamad7-Jun-08 8:23
professionalParwej Ahamad7-Jun-08 8:23 
GeneralRe: need your help! Pin
meki_21187-Jun-08 8:28
meki_21187-Jun-08 8:28 
GeneralRe: need your help! Pin
Parwej Ahamad7-Jun-08 8:31
professionalParwej Ahamad7-Jun-08 8:31 
Questionindex with primary key Pin
kimo code7-Jun-08 1:37
kimo code7-Jun-08 1:37 
AnswerRe: index with primary key Pin
Alsvha7-Jun-08 4:55
Alsvha7-Jun-08 4:55 
GeneralRe: index with primary key [modified] Pin
kimo code7-Jun-08 21:05
kimo code7-Jun-08 21:05 
GeneralRe: index with primary key Pin
Alsvha7-Jun-08 21:29
Alsvha7-Jun-08 21:29 
Haven't had that happen in any version of SQL Server 2005 I've worked with.
I've never had problems with creating a custom clustered index in that way. Are you sure you made the Clustered index correct and not accidentally selected "non-clustered"?

What happens if you script the creation?
<br />
CREATE TABLE [YOUR_TABLE](<br />
             [YOUR_TABLE_DEFINITION]<br />
 CONSTRAINT [YOUR_INDEX_NAME] PRIMARY KEY NONCLUSTERED <br />
(<br />
	[PRIMARY_KEY_COLUMN] ASC<br />
)WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]<br />
) ON [PRIMARY]<br />


Do you get a non-clustered index now?


QuestionQuestion Pin
nithydurai6-Jun-08 19:50
nithydurai6-Jun-08 19:50 
AnswerRe: Question Pin
Marek Grzenkowicz6-Jun-08 23:08
Marek Grzenkowicz6-Jun-08 23:08 
QuestionImplementation of Distinct in MS SQL2000/2005 Pin
A Wong6-Jun-08 9:20
A Wong6-Jun-08 9:20 
AnswerRe: Implementation of Distinct in MS SQL2000/2005 Pin
Alsvha6-Jun-08 20:42
Alsvha6-Jun-08 20:42 
QuestionRowID Pin
trilokharry6-Jun-08 5:53
trilokharry6-Jun-08 5:53 
AnswerRe: RowID Pin
Ashfield6-Jun-08 6:03
Ashfield6-Jun-08 6:03 
QuestionNoOfDays from 2 given datetime Pin
trilokharry6-Jun-08 5:09
trilokharry6-Jun-08 5:09 
AnswerRe: NoOfDays from 2 given datetime Pin
Ashfield6-Jun-08 5:16
Ashfield6-Jun-08 5:16 
Questionquery in sql server 2005 Pin
trilokharry6-Jun-08 3:20
trilokharry6-Jun-08 3:20 
AnswerRe: query in sql server 2005 Pin
Ashfield6-Jun-08 3:41
Ashfield6-Jun-08 3:41 
GeneralRe: query in sql server 2005 Pin
trilokharry6-Jun-08 4:49
trilokharry6-Jun-08 4:49 
Questioncreating function Pin
meghamaharshi6-Jun-08 2:08
meghamaharshi6-Jun-08 2:08 
AnswerRe: creating function Pin
Ashfield6-Jun-08 2:24
Ashfield6-Jun-08 2:24 
GeneralRe: creating function Pin
meghamaharshi6-Jun-08 2:34
meghamaharshi6-Jun-08 2:34 
GeneralRe: creating function Pin
Ashfield6-Jun-08 3:02
Ashfield6-Jun-08 3:02 
GeneralRe: creating function Pin
meghamaharshi6-Jun-08 3:07
meghamaharshi6-Jun-08 3:07 
GeneralRe: creating function Pin
Ashfield6-Jun-08 3:39
Ashfield6-Jun-08 3:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.