Error in renaming indexes (clarification needed)

Dear All,
I am working on core banking application.
Whe we try to do BOD(begining of day) for the system i.e. taking the system to next business date get the error "Error in renaming indexes on ETD".
ETD is a table name. And this error occurs only on 8th and 14th of every month not on any other date.For basic information while doing BOD system recreate the indexes on daily basis. But , we get this error only on particular date 8th and 14th of every month. Is there any clue , so that we can check the privilege level things on particular date and compare it with other dates..?

Hi All,
Thanks! I will confirm with my vendor regarding this that why there is a need to recreate the indexes on daily basis.
But I want know same application is doiing same job ver well on another days except the 8th and 14th of every month.
Is there any query so that I can check the privileges assign to user for recreating the indexes on general days (when there is no problem for recreting the indexes)
AND then same query we will execute on 8th day of the month.
Lastly i will compare my script is changing the privilige or not...
ETD is a table name of application (for transaction details..).
And we are using Oracle9i Enterprise Edition Release 9.2.0.5.0 - 64bit Production.
Thanks All
James.

Similar Messages

  • Error while renaming indexes and keys in the tables

    hi gems...good afternoon..
    i am using oracle 11gr2 database.
    when i am trying to rename the primary key, foreign key, indexes of all the tables as per the standard, then the following error is given...
    ORA-00604: error occurred at recursive SQL level 1
    ORA-01000: maximum open cursors exceeded
    ORA-00604: error occurred at recursive SQL level 1
    ORA-01000: maximum open cursors exceeded
    ORA-01000: maximum open cursors exceeded
    currently the maximum open cursors parameter is set to 300.
    please help..thanks in advance

    thanks a lot for your help..
    there are total 162 records in the v$open_cursor for that user.
    among that the open cursor is only 4 and open-recursive cursor is only 6 for that user.
    in my session i am executing only the renaming of the constraints and nothing more.
    When i have queried the v$open_cursor for cursor_type='OPEN' for all the users, then i got that it has exceeded the value of open_cursors parameter.
    So how can i resolve that....

  • Error At Essbase Startup: Fatal Error: Invalid item index in security file

    Hi
    I'm newbie in ESSbase
    A Essbase startup, i got this message: Fatal Error: Invalid item index in security file
    I do a copy a the Essabse.bak to Essbase.sec and get the same message.
    Need some help : it's a Production Application
    Thanks in advance

    Please try to restart Essbase once do rename Essbase.bak to Essbase.sec and check now

  • Regarding Renaming INDEX Partitions

    Hi All,
    I have the following syntax for renaming table partitions/subpartitions :
    ALTER TABLE SMTP_MSG_TRAFFIC_FCT RENAME PARTITION FOR (20100310) TO BASE_FACT_20100310;
    ALTER TABLE SMTP_MSG_TRAFFIC_FCT RENAME SUBPARTITION FOR (20100310,19) TO BASE_FACT_20100310_MAILBOX;
    I want to do the same thing for renaming the index partitions/subpartitions :
    ALTER INDEX SMTP_MSG_TF_FX02_ARR_TM_DIM_ID RENAME PARTITION FOR (20100310) TO BASE_FACT_20100310;
    ALTER TABLE SMTP_MSG_TF_FX02_ARR_TM_DIM_ID RENAME SUBPARTITION FOR (20100310,19) TO BASE_FACT_20100310_MAILBOX;
    But I get the following error:
    SQL> ALTER INDEX SMTP_MSG_TF_FX02_ARR_TM_DIM_ID RENAME PARTITION FOR (20100310) TO BASE_FACT_20100310;
    ALTER INDEX SMTP_MSG_TF_FX02_ARR_TM_DIM_ID RENAME PARTITION FOR (20100310) TO BASE_FACT_20100310
    ERROR at line 1:
    ORA-14006: invalid partition name
    Is it possible to rename the partition in this way? Or can I set any parameter that will ensure that when the base table partition name changes, it will also change the index partition name?
    Thanks & Regards,
    Aniket

    yes its possible:
    SQL>ALTER INDEX index_name RENAME PARTITION index_partiton_name TO new_index_partition;
    You are getting error because :
    a partition name is expected but not present as you typed,
    enter an appropriate partition name, will solve the problem.
    Edited by: adnanKaysar on Mar 18, 2010 12:32 PM

  • HT1338 I have clicked in the App Store icon and when I have attempted to download there is an error message. Saying I need to connect to the UK store, not the US store, how do I do this?

    I have clicked in the App Store icon and when I have attempted to download there is an error message. Saying I need to connect to the UK store, not the US store, how do I do this?

    Switching an iTunes Store account to a different country
    http://www.ilounge.com/index.php/articles/comments/switching-an-itunes-store-acc ount-to-a-different-country/
     Cheers, Tom

  • Oracle Error when creating indexes

    Help!! I'm getting an error on a spatial create. I read the documents here on this error and I've tried every suggestion.
    1. Plenty of free space in the tablespace indx
    2. Plenty of free space in the temp tablespace
    Does anyone have any ideas??
    Thanx in Advance..
    Frank
    SQL> CREATE INDEX iseechart_geometry_idx ON iseechart (isee_geometry)
    2 INDEXTYPE IS MDSYS.SPATIAL_INDEX
    3 PARAMETERS('TABLESPACE=INDX SDO_INDX_DIM=2');
    CREATE INDEX iseechart_geometry_idx ON iseechart (isee_geometry)
    ERROR at line 1:
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-13249: internal error in Spatial index: [mdidxrbd]
    ORA-13249: Error in Spatial index: index build failed
    ORA-13236: internal error in R-tree processing: [failed to cluster in memory]
    ORA-13249: Internal error in Spatial index: [mdrcrclmem]
    ORA-06512: at "MDSYS.SDO_INDEX_METHOD_9I", line 7
    ORA-06512: at line 1

    Hi Frank,
    When you specified "sdo_indx_dim" instead of "sdo_indx_dims",
    the parser is ignoring the parameter. Since the default
    is 2, it still works fine.
    Regarding sdo_rtr_override:
    Glad that the workaround helped. This is a non-documented parameter
    for R-tree that gives a workaround for any possible bugs that
    are introduced as part of new features in new releases. Given
    the nature of spatial, there could be some data-specific bugs. In 9.2,
    there are some new clustering improvements (internal) and guessing
    from the error stack the new one is running out of some stack space
    internally due to data outliers (does not occur in all datasets though).
    The sdo_rtr_override=0 defaults the behavior of the current operation
    (create-index or query) to prior releases (like 9.1). This parameter
    allows the users to work uninterrupted while things improve in new
    releases. The behavior of this parameter should not be used to compare
    performance etc. in different versions though and should be used only
    as a workaround. (It is not documented due to these implications
    and only recommended when needed by spatial).
    Spatial will definitely try to improve on the error messages.
    Please file a bug with some sample data or send Oracle
    the data at the earliest so that this can be fixed properly.
    - Ravi.

  • Error parsing document index: invalid character in attribute value

    Hi,
    I am working on an eBook with iBook Author. Once in a while, after I finish working, and want to reopen my eBook a few hours or days after I get the error:
    'title' could not be opened
    Error parsing document index: invalid character in attribute value
    I have to go back to an old backup I always do before quitting.
    What is the reason of this error message and anyw ay to fix/repair it on a version I just saved?
    Thanks,
    JP.

    Hello,
    I have the same error, but for me the above solution did not work.
    Did I understand correctly? This is what I did:
    1. I changed the extension of the IBA file in ZIP
    2. I unzipped the file
    3. in the folder with the unzipped book I have changed the file index.xml in index.html
    4. I zipped it all back (in a ZIP file)
    5. I renamed the extension ZIP archive in IBA
    6. I tried to open the book and I got  the error that there was no index.xml file
    7. I changed the extension of the IBA and in ZIP
    8. I unzipped the file again
    9. I changed back index.xml to index.html and I zipped it back (compressed it)
    10. I renamed the extension ZIP archive in IBA
    11. I opened the book
    Is this correct?
    The problem is that I am still receiving the same error message: Error parsing document index: invalid character in attribute value
    Did I do something wrong?
    If you can help I would be very greatfull, I worked hard on this book and it is the only backup that I have saved.
    Thank you!

  • HT201210 Pls i was trying to update my iphone 3G to software version 4.2 using itune. The process did not complete succesfully. I then decided to restore back my restore my prevoius version 4.1, it stopped with an error code1015. Pls i need help

    Pls i was trying to update my iphone 3G to software version 4.2 using itune. The process did not complete succesfully. I then decided to restore back my restore my prevoius version 4.1, it stopped with an error code1015. Pls i need help

    Go here: http://www.iclarified.com/entry/index.php?enid=750 and download iOS 4.2.1 for the iPhone 3G. Perform a restore, but hold down ALT when clicking restore. Restore from this file you just downloaded. You should not get 1015 as you are upgrading, but if you get a different error, report back.

  • "Error uploading file index.html. Click Resume to try again. If this problem persists, try again later. [550 /index.html: Not a regular file]"

    When uploading to FTP Host it gives me this error "Error uploading file index.html. Click Resume to try again. If this problem persists, try again later. [550 /index.html: Not a regular file]" What does this mean and how can I fix it? I need to be able to upload my website and it is not allowing me to do so.

    Hi
    Are you still facing the same error ? Also, have you tried to export the file as html , does it shows same error ? You can upload the exported html to your server using any FTP client as an alternative.
    Thanks,
    Sanjit

  • UWL CATS time approval error "No data exists that needs to be approved"

    Hi all,
    We approve CATS working time through SAP portal UWL. The user can see the workitem in her UWL inbox, but got an error u201CNo data exists that needs to be approvedu201D when he tried to execute the workitem. But the user is able to execute the workitem using Business workplace in ECC. We are using the standard UWL application.
    This happens only to CATS time entries for certain type of employees (for example, the employees who do not report directly to the approver).
    SAP Portal 7.0
    SAP MSS 600 SP19
    SAP UWLJWF 7.00 sp23
    SAP ECC 6.0
    Here is what I have found from my trouble-shooting. When I test (preview) the UWL iView, it seems to be working fine. But when I call up the iView from the portal MSS role, I got the error message u201CNo data exists that needs to be approved.u201D
    Please let me know if you need more information.
    Thank you,
    Qi

    I have found that the workitem ID is not passed to the CATS approval web dynpro program. Here is what is in the Item Type configuration XML. Is there anything missing?
    <!-- Work items for CATS -->
        <ItemType name="uwl.task.webflow.TS31000007" connector="WebFlowConnector" defaultView="com.sap.pct.erp.mss.OpenTasksTimeApp" defaultAction="launchWebDynPro" executionMode="default">
          <ItemTypeCriteria externalType="TS31000007" connector="WebFlowConnector"/>
          <Actions>
            <Action name="launchWebDynPro" groupAction="" handler="SAPWebDynproLauncher" returnToDetailViewAllowed="yes" launchInNewWindow="yes" launchNewWindowFeatures="resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no">
              <Properties>
                <Property name="WebDynproApplication" value="CatManagerApprove"/>
                <Property name="WebDynproDeployableObject" value="sap.com/msscatapproval"/>
                <Property name="newWindowFeatures" value="resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no"/>
                <Property name="openInNewWindow" value="true"/>
                <Property name="display_order_priority" value="5"/>
              </Properties>
              <Descriptions default=""/>
            </Action>
          </Actions>
        </ItemType>
        <ItemType name="uwl.forwardedtask.webflow.TS31000007" connector="WebFlowConnector" defaultView="com.sap.pct.erp.mss.ForwardedTimeApp" defaultAction="viewDetail"/>
        <ItemType name="uwl.futuretask.webflow.TS31000007" connector="WebFlowConnector" defaultView="com.sap.pct.erp.mss.FutureTaskTimeApp" defaultAction="viewDetail"/>
        <ItemType name="uwl.completedtask.webflow.TS31000007" connector="WebFlowConnector" defaultView="com.sap.pct.erp.mss.CompletedTimeApp" defaultAction="viewDetail"/>
    Thanks,
    Qi

  • Trying to upgrade my kids iPod 10.6.3 since error msg shows that iPod needs 10.6.3 to work. But it won't show up in my iTunes when I plug in to my laptap. NOT on a MAC

    Hello,
    I cannot see my son's iPod now when I plug it in to my laptop. It gives error message saying  that iPod needs upgraded 10.6.3 to work.
    We cannot update  iPod to 10.6.3 for some reason. But what is really strange is that it won't even show up when we plug it in to try to update! I do not have a MAC please don't say that's the problem haha, i have an older laptop with Windows running, maybe Windows 2000, not sure (how would I find out what is installed on the comupter?)  My ipod works fine and so do our other 2. It's just his iPod? I have an older 64g touch, but his siblings all have the same 4th generation, bought at the same time from the same store.
    Any ideas or suggestions?

    Yu said:
    i have an older laptop with Windows running, maybe Windows 2000, not sure (how would I find out what is installed on the computer?)
    You need at least XP with service pack 3. Go to Control Panel>Performance and Maintenance (for XP)>System,
    What does the screen for the computer show when it is starting up?

  • I am trying to restore an older iPod Touch, but do not have the passcode.  I am getting an error message saying that I need to free up some space, but I cannot because I don't have the passcode and have never synced this device to my account.  Help..

    I am trying to restore an older iPod Touch, but do not have the passcode.  I am getting an error message saying that I need to free up some space, but I cannot because I don't have the passcode and have never synced this device to my account.  Help..

    If it is asking for the screen-lock passcode then:
    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen                         
    If recovery mode does not work try DFU mode.                        
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings        
    For how to restore:
    iTunes: Restoring iOS software
    To restore from backup see:
    iOS: Back up and restore your iOS device with iCloud or iTunes
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload most iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store        
    If problem what happens or does not happen and when in the instructions? When you successfully get the iPod in recovery mode and connect to computer iTunes should say it found an iPod in recovery mode.
    Otherwise follow varjak paw recommendation

  • HT202879 I am stumped - trying to open a recent Pages file but error message says that I need a "newer version" of Pages.  My software updates show that there are no updates available.  I recently updated Pages but it is not consistent.

    I am stumped - I am trying to open a recent Pages file (created with a newer software that I thought was correctly installed recently) but error message says that I need a "newer version" of Pages.  My software updates show that there are no updates available. Pages 09 version 4.3 shows as my current version.

    You have 2 versions of Pages on your Mac.
    Pages 5 is in your Applications folder.
    Pages '09/'08 is in your Applications/iWork folder.
    You are alternately opening the wrong versions.
    Pages '09/'08 can not open Pages 5 files and you will get the warning that you need a newer version.
    Pages 5/5.01 can not open Pages 5.1 files and you will get the warning that you need a newer version.
    Pages 5.1 sometimes can not open its own files and you will get the warning that you need a newer version.
    Pages 5 can open Pages '09 files but may damage/alter them. It can not open Pages '08 files at all.
    Once opened and saved in Pages 5 the Pages '09 files can not be opened in Pages '09.
    Anything that is saved to iCloud is also converted to Pages 5 files.
    All Pages files no matter what version and incompatibility have the same extension .pages.
    Pages 5 files are now only compatible with themselves on a very restricted set of hardware, software and Operating Systems and will not transfer correctly on any other server software than iCloud.
    Apple has not only managed to confuse all its users, but also itself.
    Note: Apple has removed over 95 features from Pages 5 and added many bugs:
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&sid=3527487677f0c 6fa05b6297cd00f8eb9&mforum=iworktipsntrick
    Archive/trash Pages 5, after exporting all Pages 5 files to Pages '09 or Word .docx, and rate/review it in the App Store, then get back to work.
    Peter

  • Error while renaming column in Apex 3.2.1

    Hi,
    I am getting the following error while renaming column in Oracle Apex 3.2.1 through SQL workshop:
    "ORA-24344: success with compilation error"
    Interestingly, it only gives an error when I rename the column again to its original name. For example, if I renaming the column X to X1 (no problem) but renaming back to X, I get this error. Same is true for X to X1 to X2 without any issues but renaming back from X2 to either X1 or X, I get the same error.
    Any insight into this issue would be very helpful and greatly appreciated.
    Thanks,
    Milaan

    I've moved a step ahead, getting the new apex screen at http://127.0.0.1:8080/apex/ and can also login to my application. However there is no image for Application Express on http://127.0.0.1:8080/apex/ and I cannot click on the Login button. Hitting http://127.0.0.1:8080/i/ does list down the images. Any clue on what could be the problem?
    For others reference: I'm not sure what was wrong, but I tried the entire steps again, with the 2 changes: shutdown the listener and job process ( in step 3.1) before running 'apexins' and second that I installed on SYSAUX and not USERS (in step 4)
    1. Downloaded apex_3.2.1.zip to C:\Software
    2. unzip apex_3.2.1.zip to C:\Software\apex
    3. started command prompt and set these variables
    set ORACLE_HOME=C:\oraclexe\app\oracle\product\10.2.0\server
    set ORACLE_SID=xe
    set ORACLE_PATH=C:\oraclexe\app\oracle\product\10.2.0\server\bin
    set LD_LIBRARY_PATH=C:\oraclexe\app\oracle\product\10.2.0\server\lib
    3.1 Shutdown the listener and job services
    4.
    sqlplus /nolog
    CONNECT SYS as SYSDBA
    @apexins SYSAUX SYSAUX TEMP /i/
    5.
    sqlplus /nolog
    CONNECT SYS as SYSDBA
    @apxchpwd
    6.
    Stopped and Started the Database, also the listener and job processes
    7.
    sqlplus /nolog
    connect sys as sysdba
    @apxldimg.sql c:\software
    8.
    sqlplus /nolog
    connect sys as sysdba
    exec dbms_xdb.setListenerLocalAccess (l_access => FALSE);

  • Hi, We have an application  built using HTMl 5 and Javascript running on IPad2, iOS5.1 Safari 5.1. When we try to download a file(.pvw file) in that application safari throws "Download failed" error. Please suggest what needs to be done.

    Hi,
    We have an application  built using HTMl 5 and Javascript running on IPad2, iOS5.1 Safari 5.1.
    When a file url is clicked instead of asking for Save or Open or Cancel options, the file gets opened on IPad by default.
    Is this default behaviour which cannot be changed or can it be configured to ask user preference?
    When we try to download a file(.pvw file -> a model file) in the above application, safari throws "Download failed" error.
    Please suggest what needs to be done.
    Regards,
    Pramod

    Safari on an iPad in general does not allow downloading of files. That's a safety precaution in the iOS SDK to keep unauthorized content off of iOS devices. Safari will open from the web site file types that it can handle, but direct downloading isn't normal behavior, and I don't believe the behavior can be changed, though you can try asking in the developer forum, either here or the one to which you have access as a member of Apple's iOS developer program.
    Regards.

Maybe you are looking for