﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>SQLServerCentral / Administering / SQL Server 2005  / indexes (non-unique,clustered) / Latest Posts</title><generator>InstantForum.NET v2.9.0</generator><description>SQLServerCentral</description><link>http://www.sqlservercentral.com/Forums/</link><webMaster>notifications@sqlservercentral.com</webMaster><lastBuildDate>Wed, 19 Jun 2013 22:46:52 GMT</lastBuildDate><ttl>20</ttl><item><title>RE: indexes (non-unique,clustered)</title><link>http://www.sqlservercentral.com/Forums/Topic986853-146-1.aspx</link><description>I am not disputing that. I agree that people have to learn the trade and pointing them to that is great. I was mearly stating that most developers will post a question when really stuck, and wording I found is mostly the problem. The forums is absolutely fantastic, I was just reading that and I thought wow, if you look at the other two posts it was actually to a link and the other some sort of useful syntax layout. Anyways don't wanna get tied up in this, was more a personal comment than anything else.</description><pubDate>Fri, 06 Jul 2012 03:06:26 GMT</pubDate><dc:creator>jaco-1011483</dc:creator></item><item><title>RE: indexes (non-unique,clustered)</title><link>http://www.sqlservercentral.com/Forums/Topic986853-146-1.aspx</link><description>You wont be able to create a clustered index on them two columns as your primary key is already clustered.You would first need to drop your primary key and re-create it as a nonclustered primary key which will then allow you to create a clustered index on the other two fields.@Jaco-1011483While I totally appreciate your comments, but how is us giving the OP the solution helping the OP learn the trade?If the OP had come and said,[i]Hi I have read such and such a page in BOL but I cant seem to figure it out please could you help me with X Y Z[/i]Then the OP might of got a different responce, there are plenty of good articles on this site and by using a search engine of your choice, all we ask is that you help us to help you, we will point you to BOL for the basics like this as its better to do it yourself than for us to give you a solution which you maynot understand, in which case how does that help the OP or us.</description><pubDate>Fri, 06 Jul 2012 02:57:18 GMT</pubDate><dc:creator>anthony.green</dc:creator></item><item><title>RE: indexes (non-unique,clustered)</title><link>http://www.sqlservercentral.com/Forums/Topic986853-146-1.aspx</link><description>I find this absolutely amazing that people will tell you on a forum, that you should read the online books, I fully agree that peeps should put little effort in in solving their issues but if they went throught the trouble of posting a question here:a. try answer it, b. link it to an answer that helped you, but dont give comment as to read the books. PLEASE.</description><pubDate>Fri, 06 Jul 2012 02:14:36 GMT</pubDate><dc:creator>jaco-1011483</dc:creator></item><item><title>RE: indexes (non-unique,clustered)</title><link>http://www.sqlservercentral.com/Forums/Topic986853-146-1.aspx</link><description>Please try this. This is just a basic definitionUse &amp;lt;Db_name&amp;gt;GoCREATE CLUSTERED INDEX CIX_Job_Id_Property_idON [dbo].[Valuation_Common]( job_id, property_id);GO              Thank You,Best Regards,SQLBuddy</description><pubDate>Thu, 16 Sep 2010 10:51:04 GMT</pubDate><dc:creator>sqlbuddy123</dc:creator></item><item><title>RE: indexes (non-unique,clustered)</title><link>http://www.sqlservercentral.com/Forums/Topic986853-146-1.aspx</link><description>I think that [url=http://www.lmgtfy.com/?q=create+index][u]this link[/u][/url] will tell you pretty much everything you need to know to create indexes.</description><pubDate>Wed, 15 Sep 2010 23:40:09 GMT</pubDate><dc:creator>WayneS</dc:creator></item><item><title>RE: indexes (non-unique,clustered)</title><link>http://www.sqlservercentral.com/Forums/Topic986853-146-1.aspx</link><description>I recommend you do a little reading in Books On Line, or Google this as there are a lot of examples on how to do this.CheersLeo</description><pubDate>Wed, 15 Sep 2010 20:33:21 GMT</pubDate><dc:creator>Leo.Miller</dc:creator></item><item><title>indexes (non-unique,clustered)</title><link>http://www.sqlservercentral.com/Forums/Topic986853-146-1.aspx</link><description>Hi I have a Table (Below) where i need to create indexes (non-unique,clustered) on columns job_id,property_id can some one help me in doing so ,Thanks in advance :)CREATE TABLE [dbo].[Valuation_Common](	[Valuation_common_id] [int] NOT NULL,	[job_id] [int] NOT NULL,	[property_id] [varchar](20) NULL,	[external_value_id] [int] NULL,	[internal_value_id] [int] NULL,	[external_value_date] [datetime] NULL,	[external_value_quick_sale] [money] NULL,	[external_value_normal] [money] NULL,	[external_value_repaired] [money] NULL,	[estimated_repair_amount] [money] NULL,	[mkt_time] [int] NULL,	[order_date] [datetime] NULL,	[order_uid] [varchar](20) NULL,	[due_date] [datetime] NULL,	[receive_date] [datetime] NULL,	[fee] [money] NULL,	[property_condition] [int] NULL,	[footage] [int] NULL,	[age] [int] NULL,	[valuation_type] [varchar](5) NULL,	[Stated_Val] [money] NULL,	[ext_val_delay_code] [varchar](5) NULL,	[external_prop_class] [varchar](2) NULL,PRIMARY KEY CLUSTERED (	[Valuation_common_id] ASC)WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]) ON [PRIMARY]</description><pubDate>Wed, 15 Sep 2010 20:12:18 GMT</pubDate><dc:creator>RamSteve</dc:creator></item></channel></rss>