Buenas, me podrian confirmar si al crear un indice Primary Key se crea como Clustered? que ventajas me otorga a las consultas hacerlo clustered o no?
Necesito que me aclaren este tema.
Gracias, saludos
| |||
Primary Key Clustered? Buenas, me podrian confirmar si al crear un indice Primary Key se crea como Clustered? que ventajas me otorga a las consultas hacerlo clustered o no? Necesito que me aclaren este tema. Gracias, saludos |
| ||||
Respuesta: Primary Key Clustered? try with this, what is the matter with the search in English or you don't know how to made a search in spanish, if you try this you can find a lot of information about what is the difference between a cluster index and noncluster index like those following links: http://www.marten-online.com/databas...tructures.html http://stackoverflow.com/questions/5...lustered-index Regards, Libras
__________________ What does an execution plan say to t-sql query? Go f**k yourself, if you are not happy with me |
| ||||
Respuesta: Primary Key Clustered? A ver traducido al español: Tan dificil es hacer una busqueda del tipo diferencias entre cluster index y non cluster index sql server en el google y ver los resultados? por ejemplo esta liga: http://grimpidev.wordpress.com/2008/...en-sql-server/ saludos!
__________________ What does an execution plan say to t-sql query? Go f**k yourself, if you are not happy with me |
| ||||
Respuesta: Primary Key Clustered? Cita: Por defecto si, para que el índice de la primary key no sea clustered hay que indicarlo expresamente, por ejemplo:..me podrian confirmar si al crear un indice Primary Key se crea como Clustered?...
Código:
create table t1 (id int not null) go alter table t1 add constraint pk_id primary key nonclustered (id) go Cita: Este enlace comenta las consultas que se benefician del tipo de índice http://msdn.microsoft.com/es-es/libr...v=sql.90).aspx..que ventajas me otorga a las consultas hacerlo clustered o no? Saludos |
Etiquetas: |