I got this select statement using multiple table.how can i create this indexing on sql server 2008 r2 Database? Onyone plase help me??

SELECT A.FUSERID, A.FNAME, B.FORGNAME, C.FAREA
FROM TBL_USERPROFILE A 
INNER JOIN V_ORGANISATION B ON A.FORG = B.FORGID 
INNER JOIN V_USER_AOE C ON A.FUSERID = C.FUSERID 
INNER JOIN aspnet_UsersInRoles D ON C.FUSERID = D.UserId 
INNER JOIN aspnet_Roles E ON D.RoleId = E.RoleId
WHERE E.RoleName = 'applicant'
link|improve this question
1  
Can you rephrase your question? It's unclear what you're trying to achieve here. – Joe Stefanelli Jul 21 '11 at 2:43
helmi: have you heard of the DTA? (Database Tuning Advisor) – Mitch Wheat Jul 21 '11 at 2:47
1  
why is this tagged mysql? – Thilo Jul 21 '11 at 2:50
Or oracle, or .net? – DCookie Jul 21 '11 at 3:07
i am new for this database thinks. Someone told me.create index is depend on select statement.So what i want to create here is CREATE INDEX for SELECT STATEMENT INVOLVED WITH MULTIPLE TABLE JUST LIKE THE EXAMPLE SELECT STATEMENT GIVEN ABOVE – helmi Jul 21 '11 at 3:39
feedback

closed as not a real question by Mitch Wheat, DCookie, Aaron Bertrand, Joe, Graviton Jul 21 '11 at 4:20

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

I am not familiar with SQLServer, but I don't think it supports join indexes that span multiple tables.

If you have separate indexes on the relevant columns for the various tables, that should work well enough.

link|improve this answer
what u mean by separate. it that create index for one bye one on each table?? @Thilo – helmi Jul 21 '11 at 4:19
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.