...bringing you notes from the field...

Tag Cloud


How do I create an Index that is NOT the primary on my tables?

To create a index on a single column, do this:

CREATE INDEX  IDX_FERC ON FERC(FercName)

In some cases, you may have a need to combine columns to hasten known unique combinations. This is knonw as a composite key. An example:

CREATE INDEX IDX_OperatingCompanyFERC ON FERC(OpCompanyID,FercName)



  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati