Regarding content Import in UCM.

Hi All,
I am facing an issue while importing content in UCM.
While importing an archive I am getting the following error:
Import error for archive 'full_archvie_core_content' in collection 'IT_IAT_DS_02': Unable to execute service IMPORT_ARCHIVE and function Imeta.
Unable to execute query 'IdsDocMetaDataDocMeta(INSERT INTO DocMeta(dID,xComments,xExternalDataSet,xIdcProfile,............,xPageID,xNDDate) VALUES(7582,'','','','',...........'','','',null))'.
ORA-29875: failed in the execution of the ODCIINDEXINSERT routine
ORA-20000: Oracle Text error:
DRG-50857: oracle error in textindexmethods.ODCIIndexInsert
ORA-00604: error occurred at recursive SQL level 1
ORA-01950: no privileges on tablespace 'SYSAUX'
ORA-06512: at "CTXSYS.DRUE", line 160
ORA-06512: at "CTXSYS.TEXTINDEXMETHODS", line 751
The UCM connects to the Oracle database using user Test. There is a tablespace present for this user and it has DOCMETA table in it which is owned by Test. I fail to understand why it is giving the priviliges error.
Also, when I connect to the database using the Test user, I am able to insert same row manually in the table DOCMETA.
Can anyone suggest how to troubleshoot this issue.

Hi Srinath,
As per the dba, user DEV_OCS has unlimited quota on tablespace DEV_OCS. Here is the output he has sent:
Time: 02:32 PM                              
ORACLE FREESPACE REPORT                      
User: SYS
Database: VOPNP0151                          
Host: avgpitcr
                            Allocated         Used         Free      %Used
TABLESPACE       MB                  MB           MB             MB   Data Files
DATA01               2,000.0          1.0              1,999.0         .1        1
DEV_OCS           7,000.0           5,527.5       1,472.5        79.0     1
Also when I connect individually to each of the servers in the Oracle RAC via. sqldevelepor, I am able to insert row in one of the servers. The other gives the privileges error  for SYSAUX.

Similar Messages

  • Problem in Checked-in Content Item in UCM

    Hi All,
    Previously I have checked-in a content item into UCM. but after while I deleted all revisions because I didn't need that file.
    Problem is that when I perform search, That content Item visibles, and when I click on content info button then it gives me error "Content item is no longer available in System".
    Plz tell me Why search result gives me that page which I have deleted ?
    Note: We have configured "Full text Search" Engine in our System.
    Waiting for helpful response
    regards,
    Ali Imran

    Was you index rebuild cycle successful?
    Try this run below query on Oracle UCM database schema
    You can find out which collection is in use by looking @ <install dir>/search/activeindex.hda file
    select * from idccoll2/idccoll1 where ddocname LIKE '<dDocName of content id of which you deleted all revisions>';
    if you get result that means either rebuild cycle was not successful or not yet complete and using old index collection.
    Try one more time by noting down which is current index collection by looking @ activeindex.hda then rebuild index collection after rebuild & restarting CS server check activeindex.hda file to see if new collection to use is updated in this file.
    Regards,
    Amol Gavali.

  • How long Expired Content Stay in UCM?

    Hi,
    How long Expired Content Stays in UCM ?
    Thanks
    Edited by: user4884609 on Apr 1, 2011 9:59 AM

    1 of 3 ways:
    1. Go to Content Management->Expired Content and search. Then perform an update and delete expiration date.
    2. Use Repository Manager, define a filter, update, and delete expiration date.
    3. User Archiver, define an export, and then import with a blank expiration date
    If possible, open a separate thread for this.

  • Error while processing /libs/commerce/content/import.html

    hello every body;
    I wanna import a catalog from hybris to cq5, I fill the form when I click import catalog; it gives me this error:
    Error while processing /libs/commerce/content/import.html
    thanks for your help;

    thanks sham;
    ok; it's resoleved now, it was a problem in the version of cq,i was using cq5.4,it dosn't work with this version;
    but I have an other problem here where I imported a catalog from hybris; the function getProductPrice(product) doesn't work;in the file /apps/geometrixx-outdoors/components/nav_products/listitem_product.jsp
    i the line: final String price = session.getPriceInfo(product); anit gives me the error:
    Caused by: java.lang.NullPointerException
              at com.adobe.cq.commerce.hybris.impl.HybrisSessionImpl.getProductPriceInfo(HybrisSessionImpl .java:184)
              at com.adobe.cq.commerce.hybris.impl.HybrisSessionImpl.getProductPrice(HybrisSessionImpl.jav a:211)
              at com.adobe.cq.commerce.hybris.impl.HybrisSessionImpl.getProductPrice(HybrisSessionImpl.jav a:207)
    thanks for your help;

  • How to make modal page to be auto size regarding content in the page?

    Hi, guys:
    I created a modal page (Dan Mcghan's modal page plugin from skillbuilder web site), which pops up when user clicks the master table to see drill down data. However, some rows in the modal page have too many characters, and modal page cannot hold it, so user cannot see the next page with page set pagination, the page set pagination is just out of the scope of modal page. Could anyone give me a suggestion to set modal page auto size adjustable regarding content in the page?
    Thanks a lot in advance.
    Sam

    Hi,
    You can enable "Scrolling" for the modal window under Shared Components -> Component Settings. In the DA that triggers the modal, you can set the "Dialog Height/Width Mode" to Auto.
    BTW, what is the region template of the modal region (in the target page)?
    If your issue is still not resolved, please setup an example in apex.oracle.com and I can have a look.
    Thanks,
    Rohit

  • Why is content import causing blocked transactions

    Hi folks,
    I'm doing a fairly large import of a delivery unit from development to staging environment and noticed that during my content import via delivery unit that many transactions are blocked for SLT trying to perform INSERTS and UPDATES into M tables like MARA, MARC etc.  I noticed that the lock is being caused by a transaction running under _SYS_REPO so I assume it's my imported views activating.  Should this activation be preventing inserts and updates?  If that's the case should I stop SLT mass transfer jobs prior to activating lots of views?  I was thinking that my activation is only READING and should not prevent inserts/updates.
    Thanks,
    -Patrick

    Hi Patrick,
    sorry - for some reason this one slipped my attention...
    Anyhow, what I meant by "incompatible lock modes" was something like this:
    Transaction A writes data into the table. To do that, a kind of "shared lock" is set for the table accessed. The point here is not to prevent data change, but to make sure that the table is neither dropped or structurally changed during the access.
    Also: when there are exclusive locks on the table, this kind of lock cannot be set.
    Transaction B now wants to activate the models and sets exclusive locks on the table during the activation so that the table reference can be set (I _guess_ here(!) that maintaining the reference between the column view and the table is handled just similar to ALTER/DROP TABLE concerning the locking scheme).
    In this setup the lock mode "shared lock" on top of the "exclusive lock" wouldn't be compatible, that is both locks cannot exist at the same time for the same lock objects.
    Does that make any sense?
    Right now I don't have the option to check this hypothesis, but a try to check on that would include some tracing for the locks... (just in case anyone volunteers do try that).
    Cheers,
    Lars

  • Content categorizer engine, UCM 11g: ClassCastException.

    Hi!
    I try to register a categorizer engine in Content Categorizer in UCM 11g, on Linux.
    My Extractor Class — SccMyTaxonomyExtractor extends SccTaxonomyExtractor.
    When i try to build query tree, and click Content Categorizer Administration -> Query Trees -> Build Query Tree -> Overwrite contents of Taxonomy Cache, i get ClassCastException: SccAMyTaxonomyExtractor cannot be cast to contentcategorizer.SccTaxonomyExtractor.
    Why?
    I build my classes using contentcategorizer.SccTaxonomyExtractor from sccserver.jar (this .jar i get from UCM), with jdk 1.5, and jdk 1.6. Each time i get this exception.
    Can anyone comment this?
    Thanks for your thoughts of my question :)

    According to the documentation ( http://docs.oracle.com/cd/E21043_01/doc.1111/e10797/c04_finding_files.htm#g1300865 and particularly http://docs.oracle.com/cd/E21043_01/doc.1111/e10797/c04_finding_files.htm#CJAEAHED ) only asterisks and question marks are used as wildcards for metadata search fields. No information about underscores - (according to this: http://docs.oracle.com/cd/F49540_01/DOC/inter.815/a67843/cqspcl.htm they are wildcards for Text queries in Oracle DB)
    However, Kyle in his article https://blogs.oracle.com/kyle/entry/site_studio_naming_best_practi recommends not to use underscores for Site_ID as it "causes numerous issues", so you'll be on a safe side to get rid of them.

  • Exclusive queue regarding very important message

    Hi guru!!
    I have one question regarding very important message in exclusive queue for async.
    i wanted to find a way which is using exclusive queue for it and then let it use only this queue. anyone does know?
    my scenario client java proxy to inbound abap proxy.  should be used by exclusive queue for it during sending to receiving, any another message should not use this queue included xi and ecc queue.
    can anyone explain me?
    thanks & regards;
    venjamin

    Hi Venjamin,
    U may use one queue with ABAP Proxy or a BPM scenario.
    This can be done using: Configure Filter for Queue Prioritization in transaction sxmb_adm.
    Refer the following
    /people/sap.user72/blog/2005/12/12/how-to-prioritize-messages-in-xi
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/59e837d3-0201-0010-c096-dc1869733413
    Similar problem here
    Specific queue for one Scenario.
    Regards,
    Prateek

  • How to limit the number of version of a content item in UCM?

    Hi,
    I am looking for a solution to limit the number of versions which can be created for a content item. It should be configurable as in future if I need to increase or decrease, it should be possible.
    I have seen the solution given in Re: Limiting number of revisions
    Here its delete the previous versions . But i dont want it to be deleted.
    Any help will be appreciated.
    Regards
    Poornima

    Random ideas
    Records. If an item in URM is set to be a Record then it can only have one revision ever.
    Archiver can be used to export revisions to keep only a certain number of revisions in the system. The old revisions are deleted from the UCM but can continue to exist in the exported Archives and could be re-imported if desired.
    Custom filter code to check number of revisions and stop a checkin dynamically (as mentioned in other replies to your post)

  • SRM-MDM CATALOG PI Content Import

    Hi All,
    We have imported SRM-MDM CATALOG 3.0 in Integration Repository.
    When we imported .tpz files all the objects are imported in SWC SRM-MDM CATALOG
    except CatalogueUpdateNotification_Out (Message Interface and its corresponding datatype and message type)
    are not imported.
    Could you please give me path from where I can download PI content for SRM-MDM CATALOG 3.0 that wil have CatalogueUpdateNotification_Out (Message Interface and corresponding datatype and message type objects)?
    Best Regards,
    Harleen Kaur Chadha

    Hello,
    You can download required content through link provided below.
    service.sap.com\swdc ->
    Support Packages and Patches -> Entry by Application Group->" SAP Content"-> ESR Content (XI Content)" -> XI CONTENT SRM-MDM CATALOG -> XI CONTENT SRM-MDM CATALOG 3.0
    BR,
    Dzmitry

  • BI content import issue

    Dear All,
    I've completed the installation for the below:
    SAP NW2004s SR3 on DB2
    However, I have some issue when I executed SAINT to import the BI content. The errors is as below:
    The Add-on installation terminated during phase OBJECTS_LOCKED_?
    From ST22, here are some of the logs:
    Runtime Errors         DBIF_RSQL_SQL_ERROR
    Exception              CX_SY_OPEN_SQL_DB
    How to correct the error
        Database error text........: "SQL0954C Not enough storage is available in the
         application heap to process the statement. SQLSTATE=57011"
        Internal call code.........: "[RSQL/OPEN/DD04L ]"
        Please check the entries in the system log (Transaction SM21).
        If the error occures in a non-modified SAP program, you may be able to
        find an interim solution in an SAP Note.
        If you have access to SAP Notes, carry out a search with the following
        keywords:
        "DBIF_RSQL_SQL_ERROR" "CX_SY_OPEN_SQL_DB"
        "SAPLSDIFRUNTIME" or "LSDIFRUNTIMEU02"
        "DDIF_FIELDINFO_GET"
    I've tried solutions from OSS note (644504) but the problem still persists.
    Thanks
    Regards,
    John

    Hi,
    Database error text........: "SQL0954C Not enough storage is available in the
    application heap to process the statement. SQLSTATE=57011"
    Not Very sure but just check whether your datafiles or transactional log files are full.Using DB02 or ST04.
    Regards,
    Vamshi.

  • Looking for some best practice regarding Content Administrator access

    Hi. I am looking for some best practice or rule of thumb from SAP or from different companies how they address Portal Content Administrator access in Production environment. Basically, our company is implementing portal to work with SAP BW.  We are on SP 9. Basically, I am trying to determine if we should have 1-2 Portal Content Administrator in Production with 24/7 access or we should limit them from NOT having this.  Can you share with me some ideas of what is right? and what is not?
    Should we have access in Production? Or Should we have this access but limited? By the way, our users are allow to Publish BI reports/queries into Production.

    Hello Michael,
    Refer to this guide about managing initial content in portal.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/00bfbf7c-7aa1-2910-6b9e-94f4b1d320e1
    Regards
    Deb
    [Reward Points for helpful answers]

  • Regarding content conversion parameter

    Hi
    I am doing content conversion in sender file adapter.I want to remove " " in target file.
    I used  row.enclosureSignEsc ""
    but its not working.
    can any one tell me how to use enclosure sign parameter.
    Source Flat file looks like:
    "A00",417,"SC9",20050101,100617,3229
    "B01","EA",20041231,39.4,"ACT","F","D"
    "B01","EA",20041231,38.7,"ACT","F","W"
    "B01","EA",20050101,39.4,"TOD","F","D"
    "B01","EM",20041231,39.3,"ACT","F","D"
    "B01","EM",20041231,38.7,"ACT","F","W"
    "Z99",50
    In the target i want like this:
    A00,417,SC9,20050101,100617,3229
    B01,EA,20041231,39.4,ACT,F,D
    B01,EA,20041231,38.7,ACT,F,W
    B01,EA,20050101,39.4,TOD,F,D
    B01,EM,20041231,39.3,ACT,F,D
    B01,EM,20041231,38.7,ACT,F,W
    Z99,50
    Thanks&Regards
    venkat.

    >
    venky adireddy wrote:
    > Hi
    > I am doing content conversion in sender file adapter.I want to remove " " in target file.
    > I used  row.enclosureSignEsc ""
    > but its not working.
    > can any one tell me how to use enclosure sign parameter.
    >
    > Source Flat file looks like:
    >
    > "A00",417,"SC9",20050101,100617,3229
    > "B01","EA",20041231,39.4,"ACT","F","D"
    > "B01","EA",20041231,38.7,"ACT","F","W"
    > "B01","EA",20050101,39.4,"TOD","F","D"
    > "B01","EM",20041231,39.3,"ACT","F","D"
    > "B01","EM",20041231,38.7,"ACT","F","W"
    > "Z99",50
    >
    > In the target i want like this:
    >
    > A00,417,SC9,20050101,100617,3229
    > B01,EA,20041231,39.4,ACT,F,D
    > B01,EA,20041231,38.7,ACT,F,W
    > B01,EA,20050101,39.4,TOD,F,D
    > B01,EM,20041231,39.3,ACT,F,D
    > B01,EM,20041231,38.7,ACT,F,W
    > Z99,50
    >
    >
    >
    > Thanks&Regards
    > venkat.
    THERE
    there is no parameter to achieve what you want in FCC.
    as mentioned earlier you will have to use a function to remove the "
    you dont have to create a UDF you can use the standard text function available in XI - replaceString

  • Regarding content conversion parameters at receiver side

    Hi
    In the recevier side I have 3 nodes.
    like HEADER,BODY,TRAILER.
    file receiver communication channel I mentioned
    RecordsetStructure*    HEADER,BODY,TRAILER
    parmeters I mentioned
    HEADER.fieldFixedLengths
    HEADER.endSeparator
    BODY.fieldFixedLengths
    BODY.endSeparator
    TRAILER.fieldFixedLenghths
    TRAILER.endSeparator.
    In runtime workbench it is showing "Channel has not been correctly initialized and cannot process messages"
    Please tell me is there any other parameters I have to mention.
    regards
    venkat.

    Venkat,
    Pls refrer the below:
    http://help.sap.com/saphelp_nw04/helpdata/en/d2/bab440c97f3716e10000000a155106/content.htm
    Regards,
    Sameer!

  • Regarding content conversion

    HI,
       I have a fixed length text file with data as
    5000.00         399   060622       0010000110000000Job 50
    2000.00         383   06062257688  0010000110060622Job 11
    3000.00         383   0606227876   0010000110060622Job 30
    I want to convert into xml format.How a sender adapter should be configured.

    Hi,
    Please have a look at this weblog for content conversion
    /people/shabarish.vijayakumar/blog/2006/02/27/content-conversion-the-key-field-problem
    Regards
    Vijaya

Maybe you are looking for

  • Problem in using quick and advanced search based on transient items

    Hi everybody I want to have an unbound string item in my form and allow users to use advanced search and quick search on that item. I read the following post About advanced search and added a transient item on view object and overrode the advance sea

  • Abt clear value problem in scripts

    Hi, Im working on scripts.in scripts im calculating totals by using subroutine.but im facing problem. my problem is first time i calculated it's working fine. when i go back and enter other order number it's taking previous order number and present t

  • Why some archivelogs are not being backedup

    Hi, Can you help me understand why archivelog sequence 3 to 112 are not being backed-up? Rman list backup BS Key  Type LV Size       Device Type Elapsed Time Completion Time 13      Incr 0  1.49G      SBT_TAPE    00:03:43     09-MAY-10              B

  • Use more than one transition in the same time between two video clips?

    Dear Premiere Pro programmers, Could you please create a way to use more than one transition in the same time between two video clips without exporting to media, or creating new sequence, or using another layer (adjustment or transparent)? Message wa

  • Panther to Tiger upgrade

    I currently use the Panther OS. Will upgrading to Tiger slow down normal operations, or take up more of my memory? (computer specs shown below) G4 dual 867 MHz   Mac OS X (10.3.9)   512 Mb RAM - 60GB & 120GB hard drives