May 21, 2013 at 11:50 am
Is there any difference if I say Create index and create nonclustred index? or both means same?
ex:
CREATE INDEX IX_ProductVendor_VendorID
ON Purchasing.ProductVendor (VendorID);
GO
CREATE NONCLUSTERED INDEX IX_ProductVendor_VendorID
ON Purchasing.ProductVendor (VendorID);
GO
May 21, 2013 at 11:56 am
they are both the same, the keyword NONCLUSTERED is optional and is the default value when you create a new index.
Lowell
May 21, 2013 at 9:41 pm
Thanks a lot!
Viewing 3 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply
This website stores cookies on your computer.
These cookies are used to improve your website experience and provide more personalized services to you, both on this website and through other media.
To find out more about the cookies we use, see our Privacy Policy