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

How to create a Database Index?

Former Member
0 Likes
615

I am trying to create an index on Z table. But it gives error 'Index does not exist in database system ORACLE'. What is the solution to it?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
569

Hi Pratiksha,

You might have created index with the primary key. The index already exists in the database. So create the index with other key. Delete the index and create the index with other key.

Regards

kannaiah

3 REPLIES 3
Read only

Former Member
0 Likes
570

Hi Pratiksha,

You might have created index with the primary key. The index already exists in the database. So create the index with other key. Delete the index and create the index with other key.

Regards

kannaiah

Read only

Former Member
0 Likes
569

1. Goto SE11

  • don't forget to use the MANDT field as first field of any index for client-specific tables

2. Enter database table name fior which index needs to be created.

3. Press Change

4. Click on Idexes.

5. If no index is present, it will ask 'No index has been defined for table XXX, Do you want to create an index', click Yes.

6. Give unique index id.

7. Give short description.

8. Select Non-uniwue index type.

9. Define fields which will be used for indexing.

10. Save and activate.

Also refer

Read only

Former Member
0 Likes
569

May be, you have to activate the Index.

Try Transaction SE14.

Martin