Can we create clustered index on non primary key column
Answer Posted / ashok
we can creta clustered index on non primary column.
create table abc(eid int,ename varchar(50))
create clustered index abc_clustered on abc (eid)
| Is This Answer Correct ? | 67 Yes | 9 No |
Post New Answer View All Answers
Why we should not use triggers?
What is query cost in sql server?
what is database replicaion? : Sql server database administration
Explain about the command-line tool SQLCMD?
What are the disadvantages of merge replication?
How many clustered indexes can be created on a table? I create a separate index on each column of a table. what are the advantages and disadvantages of this approach?
Mention the differences between having and where clause.
What options are available to audit login activity? : sql server security
What is the order by used for?
What do you mean by a Composite primary key?
What is user-defined multi-statement table-valued function?
What is similarity and difference between truncate and delete in sql?
If you want to send some data from access database to sql server database. What are different component of ssis will you use?
Can we return Data from 4(more than 1) tables in stored procedure?
How can we check the sql server version?