Index View Index Creation Failing

Posted by aBetterGamer on Stack Overflow See other posts from Stack Overflow or by aBetterGamer
Published on 2010-06-09T20:51:10Z Indexed on 2010/06/09 21:02 UTC
Read the original article Hit count: 162

Filed under:
|

I'm trying to create an index on a view and it keeps failing, I'm pretty sure its b/c I'm using an alias for the column. Not sure how or if I can do it this way. Below is a simplified scenario.

CREATE VIEW v_contracts WITH SCHEMABINDING
AS
SELECT 
    t1.contractid as 'Contract.ContractID'
    t2.name as 'Customer.Name'
    FROM contract t1
    JOIN customer t2
    ON t1.contractid = t2.contractid
GO

CREATE UNIQUE CLUSTERED INDEX v_contracts_idx ON v_contracts(t1.contractid)
GO
---------------------------
Incorrect syntax near '.'.

CREATE UNIQUE CLUSTERED INDEX v_contracts_idx ON v_contracts(contractid)
GO
---------------------------
Column name 'contractid' does not exist in the target table or view.

CREATE UNIQUE CLUSTERED INDEX v_contracts_idx ON v_contracts(Contract.ContractID)
GO
---------------------------
Incorrect syntax near '.'.

Anyone know how to create an indexed view using aliased columns please let me know.

© Stack Overflow or respective owner

Related posts about sql-server-2005

Related posts about view