Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Indexes For Views

Former Member
0 Likes
843

Hi gurus,

Is it possible to assign indexes to views ? If yes, how ? I can create indexes for views through database management software, but in SAP, in SE11 i found nothing for this.

Thx,

5 REPLIES 5
Read only

Former Member
0 Likes
723

No. No tunnel to go through and work.

Edited by: Kumar Manas Mishra on Jan 20, 2010 4:26 PM

Read only

Former Member
0 Likes
723

An index cannot be defined on a view. Because view is

virtual table, which consists of a subset of columns from

one more tables.

The Restrictions imposed on views are as follows:

<< Cut and paste without attribution from http://www.allinterview.com/showanswers/10530.html removed >>

Thanks

Rahul

Edited by: Rob Burbank on Jan 20, 2010 10:42 AM

Read only

Former Member
0 Likes
723

So if i can not create index on views, how can i get performance from big tables ? It is not reasonable to use view instead of table. I can use indexes and get more performance instead of view using same table.

Read only

0 Likes
723

Using existing indexes effectively will give better performance than trying to use views.

Rob

Read only

Former Member
0 Likes
723

Solved,

Thx,