Create index internal error

I am trying to create an InterMedia index on a CLOB field in an Oracle 8.1.7.0.0 Win2000 instance and get an internal error. I can create the index on a subset of the data (by doing a partial load), but when I try to do it on the complete data set I get the error (which can be reproduced).
====================================
ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
ORA-20000: interMedia Text error:
DRG-50857: oracle error in drsxsopen
ORA-00600: internal error code, arguments: [19942], [], [], [], [], [], [], []
ORA-06512: at "CTXSYS.DRUE", line 126
ORA-06512: at "CTXSYS.TEXTINDEXMETHODS", line 78
ORA-06512: at line 1
=========================
Any thoughts, ideas, or advice?
Thanks,
Ken
null

There is a bug in 8.1.7 with UTF8 (CLOB rows are not indexed on UTF8 databases if more than 2000 CHARS long) but I don't think this is the case.
What's the DB character set? Could you please post the table description and index creation script?
null

Similar Messages

  • Error while creating SC: Internal Error - termination type TH_RES_FREE

    Hi I encountered this error while creating a SC. All attributes for this user are maintained and the "check user" transaction does not give any error.
    Amol Mate
    Error when processing your request
    What has happened?
    The URL http://punhjwsapsrm:8000/sap/bc/gui/sap/its/bbpsc02/! was not called due to an error.
    Note
    The following error text was processed in the system SSS : Internal Error
    The error occurred on the application server PUNHJWSAPSRM_SSS_00 and in the work process 1 .
    The termination type was: TH_RES_FREE
    The ABAP call stack was:
    Function: B40B_READ_TABLE of program SAPLBBP_BD_DRIVER_40B
    Function: META_READ_TABLE of program SAPLBBP_BD_META_BAPIS
    Form: LOCATIONS_READ of program SAPLBBP_ATTR_F4
    Function: BBP_ATTR_F4_SLOC_PPOMA of program SAPLBBP_ATTR_F4
    Form: STG_LOC_GET_FOR_LOCATION of program SAPLBBP_SC_APP
    Form: STG_LOC_GET of program SAPLBBP_SC_APP
    Form: LOCATION_STG_LOC_GET of program SAPLBBP_SC_APP
    Form: USER_ATTRIBUTES_GET of program SAPLBBP_SC_APP
    Form: SC_INIT of program SAPLBBP_SC_APP
    Function: BBP_SC_APP_EVENT_DISPATCHER of program SAPLBBP_SC_APP
    What can I do?
    If the termination type was RABAX_STATE, then you can find more information on the cause of the termination in the system SSS in transaction ST22.
    If the termination type was ABORT_MESSAGE_STATE, then you can find more information on the cause of the termination on the application server PUNHJWSAPSRM_SSS_00 in transaction SM21.
    If the termination type was ERROR_MESSAGE_STATE, then you can search for more information in the trace file for the work process 1 in transaction ST11 on the application server PUNHJWSAPSRM_SSS_00 . In some situations, you may also need to analyze the trace files of other work processes.
    If you do not yet have a user ID, contact your system administrator.
    Error code: ICF-IE-http-c:100-u:PTEST -l:E-s:SSS-i:PUNHJWSAPSRM_SSS_00 -w:1-d:20051121-t:171904-v: TH_RES_FREE-e:Internal Error
    HTTP 500 - Internal Server Error
    Your SAP Internet Communication Framework Team

    Hi Amol,
    First of all the sicf transaction is to be used only if you use the internal ITS.
    Now you have to put an external breakpoint in the source code of the ABAP Program or FM you want to debug , one of these in your case :
    Function: B40B_READ_TABLE of program SAPLBBP_BD_DRIVER_40B
    Function: META_READ_TABLE of program SAPLBBP_BD_META_BAPIS
    Form: LOCATIONS_READ of program SAPLBBP_ATTR_F4
    Function: BBP_ATTR_F4_SLOC_PPOMA of program SAPLBBP_ATTR_F4
    Form: STG_LOC_GET_FOR_LOCATION of program SAPLBBP_SC_APP
    Form: STG_LOC_GET of program SAPLBBP_SC_APP
    Form: LOCATION_STG_LOC_GET of program SAPLBBP_SC_APP
    Form: USER_ATTRIBUTES_GET of program SAPLBBP_SC_APP
    Then launch the transaction in IE, once the program reaches a breakpoint, you'll get the ABAP debuger in IE.
    Regards.
    PS: if it doesn't work, put the parameter ~generatedynpro in BBPGLOBAL service to have it applied to all BBP transactions
    Vadim

  • Error in Create Index

    SQL> CREATE INDEX rate_center_temp_idx1
    ON rate_center_temp(cl_id)
    TABLESPACE staging
    NOLOGGING
    PARALLEL 4; 2 3 4 5
    CREATE INDEX rate_center_temp_idx1
    ERROR at line 1:
    ORA-12801: error signaled in parallel query server P000
    ORA-10615: Invalid tablespace type for temporary tablespace
    I am getting the same error on running any query in the database
    can you please give me the solution

    Make sure that the user where you want to create this index has been assigned with a "REAL" temporary tablespace
    SQL> ed
    Wrote file afiedt.buf
      1  select username, temporary_tablespace
      2  from dba_users
      3* where username='SCOTT'
    SQL> /
    USERNAME                       TEMPORARY_TABLESPACE
    SCOTT                          TEMP

  • Error creating index

    Hi,
    I'm sure this question must have been asked before, but I can't find an answer to it.
    When I try to create a spatial index I get the following error:
    CREATE INDEX IDX_ADDR_SPT
    ERROR at line 1:
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-13203: failed to read USER_SDO_GEOM_METADATA table
    ORA-13203: failed to read USER_SDO_GEOM_METADATA table
    ORA-06512: at "MDSYS.SDO_INDEX_METHOD", line 8
    ORA-06512: at line 1
    I used the following commands to enter data into the meta table and create the index:
    INSERT INTO USER_SDO_GEOM_METADATA
    VALUES(
    'MAPDEV.DAT_ADDRESS',
    'MAPDEV.DAT_ADDRESS.GEOPOINT',
    MDSYS.SDO_DIM_ARRAY(
    MDSYS.SDO_DIM_ELEMENT('X', 529440, 529680, 0.5),
    MDSYS.SDO_DIM_ELEMENT('Y', 181373, 181582, 0.5)
    8274 --SRID
    CREATE INDEX IDX_ADDR_SPT
    ON MAPDEV.DAT_ADDRESS(GEOPOINT)
    INDEXTYPE IS MDSYS.SPATIAL_INDEX
    PARAMETERS('SDO_LEVEL=4 LAYER_GTYPE="POINT" TABLESPACE="IDX"');
    I have no idea where I am going wrong, so any help would be greatly appreciated.
    Cheers.
    Steve

    if you are not trying to create a function-based index then change your metadata entries:
    INSERT INTO USER_SDO_GEOM_METADATA
    VALUES(
    'DAT_ADDRESS',
    'GEOPOINT',
    MDSYS.SDO_DIM_ARRAY(
    MDSYS.SDO_DIM_ELEMENT('X', 529440, 529680, 0.5),
    MDSYS.SDO_DIM_ELEMENT('Y', 181373, 181582, 0.5)),
    8274 --SRID);
    hope this helps,
    dan

  • Error when creating index with parallel option on very large table

    I am getting a
    "7:15:52 AM ORA-00600: internal error code, arguments: [kxfqupp_bad_cvl], [7940], [6], [0], [], [], [], []"
    error when creating an index with parallel option. Which is strange because this has not been a problem until now. We just hit 60 million rows in a 45 column table, and I wonder if we've hit a bug.
    Version 10.2.0.4
    O/S Linux
    As a test I removed the parallel option and several of the indexes were created with no problem, but many still threw the same error... Strange. Do I need a patch update of some kind?

    This is most certainly a bug.
    From metalink it looks like bug 4695511 - fixed in 10.2.0.4.1

  • A fatal error occurred while creating an SSL client credential. The internal error state is 10011.

    Need help.  I have my pilot lync 2013 pool up (in coexistence with 2010 production environment) and can log into Lync 2013 environment with a lync 2010 client but am not able to with a lync 2013 client.  It just prompts for password but will not
    take it. I'm sseeing this on my front end server multiple times:
    A fatal error occurred while creating an SSL client credential. The internal error state is 10011.
    Came across this http://www.logicspot.net/index.php?id=50 and tried disabling TLS 1.2, which I did and verified but yet the issue still exists.
    All my certs are good coming from internal CA.  My signin logs show below but keep in mind, this works just fine if using a 2010 lync client to my lync 2013 servers.  Issue only occurs when trying to connect using a lync 2013 client.
    1 Login: FAIL (hr = 0x1) 
    this request needs authentication, trying webticket from: https://domain.com/WebTicket/WebTicketService.svc
    1.1 Get-NewWebTicket: FAIL (hr = 0x1) 
    CLogonCredentialManager::QueryForSpecificCreds() Credential user 0x069B64A0 id=15 querying for specific credentials, credSuccess=2, targetName=Microsoft_OC1:[email protected]:specific:LAD:1
    1.1.1 ExecuteWithMetadataInternal: FAIL (hr = 0x3d0000) 
    Executing wws method with windows auth auth, asyncContext=0A4FC348,
     context: WebRequest context@ :173931816
      MethodType:4
      ExecutionComplete? :1
      Callback@ :0A5A1864
      AsyncHResult:80f10041
      TargetUri:https://domain.com/WebTicket/WebTicketService.svc
      OperationName:http://tempuri.org/:IWebTicketService
     Error:
    There was an error communicating with the endpoint at 'https://domain.com/WebTicket/WebTicketService.svc'.
    The server returned HTTP status code '401 (0x191)' with text 'Unauthorized'.
    The requested resource requires user authentication.
    1.1.2 ExecuteWithWindowsOrNoAuthInternal: PASS
    1.1.3 ExecuteWithWindowsOrNoAuthInternal: FAIL (hr = 0x3d0000) 
    Executing wws method with windows auth auth, asyncContext=0A4FC348,
     context: WebRequest context@ :173931816
      MethodType:4
      ExecutionComplete? :1
      Callback@ :0A5A1864
      AsyncHResult:80f10041
      TargetUri:https://domain.com/WebTicket/WebTicketService.svc
      OperationName:http://tempuri.org/:IWebTicketService
     Error:
    There was an error communicating with the endpoint at 'https://domain.com/WebTicket/WebTicketService.svc'.
    The server returned HTTP status code '401 (0x191)' with text 'Unauthorized'.
    The requested resource requires user authentication.
    1.1.4 ExecuteWithWindowsOrNoAuthInternal: FAIL (hr = 0x3d0000) 
    Discovery task(0A4FF830) sent to URL http://domain.com completed with hr=0x80f10045
    1.1.5 ExecuteWithWindowsOrNoAuthInternal: FAIL (hr = 0x3d0000) 
    Executing wws method with windows auth auth, asyncContext=0A4FC348,
     context: WebRequest context@ :173931816
      MethodType:4
      ExecutionComplete? :1
      Callback@ :0A5A1864
      AsyncHResult:80f10041
      TargetUri:https://domain.com/WebTicket/WebTicketService.svc
      OperationName:http://tempuri.org/:IWebTicketService
     Error:
    There was an error communicating with the endpoint at 'https://domain.com/WebTicket/WebTicketService.svc'.
    The server returned HTTP status code '401 (0x191)' with text 'Unauthorized'.
    The requested resource requires user authentication.
    1.1.6 ExecuteWithWindowsOrNoAuthInternal: FAIL (hr = 0x3d0000) 
    CLogonCredentialManager::QueryForSpecificCreds() Credential user 0x069B64A0 id=15 querying for specific credentials, credSuccess=2, targetName=Microsoft_OC1:[email protected]:specific:LAD:1
    Rich

    Hi,
    Please check the server role and Web Services for Internet Information Services (IIS) are set correctly.
    For the detailed IIS configuration, please check:
    http://technet.microsoft.com/en-us/library/gg412871.aspx
    As Lync client 2013 attempt to query in order to perform autodiscover of the Lync registration server. First
    lyncdiscoverinternal.<sipdomain> Host (A) record and then
    lyncdiscover.<sipdomain> Host (A) record. If neither of these records are resolvable then the legacy DNS SRV and A record fall-back process is used. So make sure you have add the two A record in DNS server.
    More details:
    http://blog.schertz.name/2012/12/lync-2013-client-autodiscover/
    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please make
    sure that you completely understand the risk before retrieving any suggestions from the above link.
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • Error create index

    Hi
    I trying to create my spatial index:
    INSERT INTO USER_SDO_GEOM_METADATA
    VALUES (
    'DGDTW_TOPOGRAFIE',
    'GEOMETRIE',
    mdsys.SDO_dim_array(
    MDSYS.SDO_DIM_ELEMENT('X',200000,215600,.0005),
    MDSYS.SDO_DIM_ELEMENT('Y',844800,862000,.0005),
    MDSYS.SDO_DIM_ELEMENT('Z',-10000,10000,0.0005)),NULL);
    create index DGDTW_TopoIndex on DGDTW_Topografie(Geometrie) indextype is mdsys.spatial_index;
    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: błąd wewnętrzny podczas przetwarzania drzewa R: [failed to cluster in memory]
    ORA-13249: Internal error in Spatial index: [mdrcrclmem]
    ORA-13232 failed to allocate memory during R-tree creation
    ORA-13236:internal error in R-tree processing:[failed to allocate memory]
    ORA-06512: a "MDSYS.SDO_INDEX_METHOD_9I", line 368
    ORA-06512: a line 1
    I do not understand why I am getting the error.
    Thank you!

    What version of Oracle are you using? Please include the patch level. This rings a bell as a bug that was fixed a long time ago.

  • 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.

  • When I try to export from LR I get an internal error message :  An internal error has occurred ?:0 attempt to index a nil value

    All of a sudden when I try to export images from LR to my HD...I get the following error
    Unable to Export:
    An internal error has occurred ?:0 atempt to index a nil value.  What does this mean?  How do I fix?

    Hi,
    Same problem here. I am trying to export files from RAW format to JPEG. I am setting the output size to 2000k. I get the error message:
    Attempt to index a nil value
    The behavior is a bit random. If I export a large number of photos, some will work some won't. If I retry a picture that failed, it sometimes works or keeps failing. The input images are fairly similar in sizes.
    In some cases, there is no error message but the new reduced-size image is not created.
    Computer:
    Windows 7 Professional
    Intel Core 2 Duo
    4 GB of memory
    Hard-drive: 1 TB, about 700 GB free.
    Lightroom version 5.5
    Camera Raw 8.5
    This export operation was working previously (i.e., previous version of LR). I installed the 5.5 version on June 28 2014. The bug is probably in the new version of LR.
    System configuration (in French)
    Version de Lightroom : 5.5 [968504]
    Système d'exploitation : Windows 7 Business Edition
    Version : 6.1 [7600]
    Architecture de l'application : x86
    Architecture du système : x86
    Nombre de processeurs logiques: 2
    Vitesse du processeur : 2,6 Ghz
    Mémoire intégrée : 3326,1 Mo
    Mémoire réelle disponible pour Lightroom : 716,8 Mo
    Mémoire réelle utilisée par Lightroom : 446,1 Mo (62,2%)
    Mémoire virtuelle utilisée par Lightroom : 557,4 Mo
    Taille de la mémoire cache : 8,1 Mo
    Nombre maximal de liens utilisé par Camera Raw: 2
    Paramètre PPP du système : 96 PPP
    Composition sur le Bureau activée: Oui
    Affichages : 1) 1680x1050
    Dossier de l'application : C:\Program Files\Adobe\Adobe Photoshop Lightroom 5.5
    Chemin d'accès à la bibliothèque : K:\Images\Lightroom\Lightroom 5 Catalog.lrcat
    Dossier des paramètres : C:\Users\Dominique\AppData\Roaming\Adobe\Lightroom
    Modules installés:
    1) Behance
    2) Facebook
    3) Flickr
    4) Module externe de prise de vue en mode connecté Canon
    5) Module externe de prise de vue en mode connecté Leica
    6) Module externe de prise de vue en mode connecté Nikon
    Marqueurs Config.lua: None
    Adaptateur n° 1: Fournisseur : 10de
      Périphérique : 402
      Sous-système : 50510de
      Révision : a1
      Mémoire vidéo : 243
    AudioDeviceIOBlockSize: 1024
    AudioDeviceName: Haut-parleurs (Périphérique High Definition Audio)
    AudioDeviceNumberOfChannels: 2
    AudioDeviceSampleRate: 44100
    Build: Uninitialized
    CardID: 1026
    Direct2DEnabled: false
    GPUDevice: D3D
    MaxTexture2DSize: 8192
    OGLEnabled: true
    Renderer: NVIDIA GeForce 8600 GT (Microsoft Corporation - WDDM v1.1)
    ShaderModel: 10.0
    Vendor: Nvidia
    VendorID: 4318
    Version: 10de:0402:50510de:00a1

  • Getting internal error when creating new FPMiView

    Hello,
    When I try to create new FPMiView through the Self-Service Administrator role I am getting this error:
    "An internal error occured: String index out of range: -4"
    I don't see anything in the log files and I tried several names and IDs yet keep getting this error.
    Any ideas...?
    Rgds,
    Roy

    Solution:
    Need to set the parameter Use_CustomerExit_ParameterProvider of the portal service com.sap.portal.appintegrator to TRUE and then restart it.
    Roy

  • InterMedia Error when creating Index

    Sorry, the error texts are in French, hopefully someone will help me.
    I have checked listner.ora and tnsmanes.ora: they look fine, (however, we have ....KEY=EXTPROC)), not EXTPROC0 as it appears sometimes in the doc) but something must be wrong someplace.
    Seems to be related to another question in this forum.
    Thanks for any help.
    (actually, when running from sql worksheet, I get a Net8 listener ids not running or cannot start external procedure ??
    create index quick_text on kd.kd_enseigne(desc_long) indextype is ctxsys.context
    ORA-29855: erreur d'exZcution de la routine ODCIINDEXCREATE
    ORA-20000: erreur interMedia Text :
    DRG-11422: initialisation des services linguistiques impossible
    DRG-00100: internal error, arguments : [52100],[drxs.c],[557],[gxtopen],[0]
    ORA-06512: S "CTXSYS.DRUE", ligne 126
    ORA-06512: S "CTXSYS.TEXTINDEXMETHODS", ligne 54
    ORA-06512: S ligne 1
    SVRMGR>

    <BLOCKQUOTE><font size="1" face="Verdana, Arial, Helvetica">quote:</font><HR>Originally posted by Omar Alonso:
    Please post db version and platform. Are you sure the listener is running?<HR></BLOCKQUOTE>
    db version is 8.1.5, platform is Linux.
    By running the check script we saw that the cartridge was invalid. We had to reinstall anither instance, now it works.
    Thank you.

  • An internal error was encountered in the extensible spatial index

    HiAll,
    Ran a query on
    CREATE TABLE results1 NOLOGGING AS
    SELECT a.rowid1 poly_rowid, a.rowid2 point_rowid
    FROM TABLE (SDO_JOIN ('PARCEL', 'GEOMETRY', 'ND_TABLE', 'GEOMETRY')) a;
    Thsi query ran for 20 hours! and came up with this error An internal error was encountered in the extensible spatial index.
    But when you just run teh select statement the results come in seconds...
    I am running on 11GR2 and this query was ran on Sql Developer.
    Any help is much appreciated.
    Edited by: CrackerJack on Mar 31, 2013 2:50 AM

    How fast for the following queries?
    insert into results1 SELECT a.rowid1 poly_rowid, a.rowid2 point_rowid
    FROM TABLE (SDO_JOIN ('PARCEL', 'GEOMETRY', 'ND_TABLE', 'GEOMETRY')) a;
    insert /*+ append */ into results1 SELECT a.rowid1 poly_rowid, a.rowid2 point_rowid
    FROM TABLE (SDO_JOIN ('PARCEL', 'GEOMETRY', 'ND_TABLE', 'GEOMETRY')) a;

  • FPM Error: An internal error occured: String index out of range -4

    Hi All,
    I have imported the SSA BP to my EP (7.0), however, when I tried to create a custom FPM view & FPM Application for my custom WD application....the system will just prompt the error message "An internal error occured: String index out of range -4".
    Can anyone advise what could be the problem? and how to resolve it?
    Thanks in advance!
    Best Regards,
    SY

    Hi,
    You are trying to call the index of the String whose length is 4., but in the code you may have called from 1 to 4.. which should be 0 to 3.
    If you can show the stack trace of the exception, we can pinpoint the code / line.
    Just check the WD code..!!
    Thanks,
    Raags

  • Can not create temp file---- Error code:-2147215357 [CRSDK00000615] Error code name:internal

    Hello,
    While exporting Export reporting from BI4 getting exception
    Can not create temp file---- Error code:-2147215357 [CRSDK00000615] Error code name:internal
    In Trace Log I am getting
    com.crystaldecisions.xml.serialization.XMLWriter||Failed to create an object instance for CrystalReports.TextObjectFormat
    java.util.MissingResourceException: Can't find resource for bundle java.util.PropertyResourceBundle, key CrystalReports.TextObjectFormat
      at java.util.ResourceBundle.getObject(ResourceBundle.java:374)
      at java.util.ResourceBundle.getString(ResourceBundle.java:334)
    I tried following solution according to the all forums but still issue exist.
    Done changes mention in KB article In <Installation-dir-of-BO>\Common\4.0\java\CRConfig.XML we have to increase the JAVA heap MIN and Max size
              <JVMMaxHeap>64000000</JVMMaxHeap>          <JVMMinHeap>32000000</JVMMinHeap>
    Increase the value in the ReportApplicationServer Services in the CMC for "Number of database records to read when previewing or refreshing a report". The value -1 is for unlimited records but not recommended for performance.
    Check for temporary read write permission on server
    Using SDK library from C:\Program Files (x86)\SAP Business Objects\SAP BusinessObjects Enterprise XI 4.0\java\lib
    Can you please let me know is there anything missing.

    Hi,
    We face the same problem with some BI4 reports.
    The same report works well with the "Crystal Reports Viewers API", as used in Infoview, but not with the "Report Application Server (RAS) API".
    This error appears after some time working on a report. If we reproduce the same report, but from zero, no problem.
    Hope it can help.
    Ludovic.

  • I just installed Lightroom CC. When I try to open it, I get an error message: "An internal error has occurred.  Cannot create the required folder: ..."

    I just installed Lightroom CC. When I try to open it, I get an error message: "An internal error has occurred.  Cannot create the required folder: ..."

    Cannot create the required folder

Maybe you are looking for