Convert Native 16:9 SD to HD

Hello all,
I have a production that was shot a while ago in SD, but it was shot in native 16:9 SD (non anamorphic).
The client now needs the footage from this same production in HD because they are going to be running it on television. The TV Station requires all commercials submitted to be in HD.
So, it is possible to take this production in 720x480 at 16:9 and convert to HD? If so, what is the best process / practice to do this?
Thanks!

You can't make SD HD unless it's reshot. However, FCPX does a relatively outstanding job of upconverting (However, if there is text in the original, expect it to look softer - if you can, get the original SD video and add new titling). Create a new HD project by selecting Custom settings; choose a type of HD project (whatever the station's specs are!) Import your SD footage just as you would any other. FCPX will conform the SD to HD. I suggest you leave the SD pillarboxed since it wasn't anamorphic.  If FCPX tries to conform the SD footage to 16:9: select the clip and in the Video Inspector > Spatial Conform > set Fit. You can always scale down the SD footage in the HD space and get creative with a background and arrangement.

Similar Messages

  • Converting Native SQL to EJB ql

    Hi there
    Simple enough question, how would I go about converting the following native SQL query into EJB QL syntax. This by the way is a simple search on keywords attributed to a person.
    SELECT PersonId, COUNT(word)
    FROM keyword_table
    WHERE word = 'a' OR word = 'c' OR word = 'b'
    GROUP BY PersonId HAVING COUNT(word) <= 3
    ORDER BY COUNT(word) desc
    Note that PersonId is a foreign key joinColumn to a Person entity bean, Ideally i want to be returning person objects through a foreign key in my interest table using GROUP BY etc. I had something like this in mind:
    select Person p FROM Interest i WHERE i.Word = 'a' OR i.Word = 'c' OR i.Word = 'b'
    GROUP BY i.Person.PersonId HAVING COUNT(i.Word) <= 3
    ORDER BY COUNT(i.Word) desc
    Kind Regards
    - Vaughan Cross

    suppose there are two beans "Account" and "Transrecord" with 1-to-m relationship, the mapping table is "ACCOUNT"(PK is ACCID) and "TRANSRECORD"(FK is ACCID)
    The cmr field in Account is "transrecords" and the cmr field in Transrecord is "theAccount".
    For a SQL statement (this statment may be not that meaningful, but it is for testing the function of my translation tool):
    SELECT t.* FROM TRANSRECORD t , ACCOUNT A WHERE a.ACCID = t.ACCID
    >>
    one other way of translation would be
    Select object(t) from account a,transrecord t where a.accid = a.transrecords.accid
    select q1.*
    from TRANSRECORD q1, ACCOUNT q2
    where ( q2.\"ACCID\" IS NOT NULL ) and ( q2.\"ACCID\" = q1.\"ACCID\")");
    Since ACCID is the primary key of ACCOUNT table, so "q2.ACCID IS NOT NULL " is always true, the >>SQL statement is equivalent
    with the oringinal SQL statement.isn't it what is supposed to happen since you cannot have a record in the foreign key table without a corresponding record in the primary key table?
    I tested it in Transrecord bean as a defined EJB-QL in WSAD, the generated SQL statement after the >>deployment is:I am using WSAD 5.1, which file has the converted SQLs?
    sanjay.

  • Converting Native SQL to OPEN SQL

    Any inputs on how the following Native SQL can be converted to OPEN SQL.
    Especially self join of same table .
    EXEC SQL PERFORMING APPEND_ITAB.
        SELECT /+ ORDERED/
               A.VTYPE,          A.LIFNR,          G.MTNO,
               A.ASYTR,          A.DATAB,          A.DATBI,
               D.MAKTX,          F.NAME1,          G.COMP,
               C.PREF,           C.COMP,           E.MAKTX,
               C.QNTY,           C.UNIT,           B.MEINS,
               A.EKGRP,          A.SEQNO,          C.STGB,
               C.DATUV,          C.DATUB
          INTO :WA_MODULE-VTYPE, :WA_MODULE-LIFNR, :WA_MODULE-MATNR,
               :WA_MODULE-ASYTR, :WA_MODULE-DATAB, :WA_MODULE-DATBI,
               :WA_MODULE-MAKTX, :WA_MODULE-NAME1, :WA_SUB-UPGVC,
               :WA_SUB-PREF,     :WA_SUB-COMP,     :WA_SUB-MAKTX,
               :WA_SUB-QNTY,     :WA_SUB-UNIT,     :WA_SUB-MEINS,
               :WA_MODULE-EKGRP, :WA_MODULE-SEQNO, :WA_SUB-STGB,
               :WA_SUB-DATAB,    :WA_SUB-DATBI
          FROM ZTMM_ASSY_COST1 A, ZTBM_ABXDULDT G,
               ZTBM_ABXDULDT   C, MARA B,  MAKT D,  MAKT E, LFA1 F
         WHERE A.MANDT    =       :SY-MANDT
           AND A.VTYPE    BETWEEN :WA_VTYPE_F AND :WA_VTYPE_T
           AND A.MCODE    BETWEEN :WA_MCODE_F AND :WA_MCODE_T
           AND A.LIFNR    BETWEEN :WA_LIFNR_F AND :WA_LIFNR_T
           AND A.EKGRP    BETWEEN :WA_EKGRP_F AND :WA_EKGRP_T
           AND A.DATAB    <=      :P_DATUM
           AND A.DATBI    >=      :P_DATUM
           AND F.MANDT    =       A.MANDT
           AND F.LIFNR    =       A.LIFNR
           AND G.MANDT    =       A.MANDT
           AND G.MTNO     LIKE    CONCAT(CONCAT(A.VTYPE,A.MCODE),'%')
           AND G.MTNO     BETWEEN :WA_MATNR_F AND :WA_MATNR_T
           AND G.PLNT     =       :C_WERKS
           AND G.USAG     =       '2'
           AND G.ALTN     in      ('1','01')
           AND G.DATUV    <=      :P_DATUM
           AND G.DATUB    >=      :P_DATUM
           AND B.MANDT(+) =       G.MANDT
           AND B.MATNR(+) =       G.MTNO
           AND B.LVORM(+) =       ' '
           AND C.MANDT(+) =       G.MANDT
           AND C.MTNO(+)  =       G.COMP
           AND C.PLNT(+)  =       G.PLNT
           AND C.USAG(+)  =       '2'
           AND C.ALTN(+)  =       '01'
           AND C.DATUV(+) <=      :P_DATUM
           AND C.DATUB(+) >=      :P_DATUM
           AND D.MANDT(+) =       B.MANDT
           AND D.MATNR(+) =       B.MATNR
           AND D.SPRAS(+) =       :SY-LANGU
           AND E.MANDT(+) =       C.MANDT
           AND E.MATNR(+) =       C.COMP
           AND E.SPRAS(+) =       :SY-LANGU
         ORDER BY A.VTYPE, A.LIFNR, G.MTNO
      ENDEXEC.

    Then why don't you post the code you have. It would be a lot easier for us to improve that rather than try do redo what you have already done.
    Rob

  • Convert native EDI to EDI xml

    Hi All,
    Is there any API or easy method to convert a native EDI to EDI xml...and vice versa ???
    Regards,
    Praveen

    Praveen,
    Few clarification.
    1. Only design time experience is manual, irrespective of the tool you use design time experience always has to be manual. To address this design time experience we have plans to pre-seed some of the popular document type in Oracle B2B
    2. Runtime is seamless with out any manual steps.
    3. Anuj, For production purpose it is not practical to use any evaluation/Free EDI software. That can be done only for academic purpose.
    Please feel free to call me or mail me for question.
    - Ramesh

  • Converting Shared Services (Native) users to MSAD

    Hi All,
    We are on version 9.3.1.
    We have configured FDM with Shared Services and currently only use native users. This means that our FDM users are all authenticated via HSS.
    We are just about to configure an MSAD directory and convert native users to MSAD.
    We will also be configuring FDM with the same MSAD server.
    Does anyone know how FDM handles user migrations? Will FDM automatically pick up MSAD users once they are deleted from the native directory and converted to MSAD?
    Are there any additional steps we need to be aware of??
    Thanks for your help.
    Seb

    Hi,
    Im ok with the config but Im wondering if FDM will be clever enough to convert native users to MSAD.
    Say we have a HSS user called Test1 with a password of Password (the Use Target System field is checked when creating the user in FDM). This user is authenticated against Shared Services when logging on to FDM.
    During the conversation, native users will be deprovisioned and deleted from Shared Services and their provisioning info will be imported against the MSAD provider. At this stage FDM should not be impacted since FDM security is separate from HSS.
    Once I configure the MSAD provider in FDM, my Test1 user will have a password of say Feb2010.
    Will FDM automatically pick up these config changes? Will FDM security for this user remain unaffected?
    Thanks again for your help.
    Seb

  • Raw converter stopped working and is missing -- running CC and Windows Vista SP 2.

    I have reinstalled Photoshop twice from the cloud.  RAW converter still missing.  Please help.
    If I try to install the 7.1 Converter download, I get a failed message saying this update is not for me.  The 8.3 DNG converter installed, but the problem persists.

    ACR 8.3 is what you want, that is the current version for Photoshop CC. You can check the installed ACR version in Help > About Plug-In > Camera Raw (or open the CC desktop app and see if it reports Photoshop as up to date).
    You don't have any need for the DNG converter, since you have Photoshop CC and thus the very latest ACR version with all the newest camera support.
    (The DNG converter is a standalone application, completely independent from Photoshop. It converts native camera files to the universal DNG format, so that they can be read by older ACR versions that don't have direct native support for that camera).
    If ACR 8.3 is indeed installed, but not working as it should, or even missing, that's a different problem.

  • Converting AutoCAD to 3D pdf - text missing

    Hi
    Using AutoCAD2008, and experimenting with Adobe Acrobat 9 Pro extended (trial version). When converting the CAD file to a 3d pdf, all works well except the text in the CAD file is not included in the pdf file.  Any tips or tricks?
    Thanks
    Tom

    Acrobat 9 is no longer available, so there's limited support on these forums for issues with the Pro Extended feature set.
    Acrobat 9 Pro Extended can convert native 3D files into one of two formats - U3D and PRC. Only the PRC format supports PMI (dimensions, text labels, etc.) and the Acrobat 9 converter plugin for PRC does not support AutoCAD's own file formats, it only works with CATIA V5, I-DEAS, JT, NX (Unigraphics), Pro/ENGINEER and SolidWorks files.
    If you convert your model to one of the supported file types (including the PMI) then import that to Acrobat using the PRC "3D PMI and Views" setting it should work. There's also an option during PRC import to substitute fonts if they have problems importing.
    If you want a better workflow you will need to buy new software - the model translation engine previously in Acrobat 9 Pro Extended is now sold by Tetra4D as a commercial package that works with Acrobat X and XI. There's also the Hoops3D system from TechSoft that works as an SDK, so developers can write their own software tools.

  • How to convert IDOC to flat file in XI

    Hello SDNers
    I have a scenario IDOC --> XI  --> Flat file. My question is how to conver IDOC to flat file. At least there are two ways to do that:
    1) Define a flat structure in PI that reflects the IDOC structure, then using content conversion to convert the flat structure to flat file in hte receiver communication channel.
    2) There is a [document |https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/46759682-0401-0010-1791-bd1972bc0b8a] talking about using a generic ABAP mapping to map any IDOC to flat file.
    For the option 1, I don't want that way, because I would need to define a flat structure in PI for each IDOC which is too much effort. (I would have dozens of IDOC scenarios)
    The second one is very attractive. However the document is not complete to follow. Basically it does not explain how the inbound flat structure looks like. I guess the generic ABAP mapping is used to map any IDOC_XML structure to a flat structure, then in the file receiver communication channel to convert the flat structure to flat file format. But the document does not mention how the flat structure looks like. Has somebody tried this scenario? If yes, can you please let me know the steps to do in ESR (IR) and ID? Basically what structure the IDOC_XML should be mapped to using the generic ABAP mapping class?
    Or somebody has other ideas on how to convert IDOC to flat file?
    Thank you so much
    Eric

    > 1) You are saying that for Java mapping and abap mapping, the target data type (messag type) is just a dummy one, the real (XML) message the receiver will recieve is the one (stream) produced by the java or abap mapping. Is that correct?
    Definitely yes!
    >
    > 2) For the abap mapping option, I would define a dummy target data type. Do I need to do any content conversion in the receiver adapter (communication channel)?
    None wat so ever.The output of your Java Mapping will be the Native Idoc Format.
    >
    > 3) I tried with a dummy target data type as mentioned in my second post, can you see any clue in the error message what is wrong?
    Dats one thing I cant help much. Just make sure that the ABAP report is valid and take the help of a ABAP'er to debug what is going wrong. Not much of a ABAP guy, can read ABAP code, but cant write one myself
    Try to test the program standalone to see how it works. Maybe take some Idoc XML file as input and then dump the output to a .txt file and so on.
    Regards
    Bhavesh
    PS : All this is from what I have read of this guide. I have not convert Idoc XML to Native Idoc but have used this guide to convert Native Idoc to Idoc XML .

  • How to translate native Unicode to ascii Unicode

    I want to read in the user input and then store this input as ascii unicode into the database. Can anyone tell me how?!

    Wow that looks like one big hack after another. :)
    well.. you see..... I designed my database system with
    the user interface being the web browser. Because the
    Chinese words are 2-byte fonts, hence, there will be
    characters like ' and \ which are actually the
    keywards of SQL! so I solve that problem by encode the
    user input string (via POST) to big5 and then pass to
    my database. However!!!! There's a magic word of
    unicode \u92b4 not been displayed properly!! It just
    basically showed up as question mark.... Hence I
    thought about the native2ascii utility which convert
    native Chinese words into \u notation. Through this
    forum, I actually managed to find the answer, but yet
    another question arise again -- I discovered that it
    does not even show up properly after the \u notation
    process!! Within Java, all characters are 2 bytes (UTF-16), so there's nothing special about Chinese characters. The characters ' and \ are not subcomponents of Chinese characters or any other character. You just have to be careful when you load them into Java, that you specify the correct encoding.
    I think the problem is due to the inproper big5
    encoding... this is usually how it's supposed to be
    done:
    String big5Str = new
    String(myInputString.getBytes("8859_1"),"Big5");No this is not how it is supposed to be done. I see this idiom very frequently in this forum, and it is wrong. If you don't believe me, read the javadoc for the String constructor, and the javadoc for String.getBytes(). They say: "The behavior of this (constructor | method) when the given bytes are not valid in the given charset is unspecified."
    You seem to think that myInputString contains data in a specific encoding. It does not, it just contains a string of characters. If it was constructed with mismatched data/encoding, then that's where your problem lies.

  • Canon 5D Mark II, 30fps converting to 25fps

    Hi, could You please recommend me the best way to convert native 30p from Canon 5D MarkII,
    (using Compressor 3.0.5. or MPEG Streamclip), to 25p? After conversion the movement is jarky not fluent enough.
    Thank You
    Libor

    See my reply in this thread, where some standards conversion options are described in point 2:
    http://discussions.apple.com/thread.jspa?messageID=9531799&#9531799

  • Quicktime "plug-in failure" in safari 8.0.5

    I have OS X Yosemite 10.10.3 and get a quicktime "plug-in failure" in safari 8.0.5 when playing mov files at http://www.time-science.com/timescience/timelapse.asp

    So it's something unique to my setup
    I wonder how to fix it.
    Tried uninstalling adobe flash, restarting and reinstalling as I noticed that idea in some web searching
    This is what I get for the "Flowers":
    Sorenson Video 3 is a legacy codec that is only passively supported under Yosemite. QT 7 and the QT browser plug-in can still play this content. However, QT 7 Pro can only export to this compression format if the codec is turned back on by the user. (I.e., active QT export support of the "legacy" codecs was turned off under Lion.) Further, Sorenson Video 3 is neither QT X or QL "playback" compatible but can be converted natively by QT Player v10.4 if desired.
    Not sure if your error message is supposed to indicate that the QT browser plug-in is missing or is simply corrupted. Problem could also be in the way the web site is coded to play the files but I am not a site programmer so it would do me little good to examine the code use. On the other hand, I do already have a "Test" web site set up for a user trying to get his files to play in an older version of Safari so I added test pages for the Sorenson files from the site you referenced. See if you can play them from my alternate test pages. If they play there, then the problem may be site, otherwise, if they still don't play, you may need to reinstall the browser software.
    Alternate Test Web Pages

  • Bootcamp External Display Problem

    I7 3.4GHz, 16gb Ram, AMD Radeon 6970M
    I have come across a rather unique problem using bootcamp on my 27" 2011 iMac. I have had the computer for a while, and only recently downloaded windows 7 using bootcamp. i decided it would be cool to connect to my 1080p epson projector. However, when i set the resolution to 1080 on my mac, the projector screen got incredibly grainy and flashed on and off rapidly, making it entirely unusable. After some fiddling with with control panel, I discovered the problem was solved by changing the refresh rate to "30 Hertz Interlaced". All options above 30 had the same grainy problems. Well it was great to have a temporary fix, it is quite frustrating to have to use 30 Hrz, as i would much rather be using 60 (I can see the difference between the two). Any help would be greatly appreciated.
    What the screen is supposed to look like:
    http://prntscr.com/42mwei
    What it looks like when set to 60 Hertz(barely got a good picture because as i said it spasmodically flashes on and off):
    http://prntscr.com/42mye4

    what driver are you using?
    with the amd chip I never ever ever ever had success using any other driver then the apple bootcamp driver
    my imac is 21" 2011 6740 and I first installed windows 7 ultimate 64bit and later upgraded the install to win8 and then to win8.1
    and when I stuck with the apple bootcamp driver I never had problems with my 24" dell connected by a tb->dvi converter
    native res 1920*1080 75Hz

  • Which will execute first in File Adapter (parameter,Identifier,module)

    Hi,
    I have written a module for my sender file adapter, and choose FCC to parase my complex structure...here my doubt is whether adapter module will call first or FCC which is there in Identifier tab in file adapter?
    Regards,
    Irshad.

    Chandras sekhar,
    i have already seen that blog...
    could you plz read my message once again?
    Regards,
    Mansoor
    ya i got it..Call sap adapter module will store the message in send queue.
    just want to know which module is building the xi header whether it is same call sap adapter module or is there any specific module which will convert native message to xi message.
    Is call sap adapter module is the responsible for building the xi message header with the help of cpa lookup? if its so again confuse for me.....
    In File adapter we have 3 tabs one is parameter identifier and module...As u said first parameter tab will run as per FCC/ File message protocol then this parsed/content of text file will be input to the module tab .in this module tab we have custom modules and standard module these modules are executed in the same sequence as mentioned.
    what is the module name which converts native message to xi message?
    Regards,
    Mansoor

  • Help with configuring docx - PDF conversion needed

    Hi all,
    Problem is: pdf is created but it is not pdf, files are just renamed to .pdf
    I have following environment
    - centos 5.6
    - WLS 10.3.5.0
    - UCM 11gR1-11.1.1.5.0-idcprod1-110413T184243 (Build:7.3.2.182)
    - IBR Version:11gR1-11.1.1.5.0-idcprod1-110413T184243 (Build:7.3.2.182)
    - Enabled PDFExportConverter on IBR.
    - Checked "Convert to PDF using PDF Export" on "primary web rendition"
    - Configured IBR to convert doc and docx files to pdf.
    When i checkin new docx, following data is written to agent log:
    Log entry for conversion job '77':
    Starting to convert: Input File = '/opt/middleware/user_projects/domains/wcs_domain/ucm/ibr/vault/~temp/itdl267tempitlocal16200/77/881.docx' Output File = '/opt/middleware/user_projects/domains/wcs_domain/ucm/ibr/vault/~temp/itdl267tempitlocal16200/77/itdl267hki000884~1.docx' Conversion Type = 'Word' Content ID = 'ITDL267HKI000884' Title = 'test444'
    Info     11/1/11 8:27 AM     Log entry for conversion job '77':
    Started PDFExport step.
    Info     11/1/11 8:27 AM     Log entry for conversion job '77':
    Creating PDF
    Writing PDF Export resource file.
    Launching PDF Export
    Info     11/1/11 8:27 AM     Log entry for conversion job '77':
    Step PDFExport completed.
    Info     11/1/11 8:27 AM     Log entry for conversion job '77':
    Success
    Conversion history says Success.
    However, the file is not converted to pdf, it is only renamed to .pdf. If i download the file and rename it back to .docx it opens in office just fine.
    Thank you in advance,
    -hk
    Below is also the console output of operation:
    refperformance/6     11.01 08:27:23.609     IdcServer-4768     job progress for: 77 -- accepting job
    refperformance/6     11.01 08:27:23.611     IdcServer-4768     job progress for: 77 -- putting in preconversion queue
    refinery/6     11.01 08:27:23.686     IdcServer-4769     entered m_postConvertedJobsTable edit with action: COPYJOBS; on jobID:
    refperformance/6     11.01 08:27:27.904     Job_77_itdl267tempitlocal16200     job progress for: 77 -- starting conversion
    refsteplogic/6     11.01 08:27:27.905     Job_77_itdl267tempitlocal16200     Loading data for step: PDFExport
    refsteplogic/6     11.01 08:27:27.905     Job_77_itdl267tempitlocal16200     Secondary Conversion step: PDFExport
    refinery/6     11.01 08:27:27.906     Job_77_itdl267tempitlocal16200     starting conversion: WORD; is subconversion: false
    refinery/6     11.01 08:27:27.907     Job_77_itdl267tempitlocal16200     Script: TRUE
    refinery/6     11.01 08:27:27.907     Job_77_itdl267tempitlocal16200     Evaluated to: TRUE
    refinery/6     11.01 08:27:27.907     Job_77_itdl267tempitlocal16200     Script: ExecuteSubconversion<$subConversion="MSOffice",msOfficeApp="WORD"$>
    refinery/6     11.01 08:27:27.907     Job_77_itdl267tempitlocal16200     Evaluated to: ExecuteSubconversion
    refsteplogic/6     11.01 08:27:27.909     Job_77_itdl267tempitlocal16200     Loading data for step: ExecuteSubconversion
    refsteplogic/6     11.01 08:27:27.909     Job_77_itdl267tempitlocal16200     No timeout name was passed....using: DefaultTimeout
    refinery/6     11.01 08:27:27.909     Job_77_itdl267tempitlocal16200     Starting step: ExecuteSubconversion
    refsteplogic/6     11.01 08:27:27.909     Job_77_itdl267tempitlocal16200     Loading data for step: ExecuteSubconversion
    refsteplogic/6     11.01 08:27:27.909     Job_77_itdl267tempitlocal16200     No timeout name was passed....using: DefaultTimeout
    refinery/6     11.01 08:27:27.910     Job_77_itdl267tempitlocal16200     Script: ignoreStatus
    refinery/6     11.01 08:27:27.910     Job_77_itdl267tempitlocal16200     Evaluated to: ignoreStatus
    refinery/6     11.01 08:27:27.910     Job_77_itdl267tempitlocal16200     Script: <$subConversion$>
    refinery/6     11.01 08:27:27.910     Job_77_itdl267tempitlocal16200     Evaluated to: MSOffice
    refinery/6     11.01 08:27:27.910     Job_77_itdl267tempitlocal16200     starting conversion: MSOFFICE; is subconversion: true
    refinery/6     11.01 08:27:27.910     Job_77_itdl267tempitlocal16200     Script: TRUE
    refinery/6     11.01 08:27:27.910     Job_77_itdl267tempitlocal16200     Evaluated to: TRUE
    refinery/6     11.01 08:27:27.911     Job_77_itdl267tempitlocal16200     Script: ExecuteSubconversion<$stepsToWebviewable="MSOfficeToPostscript, PostscriptToPDF, ExecuteSubconversion<$subConversion='CreateThumbnail'$>", subConversion="UniversalConversion", supportsOIX="true", supportsXX="true", supportsOO="true", supportsIX="true"$>
    refinery/6     11.01 08:27:27.911     Job_77_itdl267tempitlocal16200     Evaluated to: ExecuteSubconversion
    refsteplogic/6     11.01 08:27:27.911     Job_77_itdl267tempitlocal16200     Loading data for step: ExecuteSubconversion
    refsteplogic/6     11.01 08:27:27.911     Job_77_itdl267tempitlocal16200     No timeout name was passed....using: DefaultTimeout
    refinery/6     11.01 08:27:27.911     Job_77_itdl267tempitlocal16200     Starting step: ExecuteSubconversion
    refsteplogic/6     11.01 08:27:27.911     Job_77_itdl267tempitlocal16200     Loading data for step: ExecuteSubconversion
    refsteplogic/6     11.01 08:27:27.911     Job_77_itdl267tempitlocal16200     No timeout name was passed....using: DefaultTimeout
    refinery/6     11.01 08:27:27.911     Job_77_itdl267tempitlocal16200     Script: ignoreStatus
    refinery/6     11.01 08:27:27.911     Job_77_itdl267tempitlocal16200     Evaluated to: ignoreStatus
    refinery/6     11.01 08:27:27.912     Job_77_itdl267tempitlocal16200     Script: <$subConversion$>
    refinery/6     11.01 08:27:27.912     Job_77_itdl267tempitlocal16200     Evaluated to: UniversalConversion
    refinery/6     11.01 08:27:27.912     Job_77_itdl267tempitlocal16200     starting conversion: UNIVERSALCONVERSION; is subconversion: true
    refinery/6     11.01 08:27:27.912     Job_77_itdl267tempitlocal16200     Script: TRUE
    refinery/6     11.01 08:27:27.912     Job_77_itdl267tempitlocal16200     Evaluated to: TRUE
    refsteplogic/6     11.01 08:27:27.912     Job_77_itdl267tempitlocal16200     processing Direct PDF Export
    refsteplogic/6     11.01 08:27:27.912     Job_77_itdl267tempitlocal16200     PrimaryWebviewable is 'ExportPDF' with current stepsToWebviewable set '' setting subConversion to 'Direct PDFExport' and setting conversionSet to 'true'
    refsteplogic/6     11.01 08:27:27.912     Job_77_itdl267tempitlocal16200     XML rendition steps not defined
    refinery/6     11.01 08:27:27.912     Job_77_itdl267tempitlocal16200     Script: <$include universal_conversion$>
    refinery/6     11.01 08:27:27.912     Job_77_itdl267tempitlocal16200     Evaluated to: ExecuteSubconversion
    refinery/6     11.01 08:27:27.912     Job_77_itdl267tempitlocal16200     
    refinery/6     11.01 08:27:27.912     Job_77_itdl267tempitlocal16200                    
    refinery/6     11.01 08:27:27.912     Job_77_itdl267tempitlocal16200               ,
    refsteplogic/6     11.01 08:27:27.913     Job_77_itdl267tempitlocal16200     Loading data for step: ExecuteSubconversion
    refsteplogic/6     11.01 08:27:27.913     Job_77_itdl267tempitlocal16200     No timeout name was passed....using: DefaultTimeout
    refinery/6     11.01 08:27:27.913     Job_77_itdl267tempitlocal16200     Starting step: ExecuteSubconversion
    refsteplogic/6     11.01 08:27:27.913     Job_77_itdl267tempitlocal16200     Loading data for step: ExecuteSubconversion
    refsteplogic/6     11.01 08:27:27.913     Job_77_itdl267tempitlocal16200     No timeout name was passed....using: DefaultTimeout
    refinery/6     11.01 08:27:27.913     Job_77_itdl267tempitlocal16200     Script: ignoreStatus
    refinery/6     11.01 08:27:27.913     Job_77_itdl267tempitlocal16200     Evaluated to: ignoreStatus
    refinery/6     11.01 08:27:27.913     Job_77_itdl267tempitlocal16200     Script: <$subConversion$>
    refinery/6     11.01 08:27:27.913     Job_77_itdl267tempitlocal16200     Evaluated to: Direct PDFExport
    refinery/6     11.01 08:27:27.914     Job_77_itdl267tempitlocal16200     starting conversion: DIRECT PDFEXPORT; is subconversion: true
    refinery/6     11.01 08:27:27.914     Job_77_itdl267tempitlocal16200     Script: true
    refinery/6     11.01 08:27:27.914     Job_77_itdl267tempitlocal16200     Evaluated to: true
    refinery/6     11.01 08:27:27.914     Job_77_itdl267tempitlocal16200     Script: PDFExport, ExecuteSubconversion<$subConversion='CreateThumbnail', supportsIX='true'$>
    refinery/6     11.01 08:27:27.914     Job_77_itdl267tempitlocal16200     Evaluated to: PDFExport, ExecuteSubconversion
    refsteplogic/6     11.01 08:27:27.914     Job_77_itdl267tempitlocal16200     Loading data for step: PDFExport
    refinery/6     11.01 08:27:27.914     Job_77_itdl267tempitlocal16200     Starting step: PDFExport
    refsteplogic/6     11.01 08:27:27.914     Job_77_itdl267tempitlocal16200     Loading data for step: PDFExport
    refinery/6     11.01 08:27:27.915     Job_77_itdl267tempitlocal16200     Script: onErrorFail, producesRequiredWebviewable
    refinery/6     11.01 08:27:27.915     Job_77_itdl267tempitlocal16200     Evaluated to: onErrorFail, producesRequiredWebviewable
    refinery/6     11.01 08:27:27.916     Job_77_itdl267tempitlocal16200     export parameter 'preferoitrendering' was overridden with value: false
    refinery/6     11.01 08:27:27.916     Job_77_itdl267tempitlocal16200     export parameter 'dbshowheadings' was overridden with value: false
    refinery/6     11.01 08:27:27.916     Job_77_itdl267tempitlocal16200     export parameter 'defaultmarginbottom' was overridden with value: 1440
    refinery/6     11.01 08:27:27.916     Job_77_itdl267tempitlocal16200     export parameter 'defaultheight' was overridden with value: 11
    refinery/6     11.01 08:27:27.916     Job_77_itdl267tempitlocal16200     export parameter 'timezone' was overridden with value: 0
    refinery/6     11.01 08:27:27.917     Job_77_itdl267tempitlocal16200     export parameter 'watermarkpath' was skipped, no value set
    refinery/6     11.01 08:27:27.917     Job_77_itdl267tempitlocal16200     export parameter 'ssdirection' was overridden with value: AcrossandDown
    refinery/6     11.01 08:27:27.917     Job_77_itdl267tempitlocal16200     export parameter 'ssshowgridlines' was overridden with value: false
    refinery/6     11.01 08:27:27.917     Job_77_itdl267tempitlocal16200     export parameter 'compress' was overridden with value: true
    refinery/6     11.01 08:27:27.917     Job_77_itdl267tempitlocal16200     export parameter 'dolinearization' was overridden with value: false
    refinery/6     11.01 08:27:27.917     Job_77_itdl267tempitlocal16200     export parameter 'defaultwidth' was overridden with value: 8.5
    refinery/6     11.01 08:27:27.917     Job_77_itdl267tempitlocal16200     export parameter 'embedfonts' was overridden with value: true
    refinery/6     11.01 08:27:27.917     Job_77_itdl267tempitlocal16200     export parameter 'defaultmarginleft' was overridden with value: 1440
    refinery/6     11.01 08:27:27.917     Job_77_itdl267tempitlocal16200     export parameter 'usedocpagesettings' was overridden with value: true
    refinery/6     11.01 08:27:27.917     Job_77_itdl267tempitlocal16200     export parameter 'defaultmarginright' was overridden with value: 1440
    refinery/6     11.01 08:27:27.917     Job_77_itdl267tempitlocal16200     export parameter 'defaultmargintop' was overridden with value: 1440
    refinery/6     11.01 08:27:27.917     Job_77_itdl267tempitlocal16200     export parameter 'dbshowgridlines' was overridden with value: false
    refinery/6     11.01 08:27:27.917     Job_77_itdl267tempitlocal16200     export parameter 'fontdirectory' was overridden with value: /usr/share/fonts/msttcorefonts/
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     export parameter 'exportstartpage' was overridden with value: 1
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     export parameter 'ssshowheadings' was overridden with value: false
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     extra px parameters: null
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     contents of /opt/middleware/user_projects/domains/wcs_domain/ucm/ibr/vault/~temp/itdl267tempitlocal16200/77/px.cfg
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     maxssdbpageheight     0
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     exportendpage     0
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     watermarkiotype     unix
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     defaultmarginright     1440
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     ssshowgridlines     false
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     mimeheader     standard
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     enablewatermark     false
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     outputid     FI_PDFA
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     timezone     0
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     fallbackformat     FI_TEXT
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     ssscalexhigh     1
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     tempdir     /opt/middleware/user_projects/domains/wcs_domain/ucm/ibr/vault/~temp/itdl267tempitlocal16200/77/
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     ssscalepercent     100
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     readbuffersize     2
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     dolinearization     false
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     graphicoutputdpi     72
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     graphicheightlimit     0
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     dbshowheadings     false
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     lzwcompression     enabled
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     compress     true
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     defaultmarginleft     1440
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     jpegcompression     enabled
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     defaultinputcharset     utf8
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     ssdirection     AcrossandDown
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     dbfittopage     NoScaling
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     embedfonts     true
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     watermarkposition     offsetfromcenter
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     horizontalpos     1440
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     defaultprintfontface     Arial
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     whattoexport     all
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     graphicwidthlimit     0
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     defaultprintfonttype     0
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     verticalpos     1440
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     tempbuffersize     2048
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     defaultprintfontheight     20
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     dbshowgridlines     false
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     usedocpagesettings     true
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     defaultmargintop     1440
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     ssscalexwide     1
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     defaultmarginbottom     1440
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     preferoitrendering     false
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     mapbuffersize     8192
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     showhiddenssdata     no
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     unmappablechar     0x002A
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     ssfittopage     NoScaling
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     isodateformatting     no
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     fiflags     SCCUT_FI_EXTENDEDTEST
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     fontdirectory     /usr/share/fonts/msttcorefonts/
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     exportstartpage     1
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     watermarkscalepercent     100
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     ssshowheadings     false
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     maxssdbpagewidth     0
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     watermarkscale     ScaletoPercent
    refinery/6     11.01 08:27:27.919     Job_77_itdl267tempitlocal16200     Launching exsimple with: /opt/middleware/user_projects/domains/wcs_domain/ucm/ibr/vault/~temp/itdl267tempitlocal16200/77/881.docx /opt/middleware/user_projects/domains/wcs_domain/ucm/ibr/vault/~temp/itdl267tempitlocal16200/77/itdl267hki000884~1.pdf /opt/middleware/user_projects/domains/wcs_domain/ucm/ibr/vault/~temp/itdl267tempitlocal16200/77/px.cfg
    refinery/6     11.01 08:27:27.919     Job_77_itdl267tempitlocal16200     working directory: /opt/middleware/Oracle_ECM1/ucm/idc/components/ContentAccess-linux/linux/lib/contentaccess/
    refinery/6     11.01 08:27:27.919     Job_77_itdl267tempitlocal16200     There are 3 environment vars set for this process
    refinery/6     11.01 08:27:27.919     Job_77_itdl267tempitlocal16200          LD_LIBRARY_PATH=/opt/middleware/jrockit_160_24_D1.1.2-4/jre/lib/i386/jrockit:/opt/middleware/jrockit_160_24_D1.1.2-4/jre/lib/i386:/opt/middleware/jrockit_160_24_D1.1.2-4/jre/../lib/i386:/opt/middleware/Oracle_ECM1/ucm/idc/components/EmailMetadata/lib:/opt/middleware/Oracle_ECM1/ucm/idc/components/NativeOsUtils/lib/linux/7.2.1.0:/opt/middleware/Oracle_ECM1/ucm/idc/components/SiteStudio/lib:/opt/middleware/Oracle_ECM1/ucm/idc/components/SiteStudioPublisher/lib:/opt/middleware/patch_wls1035/profiles/default/native:/opt/middleware/patch_oepe1050/profiles/default/native:/opt/middleware/patch_ocp360/profiles/default/native:/opt/middleware/jrockit_160_24_D1.1.2-4/jre/lib/i386/jrockit:/opt/middleware/jrockit_160_24_D1.1.2-4/jre/lib/i386:/opt/middleware/jrockit_160_24_D1.1.2-4/jre/../lib/i386:/opt/middleware/patch_wls1035/profiles/default/native:/opt/middleware/patch_oepe1050/profiles/default/native:/opt/middleware/patch_ocp360/profiles/default/native:/opt/middleware/wlserver_10.3/server/native/linux/i686:/opt/middleware/wlserver_10.3/server/native/linux/i686/oci920_8:/opt/middleware/wlserver_10.3/server/native/linux/i686:/opt/middleware/wlserver_10.3/server/native/linux/i686/oci920_8:/opt/middleware/Oracle_ECM1/ucm/idc/components/ContentAccess-linux/linux/lib/contentaccess:/opt/middleware/Oracle_ECM1/ucm/idc/components/ContentAccess-linux/linux/lib/contentaccess/
    refinery/6     11.01 08:27:27.919     Job_77_itdl267tempitlocal16200          GDFONTPATH=/usr/share/fonts/msttcorefonts/
    refinery/6     11.01 08:27:27.919     Job_77_itdl267tempitlocal16200          PATH=/opt/middleware/Oracle_ECM1/ucm/idc/components/ContentAccess-linux/linux/lib/contentaccess/
    refinery/6     11.01 08:27:27.919     Job_77_itdl267tempitlocal16200     min time = 120000
    refinery/6     11.01 08:27:27.919     Job_77_itdl267tempitlocal16200     max time = 300000
    refinery/6     11.01 08:27:27.919     Job_77_itdl267tempitlocal16200     time factor = 2
    refinery/6     11.01 08:27:27.919     Job_77_itdl267tempitlocal16200     (adjusted) time allowed 120000
    refinery/6     11.01 08:27:27.919     Job_77_itdl267tempitlocal16200     appending to launch cmd: '/opt/middleware/user_projects/domains/wcs_domain/ucm/ibr/vault/~temp/itdl267tempitlocal16200/77/881.docx'
    refinery/6     11.01 08:27:27.919     Job_77_itdl267tempitlocal16200     appending to launch cmd: '/opt/middleware/user_projects/domains/wcs_domain/ucm/ibr/vault/~temp/itdl267tempitlocal16200/77/itdl267hki000884~1.pdf'
    refinery/6     11.01 08:27:27.919     Job_77_itdl267tempitlocal16200     appending to launch cmd: '/opt/middleware/user_projects/domains/wcs_domain/ucm/ibr/vault/~temp/itdl267tempitlocal16200/77/px.cfg'
    refinery/6     11.01 08:27:27.920     CmdLineConversion_77_exsimple     /opt/middleware/Oracle_ECM1/ucm/idc/components/ContentAccess-linux/linux/lib/contentaccess//exsimple /opt/middleware/user_projects/domains/wcs_domain/ucm/ibr/vault/~temp/itdl267tempitlocal16200/77/881.docx /opt/middleware/user_projects/domains/wcs_domain/ucm/ibr/vault/~temp/itdl267tempitlocal16200/77/itdl267hki000884~1.pdf /opt/middleware/user_projects/domains/wcs_domain/ucm/ibr/vault/~temp/itdl267tempitlocal16200/77/px.cfg
    refinery/6     11.01 08:27:28.090     TaskLauncher_CmdLineConversion_77_exsimple_stdout     Export successful: 1 output file(s) created.
    refinery/6     11.01 08:27:28.090     Job_77_itdl267tempitlocal16200     exsimple return value: 0; out file: /opt/middleware/user_projects/domains/wcs_domain/ucm/ibr/vault/~temp/itdl267tempitlocal16200/77/itdl267hki000884~1.pdf; isValid: true
    refinery/6     11.01 08:27:28.093     Job_77_itdl267tempitlocal16200     Finished step: PDFExport
    refsteplogic/6     11.01 08:27:28.093     Job_77_itdl267tempitlocal16200     Loading data for step: ExecuteSubconversion
    refsteplogic/6     11.01 08:27:28.093     Job_77_itdl267tempitlocal16200     No timeout name was passed....using: DefaultTimeout
    refinery/6     11.01 08:27:28.093     Job_77_itdl267tempitlocal16200     Starting step: ExecuteSubconversion
    refsteplogic/6     11.01 08:27:28.093     Job_77_itdl267tempitlocal16200     Loading data for step: ExecuteSubconversion
    refsteplogic/6     11.01 08:27:28.093     Job_77_itdl267tempitlocal16200     No timeout name was passed....using: DefaultTimeout
    refinery/6     11.01 08:27:28.093     Job_77_itdl267tempitlocal16200     Script: ignoreStatus
    refinery/6     11.01 08:27:28.093     Job_77_itdl267tempitlocal16200     Evaluated to: ignoreStatus
    refinery/6     11.01 08:27:28.093     Job_77_itdl267tempitlocal16200     Script: <$subConversion$>
    refinery/6     11.01 08:27:28.093     Job_77_itdl267tempitlocal16200     Evaluated to: CreateThumbnail
    refinery/6     11.01 08:27:28.093     Job_77_itdl267tempitlocal16200     starting conversion: CREATETHUMBNAIL; is subconversion: true
    refinery/6     11.01 08:27:28.093     Job_77_itdl267tempitlocal16200     Script: <$isTrue(CreateThumbnails)$>
    refinery/6     11.01 08:27:28.093     Job_77_itdl267tempitlocal16200     Evaluated to: 0
    refinery/6     11.01 08:27:28.094     Job_77_itdl267tempitlocal16200     finished conversion: CREATETHUMBNAIL; is subconversion: true
    refinery/6     11.01 08:27:28.094     Job_77_itdl267tempitlocal16200     Finished step: ExecuteSubconversion
    refinery/6     11.01 08:27:28.094     Job_77_itdl267tempitlocal16200     finished conversion: DIRECT PDFEXPORT; is subconversion: true
    refinery/6     11.01 08:27:28.094     Job_77_itdl267tempitlocal16200     Finished step: ExecuteSubconversion
    refinery/6     11.01 08:27:28.094     Job_77_itdl267tempitlocal16200     finished conversion: UNIVERSALCONVERSION; is subconversion: true
    refinery/6     11.01 08:27:28.094     Job_77_itdl267tempitlocal16200     Finished step: ExecuteSubconversion
    refinery/6     11.01 08:27:28.094     Job_77_itdl267tempitlocal16200     finished conversion: MSOFFICE; is subconversion: true
    refinery/6     11.01 08:27:28.094     Job_77_itdl267tempitlocal16200     Finished step: ExecuteSubconversion
    refsteplogic/6     11.01 08:27:28.094     Job_77_itdl267tempitlocal16200     Loading data for step: PDFExport
    refinery/6     11.01 08:27:28.094     Job_77_itdl267tempitlocal16200     Steps completed for Job: 77
    refinery/6     11.01 08:27:28.094     Job_77_itdl267tempitlocal16200     PDFExport: 1: /opt/middleware/user_projects/domains/wcs_domain/ucm/ibr/vault/~temp/itdl267tempitlocal16200/77/itdl267hki000884~1.pdf
    refinery/6     11.01 08:27:28.095     Job_77_itdl267tempitlocal16200     dConversionState = Converted
    refinery/6     11.01 08:27:28.095     Job_77_itdl267tempitlocal16200     dConvMessage = Success
    refinery/6     11.01 08:27:28.095     Job_77_itdl267tempitlocal16200     dFormat = application/pdf
    refinery/6     11.01 08:27:28.095     Job_77_itdl267tempitlocal16200     dWebExtension = pdf
    refinery/6     11.01 08:27:28.095     Job_77_itdl267tempitlocal16200     RefineryConvertedFile = itdl267hki000884~1.pdf
    refinery/6     11.01 08:27:28.095     Job_77_itdl267tempitlocal16200     RefineryPrimaryConvertedPath = /opt/middleware/user_projects/domains/wcs_domain/ucm/ibr/vault/~temp/itdl267tempitlocal16200/77/itdl267hki000884~1.pdf
    refinery/6     11.01 08:27:28.095     Job_77_itdl267tempitlocal16200     AdditionalRenditions =
    refinery/6     11.01 08:27:28.095     Job_77_itdl267tempitlocal16200     finished conversion: WORD; is subconversion: false
    refperformance/6     11.01 08:27:28.095     Job_77_itdl267tempitlocal16200     job progress for: 77 -- finished conversion
    (internal)/6     11.01 08:27:32.906     QueueLockId_77     Refinery tryied to return key 'AdditionalRenditions' but value was null
    refperformance/6     11.01 08:27:32.906     QueueLockId_77     job progress for: 77 -- moving to postconverted queue
    refinery/6     11.01 08:27:32.907     QueueLockId_77     entered m_postConvertedJobsTable edit with action: ADDJOB; on jobID: 77
    Edited by: hessu on 1.11.2011 8:50

    What exactly you mean with pdf drivers.
    I have not configured "Distiller Engine" in any way, since configuration guide says:
    http://download.oracle.com/docs/cd/E21764_01/doc.1111/e10800/c03_pdfi_all.htm
    "PDFExportConverter      Enables Inbound Refinery to use Oracle OutsideIn PDF Export to convert native formats directly to PDF on multiple platforms without the use of any 3rdParty >tools."br,
    -hk
    i remember configuring distiller engine ghostscript with earlier 10g version...
    Edited by: hessu on 4.11.2011 8:44

  • How to get maximum number of results using content presenter taskflow

    Hello Friends,
    I am using 11.1.1.6,
    Below is the query is getting executed while content presenter taskflow get executed, Though I have more than 100 results in UCM, I am always getting only 25. Is there anywhere I can configure to fetch maximum number of results ? Though I set maxResults = 200, It always returns 25.
    SELECT * FROM ora:t:IDC:GlobalProfile WHERE ora:p:xRegionDefinition = 'NEWS_REG_DEF' AND ora:p:xArchiveFlag='Yes' and ora:p:xDocumentSortDate > TIMESTAMP '2014-01-01T00:00:00.000+00:00' and ora:p:xDocumentSortDate < TIMESTAMP '2014-12-31T00:00:00.000+00:00' ORDER BY ora:p:xDocumentSortDate DESC
    Page Def.xml : here the taskflow entries configured in page def xml file
    <taskFlow id="doclibcontentpresenter2"
                  taskFlowId="/oracle/webcenter/doclib/view/jsf/taskflows/presenter/contentPresenter.xml#doclib-content-presenter"
                  activation="deferred"
                  xmlns="http://xmlns.oracle.com/adf/controller/binding"
                  Refresh="ifNeeded"
                  RefreshCondition="#{requestScope.pRefreshArchiveNewsSction='Y'}">
          <parameters>
            <parameter id="taskFlowInstId" value="${'myinst'}"/>
            <parameter id="datasourceType" value="${'dsTypeQueryExpression'}"/>
            <parameter id="datasource"
                       value="#{backingBeanScope.ArchiveBean.contentQuery}"/>
            <parameter id="templateCategory" value="${''}"/>
            <parameter id="templateView" value="${'templates.archive.list'}"/>
            <parameter id="regionTemplate" value="${'false'}"/>
            <parameter id="maxResults" value="200"/>
          </parameters>
        </taskFlow>

    Hi Dan,
    Here is the detailed logs
    searchcache/6
    02.19 15:21:14.656
    SearchCache
    Approximately 0% of the available cache space is used.
    >searchquery/7
    02.19 15:23:53.642
    IdcServer-14885
    Query by [email protected] from CIS
    >searchquery/6
    02.19 15:23:53.643
    IdcServer-14885
    preparedQueryText: ( ((xRegionDefinition <matches> `NEWS_REG_DEF`) <and> ((xArchiveFlag <matches> `Yes`) <and> ((xDocumentSortDate>`2013-01-01 00:00:00`) <and> (xDocumentSortDate<`2013-12-31 00:00:00`)))) )
    >searchquery/6
    02.19 15:23:53.643
    IdcServer-14885
    Setting substr to other operator conv flag: '( ((xRegionDefinition <matches> `NEWS_REG_DEF`) <and> ((xArchiveFlag <matches> `Yes`) <and> ((xDocumentSortDate>`2013-01-01 00:00:00`) <and> (xDocumentSortDate<`2013-12-31 00:00:00`)))) )'
    >searchqueryparse/6
    02.19 15:23:53.643
    IdcServer-14885
    Into parse of UniversalSearchQuery for: ( ((xRegionDefinition <matches> `NEWS_REG_DEF`) <and> ((xArchiveFlag <matches> `Yes`) <and> ((xDocumentSortDate>`2013-01-01 00:00:00`) <and> (xDocumentSortDate<`2013-12-31 00:00:00`)))) )
    >searchqueryparse/6
    02.19 15:23:53.643
    IdcServer-14885
    Into parseQueryEx of UniversalSearchQueryParser for queryArr : ( ((xRegionDefinition <matches> `NEWS_REG_DEF`) <and> ((xArchiveFlag <matches> `Yes`) <and> ((xDocumentSortDate>`2013-01-01 00:00:00`) <and> (xDocumentSortDate<`2013-12-31 00:00:00`)))) )
    >searchquery/6
    02.19 15:23:53.643
    IdcServer-14885
    Parsing universal query: '( ((xRegionDefinition <matches> `NEWS_REG_DEF`) <and> ((xArchiveFlag <matches> `Yes`) <and> ((xDocumentSortDate>`2013-01-01 00:00:00`) <and> (xDocumentSortDate<`2013-12-31 00:00:00`)))) )'
    >searchquery/6
    02.19 15:23:53.643
    IdcServer-14885
    Processing callback on query value 'NEWS_REG_DEF'
    >searchqueryparse/6
    02.19 15:23:53.643
    IdcServer-14885
    Into appendClauseElement CommonSearchConfig with operator : equals value : NEWS_REG_DEF
    >searchqueryparse/6
    02.19 15:23:53.643
    IdcServer-14885
    Processing actions list size : 1 on the input value : xRegionDefinition with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.643
    IdcServer-14885
    Processing action number : 0 : prefix on the input value : xRegionDefinition with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.643
    IdcServer-14885
    Processing actions list size : 2 on the input value : NEWS_REG_DEF with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.643
    IdcServer-14885
    Processing action number : 0 : upperCase on the input value : NEWS_REG_DEF with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.643
    IdcServer-14885
    Processing action number : 1 : escape on the input value : NEWS_REG_DEF with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.643
    IdcServer-14885
    Processed escape with '' resulting in value :NEWS_REG_DEF
    >searchqueryparse/6
    02.19 15:23:53.643
    IdcServer-14885
    Processed escape with _ resulting in value :NEWS_REG_DEF
    >searchqueryparse/6
    02.19 15:23:53.643
    IdcServer-14885
    Processed escape with \- resulting in value :NEWS_REG_DEF
    >searchqueryparse/6
    02.19 15:23:53.643
    IdcServer-14885
    Processed escape with \_ resulting in value :NEWS\_REG\_DEF
    >searchqueryparse/6
    02.19 15:23:53.643
    IdcServer-14885
    Processed escape with \, resulting in value :NEWS\_REG\_DEF
    >searchqueryparse/6
    02.19 15:23:53.643
    IdcServer-14885
    Into appendClauseElement CommonSearchConfig with operator : and value :
    >searchquery/6
    02.19 15:23:53.643
    IdcServer-14885
    Processing callback on query value 'Yes'
    >searchqueryparse/6
    02.19 15:23:53.643
    IdcServer-14885
    Into appendClauseElement CommonSearchConfig with operator : equals value : Yes
    >searchqueryparse/6
    02.19 15:23:53.643
    IdcServer-14885
    Processing actions list size : 1 on the input value : xArchiveFlag with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.643
    IdcServer-14885
    Processing action number : 0 : prefix on the input value : xArchiveFlag with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.643
    IdcServer-14885
    Processing actions list size : 2 on the input value : Yes with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.643
    IdcServer-14885
    Processing action number : 0 : upperCase on the input value : Yes with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.644
    IdcServer-14885
    Processing action number : 1 : escape on the input value : YES with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.644
    IdcServer-14885
    Processed escape with '' resulting in value :YES
    >searchqueryparse/6
    02.19 15:23:53.644
    IdcServer-14885
    Processed escape with _ resulting in value :YES
    >searchqueryparse/6
    02.19 15:23:53.644
    IdcServer-14885
    Processed escape with \- resulting in value :YES
    >searchqueryparse/6
    02.19 15:23:53.644
    IdcServer-14885
    Processed escape with \_ resulting in value :YES
    >searchqueryparse/6
    02.19 15:23:53.644
    IdcServer-14885
    Processed escape with \, resulting in value :YES
    >searchqueryparse/6
    02.19 15:23:53.644
    IdcServer-14885
    Into appendClauseElement CommonSearchConfig with operator : and value :
    >searchquery/6
    02.19 15:23:53.644
    IdcServer-14885
    Processing callback on query value '2013-01-01 00:00:00'
    >searchqueryparse/6
    02.19 15:23:53.644
    IdcServer-14885
    Into appendClauseElement CommonSearchConfig with operator : dateGreater value : 2012/12/31 18:00:00
    >searchqueryparse/6
    02.19 15:23:53.644
    IdcServer-14885
    Into appendClauseElement CommonSearchConfig with operator : and value :
    >searchquery/6
    02.19 15:23:53.644
    IdcServer-14885
    Processing callback on query value '2013-12-31 00:00:00'
    >searchqueryparse/6
    02.19 15:23:53.644
    IdcServer-14885
    Into appendClauseElement CommonSearchConfig with operator : dateLess value : 2013/12/30 18:00:00
    >searchquery/6
    02.19 15:23:53.644
    IdcServer-14885
    Converted native query: '((( SDATA(sdxRegionDefinition LIKE 'NEWS\_REG\_DEF') )  and  (( SDATA(sdxArchiveFlag LIKE 'YES') )  and  (( SDATA(xDocumentSortDate > '2012/12/31 18:00:00') )  and  ( SDATA(xDocumentSortDate < '2013/12/30 18:00:00') )))))'
    >searchquery/7
    02.19 15:23:53.644
    IdcServer-14885
    assigning connection
    >searchquery/6
    02.19 15:23:53.644
    IdcServer-14885
    !csMonitorActiveDbConnections,1
    >searchquery/6
    02.19 15:23:53.644
    IdcServer-14885
    Connection is added to active connections with key of '[ACTIVE] ExecuteThread: '35' for queue: 'weblogic.kernel.Default (self-tuning)''.
    >searchquery/6
    02.19 15:23:53.644
    IdcServer-14885
    query(live): (((((((((((( SDATA(sdxRegionDefinition LIKE 'NEWS\_REG\_DEF') )  and  (( SDATA(sdxArchiveFlag LIKE 'YES') )  and  (( SDATA(xDocumentSortDate > '2012/12/31 18:00:00') )  and  ( SDATA(xDocumentSortDate < '2013/12/30 18:00:00') )))))))))))))) [1,51] sort(xDocumentSortDate DESC)
    >search/6
    02.19 15:23:53.688
    IdcServer-14885
    Start parsing drill down fields with SAX...
    >search/6
    02.19 15:23:53.691
    IdcServer-14885
    Completed parsing 1 groups.
    >search/7
    02.19 15:23:53.692
    IdcServer-14885
    ResultSetInterface results: <ctx_result_set><hitlist><hit><sdata name="DID">11489</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006063</sdata><score>100</score></hit><hit><sdata name="DID">16132</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006403</sdata><score>100</score></hit><hit><sdata name="DID">13513</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006591</sdata><score>100</score></hit><hit><sdata name="DID">11319</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006003</sdata><score>100</score></hit><hit><sdata name="DID">17043</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004050</sdata><score>100</score></hit><hit><sdata name="DID">16477</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006407</sdata><score>100</score></hit><hit><sdata name="DID">16162</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006593</sdata><score>100</score></hit><hit><sdata name="DID">16010</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006399</sdata><score>100</score></hit><hit><sdata name="DID">10524</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-005609</sdata><score>100</score></hit><hit><sdata name="DID">10777</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-005601</sdata><score>100</score></hit><hit><sdata name="DID">10508</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-005600</sdata><score>100</score></hit><hit><sdata name="DID">10476</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-005585</sdata><score>100</score></hit><hit><sdata name="DID">12427</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006397</sdata><score>100</score></hit><hit><sdata name="DID">16333</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-005580</sdata><score>100</score></hit><hit><sdata name="DID">17080</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004051</sdata><score>100</score></hit><hit><sdata name="DID">15926</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006482</sdata><score>100</score></hit><hit><sdata name="DID">16857</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003963</sdata><score>100</score></hit><hit><sdata name="DID">16895</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003964</sdata><score>100</score></hit><hit><sdata name="DID">16487</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006481</sdata><score>100</score></hit><hit><sdata name="DID">12431</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006485</sdata><score>100</score></hit><hit><sdata name="DID">16813</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003977</sdata><score>100</score></hit><hit><sdata name="DID">9569</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-005342</sdata><score>100</score></hit><hit><sdata name="DID">16814</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003978</sdata><score>100</score></hit><hit><sdata name="DID">17045</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004056</sdata><score>100</score></hit><hit><sdata name="DID">12246</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006478</sdata><score>100</score></hit><hit><sdata name="DID">15911</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-005652</sdata><score>100</score></hit><hit><sdata name="DID">16775</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003999</sdata><score>100</score></hit><hit><sdata name="DID">11925</sdata><sdata name="SDDDOCNAME">VMOHSKEND05482000776</sdata><score>100</score></hit><hit><sdata name="DID">15639</sdata><sdata name="SDDDOCNAME">VMOHSKEND05482000763</sdata><score>100</score></hit><hit><sdata name="DID">16865</sdata><sdata name="SDDDOCNAME">VMOHSKEND05482000770</sdata><score>100</score></hit><hit><sdata name="DID">10100</sdata><sdata name="SDDDOCNAME">VMOHSKEND05482000741</sdata><score>100</score></hit><hit><sdata name="DID">17116</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004054</sdata><score>100</score></hit><hit><sdata name="DID">9015</sdata><sdata name="SDDDOCNAME">VMOHSKEND05482000801</sdata><score>100</score></hit><hit><sdata name="DID">16474</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006061</sdata><score>100</score></hit></hitlist><count>34</count><groups sdata="SDDRILLDOWN"><group value="Document,insight_application1,"><count>34</count></group></groups></ctx_result_set>
    >search/7
    02.19 15:23:53.692
    IdcServer-14885
    Trace:
    search/7
    02.19 15:23:53.692
    IdcServer-14885
    ctx_query.result_set start time:15:23:53.64
    search/7
    02.19 15:23:53.692
    IdcServer-14885
    ctx_query.result_set   end time:15:23:53.66
    search/7
    02.19 15:23:53.692
    IdcServer-14885
    Result parsing start time: 15:23:53.66
    search/7
    02.19 15:23:53.692
    IdcServer-14885
    Result parsing   end time: 15:23:53.67
    search/7
    02.19 15:23:53.692
    IdcServer-14885
    SELECT dDocName,dDocTitle,dDocType,dSecurityGroup,dInDate,xArchiveFlag,xHidden,xWebsiteObjectType,xWebsiteSection,xDontShowInListsForWebsites,dRevisionID,dDocCreator,dWebExtension,xUpdateContentType,xSubmitForApproval,xFilesAllowed,xRegionDefinition,xWCWorkflowAssignment,dDocCreatedDate,dCreateDate,xWCTags,dOriginalName,xNewsType,dFormat,dPublishType,dDocFunction,dDocAuthor,VaultFileSize,dDocLastModifier,xWebFlag,dOutDate,dGif,dExtension,dDocLastModifiedDate,xClbraRoleList,xInhibitUpdate,URL,AlternateFormat,WebFileSize,xClbraUserList,dDocOwner,xReadOnly,dRevClassID,xWCWorkflowApproverUserList,xCollectionID,xComments,xPartitionId,dRevLabel,xStorageRule,dFullTextFormat,xWebsites,xDocumentSortDate,dRendition2,dRendition1,dID,xReadyForReplication,dDocAccount,xReadMoreURL,xIdcProfile,xClbraAliasList,otsFormat,otsCharset,otsLanguage FROM IdcText2 WHERE dID IN (11489,16132,13513,11319,17043,16477,16162,16010,10524,10777,10508,10476,12427,16333,17080,15926,16857,16895,16487,12431,16813,9569,16814,17045,12246,15911,16775,11925,15639,16865,10100,17116,9015,16474)
    search/7
    02.19 15:23:53.692
    IdcServer-14885
    Meta query start time: 15:23:53.67
    search/7
    02.19 15:23:53.692
    IdcServer-14885
    Meta query end time:15:23:53.67
    >searchquery/6
    02.19 15:23:53.692
    IdcServer-14885
    !csMonitorActiveDbConnections,0
    >searchquery/6
    02.19 15:23:53.692
    IdcServer-14885
    Connection is removed from active connections with key of '[ACTIVE] ExecuteThread: '35' for queue: 'weblogic.kernel.Default (self-tuning)''.
    >searchquery/6
    02.19 15:23:53.692
    IdcServer-14885
    release pool connection
    >searchquery/6
    02.19 15:23:53.708
    IdcServer-14885
    Execution time is 65 ms.
    >searchquery/7
    02.19 15:23:53.945
    IdcServer-14886
    Query by [email protected] from CIS
    >searchquery/6
    02.19 15:23:53.946
    IdcServer-14886
    preparedQueryText: ( ((xRegionDefinition <matches> `NEWS_REG_DEF`) <and> ((xArchiveFlag <matches> `Yes`) <and> ((xDocumentSortDate>`2013-01-01 00:00:00`) <and> (xDocumentSortDate<`2013-12-31 00:00:00`)))) )
    >searchquery/6
    02.19 15:23:53.946
    IdcServer-14886
    Setting substr to other operator conv flag: '( ((xRegionDefinition <matches> `NEWS_REG_DEF`) <and> ((xArchiveFlag <matches> `Yes`) <and> ((xDocumentSortDate>`2013-01-01 00:00:00`) <and> (xDocumentSortDate<`2013-12-31 00:00:00`)))) )'
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Into parse of UniversalSearchQuery for: ( ((xRegionDefinition <matches> `NEWS_REG_DEF`) <and> ((xArchiveFlag <matches> `Yes`) <and> ((xDocumentSortDate>`2013-01-01 00:00:00`) <and> (xDocumentSortDate<`2013-12-31 00:00:00`)))) )
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Into parseQueryEx of UniversalSearchQueryParser for queryArr : ( ((xRegionDefinition <matches> `NEWS_REG_DEF`) <and> ((xArchiveFlag <matches> `Yes`) <and> ((xDocumentSortDate>`2013-01-01 00:00:00`) <and> (xDocumentSortDate<`2013-12-31 00:00:00`)))) )
    >searchquery/6
    02.19 15:23:53.946
    IdcServer-14886
    Parsing universal query: '( ((xRegionDefinition <matches> `NEWS_REG_DEF`) <and> ((xArchiveFlag <matches> `Yes`) <and> ((xDocumentSortDate>`2013-01-01 00:00:00`) <and> (xDocumentSortDate<`2013-12-31 00:00:00`)))) )'
    >searchquery/6
    02.19 15:23:53.946
    IdcServer-14886
    Processing callback on query value 'NEWS_REG_DEF'
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Into appendClauseElement CommonSearchConfig with operator : equals value : NEWS_REG_DEF
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Processing actions list size : 1 on the input value : xRegionDefinition with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Processing action number : 0 : prefix on the input value : xRegionDefinition with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Processing actions list size : 2 on the input value : NEWS_REG_DEF with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Processing action number : 0 : upperCase on the input value : NEWS_REG_DEF with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Processing action number : 1 : escape on the input value : NEWS_REG_DEF with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Processed escape with '' resulting in value :NEWS_REG_DEF
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Processed escape with _ resulting in value :NEWS_REG_DEF
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Processed escape with \- resulting in value :NEWS_REG_DEF
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Processed escape with \_ resulting in value :NEWS\_REG\_DEF
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Processed escape with \, resulting in value :NEWS\_REG\_DEF
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Into appendClauseElement CommonSearchConfig with operator : and value :
    >searchquery/6
    02.19 15:23:53.946
    IdcServer-14886
    Processing callback on query value 'Yes'
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Into appendClauseElement CommonSearchConfig with operator : equals value : Yes
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Processing actions list size : 1 on the input value : xArchiveFlag with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Processing action number : 0 : prefix on the input value : xArchiveFlag with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Processing actions list size : 2 on the input value : Yes with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Processing action number : 0 : upperCase on the input value : Yes with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Processing action number : 1 : escape on the input value : YES with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Processed escape with '' resulting in value :YES
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Processed escape with _ resulting in value :YES
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Processed escape with \- resulting in value :YES
    >searchqueryparse/6
    02.19 15:23:53.947
    IdcServer-14886
    Processed escape with \_ resulting in value :YES
    >searchqueryparse/6
    02.19 15:23:53.947
    IdcServer-14886
    Processed escape with \, resulting in value :YES
    >searchqueryparse/6
    02.19 15:23:53.947
    IdcServer-14886
    Into appendClauseElement CommonSearchConfig with operator : and value :
    >searchquery/6
    02.19 15:23:53.947
    IdcServer-14886
    Processing callback on query value '2013-01-01 00:00:00'
    >searchqueryparse/6
    02.19 15:23:53.947
    IdcServer-14886
    Into appendClauseElement CommonSearchConfig with operator : dateGreater value : 2012/12/31 18:00:00
    >searchqueryparse/6
    02.19 15:23:53.947
    IdcServer-14886
    Into appendClauseElement CommonSearchConfig with operator : and value :
    >searchquery/6
    02.19 15:23:53.947
    IdcServer-14886
    Processing callback on query value '2013-12-31 00:00:00'
    >searchqueryparse/6
    02.19 15:23:53.947
    IdcServer-14886
    Into appendClauseElement CommonSearchConfig with operator : dateLess value : 2013/12/30 18:00:00
    >searchquery/6
    02.19 15:23:53.947
    IdcServer-14886
    Converted native query: '((( SDATA(sdxRegionDefinition LIKE 'NEWS\_REG\_DEF') )  and  (( SDATA(sdxArchiveFlag LIKE 'YES') )  and  (( SDATA(xDocumentSortDate > '2012/12/31 18:00:00') )  and  ( SDATA(xDocumentSortDate < '2013/12/30 18:00:00') )))))'
    >searchquery/7
    02.19 15:23:53.947
    IdcServer-14886
    assigning connection
    >searchquery/6
    02.19 15:23:53.947
    IdcServer-14886
    !csMonitorActiveDbConnections,1
    >searchquery/6
    02.19 15:23:53.947
    IdcServer-14886
    Connection is added to active connections with key of '[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)''.
    >searchquery/6
    02.19 15:23:53.947
    IdcServer-14886
    query(live): (((((((((((( SDATA(sdxRegionDefinition LIKE 'NEWS\_REG\_DEF') )  and  (( SDATA(sdxArchiveFlag LIKE 'YES') )  and  (( SDATA(xDocumentSortDate > '2012/12/31 18:00:00') )  and  ( SDATA(xDocumentSortDate < '2013/12/30 18:00:00') )))))))))))))) [1,51] sort(xDocumentSortDate DESC)
    >search/6
    02.19 15:23:53.992
    IdcServer-14886
    Start parsing drill down fields with SAX...
    >search/6
    02.19 15:23:53.993
    IdcServer-14886
    Completed parsing 1 groups.
    >search/7
    02.19 15:23:53.994
    IdcServer-14886
    ResultSetInterface results: <ctx_result_set><hitlist><hit><sdata name="DID">11489</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006063</sdata><score>100</score></hit><hit><sdata name="DID">16132</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006403</sdata><score>100</score></hit><hit><sdata name="DID">13513</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006591</sdata><score>100</score></hit><hit><sdata name="DID">11319</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006003</sdata><score>100</score></hit><hit><sdata name="DID">17043</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004050</sdata><score>100</score></hit><hit><sdata name="DID">16477</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006407</sdata><score>100</score></hit><hit><sdata name="DID">16162</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006593</sdata><score>100</score></hit><hit><sdata name="DID">16010</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006399</sdata><score>100</score></hit><hit><sdata name="DID">10524</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-005609</sdata><score>100</score></hit><hit><sdata name="DID">10777</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-005601</sdata><score>100</score></hit><hit><sdata name="DID">10508</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-005600</sdata><score>100</score></hit><hit><sdata name="DID">10476</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-005585</sdata><score>100</score></hit><hit><sdata name="DID">12427</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006397</sdata><score>100</score></hit><hit><sdata name="DID">16333</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-005580</sdata><score>100</score></hit><hit><sdata name="DID">17080</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004051</sdata><score>100</score></hit><hit><sdata name="DID">15926</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006482</sdata><score>100</score></hit><hit><sdata name="DID">16857</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003963</sdata><score>100</score></hit><hit><sdata name="DID">16895</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003964</sdata><score>100</score></hit><hit><sdata name="DID">16487</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006481</sdata><score>100</score></hit><hit><sdata name="DID">12431</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006485</sdata><score>100</score></hit><hit><sdata name="DID">16813</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003977</sdata><score>100</score></hit><hit><sdata name="DID">9569</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-005342</sdata><score>100</score></hit><hit><sdata name="DID">16814</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003978</sdata><score>100</score></hit><hit><sdata name="DID">17045</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004056</sdata><score>100</score></hit><hit><sdata name="DID">12246</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006478</sdata><score>100</score></hit><hit><sdata name="DID">15911</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-005652</sdata><score>100</score></hit><hit><sdata name="DID">16775</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003999</sdata><score>100</score></hit><hit><sdata name="DID">11925</sdata><sdata name="SDDDOCNAME">VMOHSKEND05482000776</sdata><score>100</score></hit><hit><sdata name="DID">15639</sdata><sdata name="SDDDOCNAME">VMOHSKEND05482000763</sdata><score>100</score></hit><hit><sdata name="DID">16865</sdata><sdata name="SDDDOCNAME">VMOHSKEND05482000770</sdata><score>100</score></hit><hit><sdata name="DID">10100</sdata><sdata name="SDDDOCNAME">VMOHSKEND05482000741</sdata><score>100</score></hit><hit><sdata name="DID">17116</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004054</sdata><score>100</score></hit><hit><sdata name="DID">9015</sdata><sdata name="SDDDOCNAME">VMOHSKEND05482000801</sdata><score>100</score></hit><hit><sdata name="DID">16474</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006061</sdata><score>100</score></hit></hitlist><count>34</count><groups sdata="SDDRILLDOWN"><group value="Document,insight_application1,"><count>34</count></group></groups></ctx_result_set>
    >search/7
    02.19 15:23:53.994
    IdcServer-14886
    Trace:
    search/7
    02.19 15:23:53.994
    IdcServer-14886
    ctx_query.result_set start time:15:23:53.95
    search/7
    02.19 15:23:53.994
    IdcServer-14886
    ctx_query.result_set   end time:15:23:53.96
    search/7
    02.19 15:23:53.994
    IdcServer-14886
    Result parsing start time: 15:23:53.96
    search/7
    02.19 15:23:53.994
    IdcServer-14886
    Result parsing   end time: 15:23:53.97
    search/7
    02.19 15:23:53.994
    IdcServer-14886
    SELECT dDocName,dDocTitle,dDocType,dSecurityGroup,dInDate,xArchiveFlag,xHidden,xWebsiteObjectType,xWebsiteSection,xDontShowInListsForWebsites,dRevisionID,dDocCreator,dWebExtension,xUpdateContentType,xSubmitForApproval,xFilesAllowed,xRegionDefinition,xWCWorkflowAssignment,dDocCreatedDate,dCreateDate,xWCTags,dOriginalName,xNewsType,dFormat,dPublishType,dDocFunction,dDocAuthor,VaultFileSize,dDocLastModifier,xWebFlag,dOutDate,dGif,dExtension,dDocLastModifiedDate,xClbraRoleList,xInhibitUpdate,URL,AlternateFormat,WebFileSize,xClbraUserList,dDocOwner,xReadOnly,dRevClassID,xWCWorkflowApproverUserList,xCollectionID,xComments,xPartitionId,dRevLabel,xStorageRule,dFullTextFormat,xWebsites,xDocumentSortDate,dRendition2,dRendition1,dID,xReadyForReplication,dDocAccount,xReadMoreURL,xIdcProfile,xClbraAliasList,otsFormat,otsCharset,otsLanguage FROM IdcText2 WHERE dID IN (11489,16132,13513,11319,17043,16477,16162,16010,10524,10777,10508,10476,12427,16333,17080,15926,16857,16895,16487,12431,16813,9569,16814,17045,12246,15911,16775,11925,15639,16865,10100,17116,9015,16474)
    search/7
    02.19 15:23:53.994
    IdcServer-14886
    Meta query start time: 15:23:53.97
    search/7
    02.19 15:23:53.994
    IdcServer-14886
    Meta query end time:15:23:53.98
    >searchquery/6
    02.19 15:23:53.995
    IdcServer-14886
    !csMonitorActiveDbConnections,0
    >searchquery/6
    02.19 15:23:53.995
    IdcServer-14886
    Connection is removed from active connections with key of '[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)''.
    >searchquery/6
    02.19 15:23:53.995
    IdcServer-14886
    release pool connection
    >searchquery/6
    02.19 15:23:54.007
    IdcServer-14886
    Execution time is 61 ms.
    >searchquery/7
    02.19 15:23:54.313
    IdcServer-14887
    Query by [email protected] from CIS
    >searchquery/6
    02.19 15:23:54.313
    IdcServer-14887
    preparedQueryText: ( ((xRegionDefinition <matches> `NEWS_REG_DEF`) <and> ((xArchiveFlag <matches> `Yes`) <and> ((xDocumentSortDate>`2014-01-01 00:00:00`) <and> (xDocumentSortDate<`2014-12-31 00:00:00`)))) )
    >searchquery/6
    02.19 15:23:54.313
    IdcServer-14887
    Setting substr to other operator conv flag: '( ((xRegionDefinition <matches> `NEWS_REG_DEF`) <and> ((xArchiveFlag <matches> `Yes`) <and> ((xDocumentSortDate>`2014-01-01 00:00:00`) <and> (xDocumentSortDate<`2014-12-31 00:00:00`)))) )'
    >searchqueryparse/6
    02.19 15:23:54.313
    IdcServer-14887
    Into parse of UniversalSearchQuery for: ( ((xRegionDefinition <matches> `NEWS_REG_DEF`) <and> ((xArchiveFlag <matches> `Yes`) <and> ((xDocumentSortDate>`2014-01-01 00:00:00`) <and> (xDocumentSortDate<`2014-12-31 00:00:00`)))) )
    >searchqueryparse/6
    02.19 15:23:54.313
    IdcServer-14887
    Into parseQueryEx of UniversalSearchQueryParser for queryArr : ( ((xRegionDefinition <matches> `NEWS_REG_DEF`) <and> ((xArchiveFlag <matches> `Yes`) <and> ((xDocumentSortDate>`2014-01-01 00:00:00`) <and> (xDocumentSortDate<`2014-12-31 00:00:00`)))) )
    >searchquery/6
    02.19 15:23:54.313
    IdcServer-14887
    Parsing universal query: '( ((xRegionDefinition <matches> `NEWS_REG_DEF`) <and> ((xArchiveFlag <matches> `Yes`) <and> ((xDocumentSortDate>`2014-01-01 00:00:00`) <and> (xDocumentSortDate<`2014-12-31 00:00:00`)))) )'
    >searchquery/6
    02.19 15:23:54.313
    IdcServer-14887
    Processing callback on query value 'NEWS_REG_DEF'
    >searchqueryparse/6
    02.19 15:23:54.313
    IdcServer-14887
    Into appendClauseElement CommonSearchConfig with operator : equals value : NEWS_REG_DEF
    >searchqueryparse/6
    02.19 15:23:54.313
    IdcServer-14887
    Processing actions list size : 1 on the input value : xRegionDefinition with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:54.313
    IdcServer-14887
    Processing action number : 0 : prefix on the input value : xRegionDefinition with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:54.313
    IdcServer-14887
    Processing actions list size : 2 on the input value : NEWS_REG_DEF with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Processing action number : 0 : upperCase on the input value : NEWS_REG_DEF with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Processing action number : 1 : escape on the input value : NEWS_REG_DEF with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Processed escape with '' resulting in value :NEWS_REG_DEF
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Processed escape with _ resulting in value :NEWS_REG_DEF
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Processed escape with \- resulting in value :NEWS_REG_DEF
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Processed escape with \_ resulting in value :NEWS\_REG\_DEF
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Processed escape with \, resulting in value :NEWS\_REG\_DEF
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Into appendClauseElement CommonSearchConfig with operator : and value :
    >searchquery/6
    02.19 15:23:54.314
    IdcServer-14887
    Processing callback on query value 'Yes'
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Into appendClauseElement CommonSearchConfig with operator : equals value : Yes
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Processing actions list size : 1 on the input value : xArchiveFlag with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Processing action number : 0 : prefix on the input value : xArchiveFlag with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Processing actions list size : 2 on the input value : Yes with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Processing action number : 0 : upperCase on the input value : Yes with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Processing action number : 1 : escape on the input value : YES with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Processed escape with '' resulting in value :YES
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Processed escape with _ resulting in value :YES
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Processed escape with \- resulting in value :YES
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Processed escape with \_ resulting in value :YES
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Processed escape with \, resulting in value :YES
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Into appendClauseElement CommonSearchConfig with operator : and value :
    >searchquery/6
    02.19 15:23:54.314
    IdcServer-14887
    Processing callback on query value '2014-01-01 00:00:00'
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Into appendClauseElement CommonSearchConfig with operator : dateGreater value : 2013/12/31 18:00:00
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Into appendClauseElement CommonSearchConfig with operator : and value :
    >searchquery/6
    02.19 15:23:54.314
    IdcServer-14887
    Processing callback on query value '2014-12-31 00:00:00'
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Into appendClauseElement CommonSearchConfig with operator : dateLess value : 2014/12/30 18:00:00
    >searchquery/6
    02.19 15:23:54.314
    IdcServer-14887
    Converted native query: '((( SDATA(sdxRegionDefinition LIKE 'NEWS\_REG\_DEF') )  and  (( SDATA(sdxArchiveFlag LIKE 'YES') )  and  (( SDATA(xDocumentSortDate > '2013/12/31 18:00:00') )  and  ( SDATA(xDocumentSortDate < '2014/12/30 18:00:00') )))))'
    >searchquery/7
    02.19 15:23:54.314
    IdcServer-14887
    assigning connection
    >searchquery/6
    02.19 15:23:54.314
    IdcServer-14887
    !csMonitorActiveDbConnections,1
    >searchquery/6
    02.19 15:23:54.314
    IdcServer-14887
    Connection is added to active connections with key of '[ACTIVE] ExecuteThread: '21' for queue: 'weblogic.kernel.Default (self-tuning)''.
    >searchquery/6
    02.19 15:23:54.315
    IdcServer-14887
    query(live): (((((((((((( SDATA(sdxRegionDefinition LIKE 'NEWS\_REG\_DEF') )  and  (( SDATA(sdxArchiveFlag LIKE 'YES') )  and  (( SDATA(xDocumentSortDate > '2013/12/31 18:00:00') )  and  ( SDATA(xDocumentSortDate < '2014/12/30 18:00:00') )))))))))))))) [1,51] sort(xDocumentSortDate DESC)
    >search/6
    02.19 15:23:54.365
    IdcServer-14887
    Start parsing drill down fields with SAX...
    >search/6
    02.19 15:23:54.367
    IdcServer-14887
    Completed parsing 1 groups.
    >search/7
    02.19 15:23:54.369
    IdcServer-14887
    ResultSetInterface results: <ctx_result_set><hitlist><hit><sdata name="DID">17207</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004318</sdata><score>100</score></hit><hit><sdata name="DID">17281</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004289</sdata><score>100</score></hit><hit><sdata name="DID">17105</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004316</sdata><score>100</score></hit><hit><sdata name="DID">17244</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004252</sdata><score>100</score></hit><hit><sdata name="DID">16997</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004251</sdata><score>100</score></hit><hit><sdata name="DID">17034</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004233</sdata><score>100</score></hit><hit><sdata name="DID">17239</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004219</sdata><score>100</score></hit><hit><sdata name="DID">17178</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004186</sdata><score>100</score></hit><hit><sdata name="DID">17112</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004150</sdata><score>100</score></hit><hit><sdata name="DID">17276</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004148</sdata><score>100</score></hit><hit><sdata name="DID">17193</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004137</sdata><score>100</score></hit><hit><sdata name="DID">17070</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004132</sdata><score>100</score></hit><hit><sdata name="DID">17195</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004123</sdata><score>100</score></hit><hit><sdata name="DID">17275</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004116</sdata><score>100</score></hit><hit><sdata name="DID">17189</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004080</sdata><score>100</score></hit><hit><sdata name="DID">16993</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004089</sdata><score>100</score></hit><hit><sdata name="DID">17032</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004070</sdata><score>100</score></hit><hit><sdata name="DID">16784</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004035</sdata><score>100</score></hit><hit><sdata name="DID">16268</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006848</sdata><score>100</score></hit><hit><sdata name="DID">16866</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004028</sdata><score>100</score></hit><hit><sdata name="DID">16940</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004027</sdata><score>100</score></hit><hit><sdata name="DID">16823</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004025</sdata><score>100</score></hit><hit><sdata name="DID">16731</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004024</sdata><score>100</score></hit><hit><sdata name="DID">17132</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004023</sdata><score>100</score></hit><hit><sdata name="DID">16645</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004020</sdata><score>100</score></hit><hit><sdata name="DID">16678</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004002</sdata><score>100</score></hit><hit><sdata name="DID">16642</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004000</sdata><score>100</score></hit><hit><sdata name="DID">16610</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-008921</sdata><score>100</score></hit><hit><sdata name="DID">16726</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003959</sdata><score>100</score></hit><hit><sdata name="DID">16663</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003952</sdata><score>100</score></hit><hit><sdata name="DID">15967</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003823</sdata><score>100</score></hit><hit><sdata name="DID">15878</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003821</sdata><score>100</score></hit><hit><sdata name="DID">16277</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003820</sdata><score>100</score></hit><hit><sdata name="DID">15624</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-008149</sdata><score>100</score></hit><hit><sdata name="DID">16178</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003607</sdata><score>100</score></hit><hit><sdata name="DID">16765</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003764</sdata><score>100</score></hit><hit><sdata name="DID">16691</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003766</sdata><score>100</score></hit><hit><sdata name="DID">16827</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003499</sdata><score>100</score></hit><hit><sdata name="DID">16303</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003498</sdata><score>100</score></hit><hit><sdata name="DID">16696</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003756</sdata><score>100</score></hit><hit><sdata name="DID">16937</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003806</sdata><score>100</score></hit><hit><sdata name="DID">15976</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003381</sdata><score>100</score></hit><hit><sdata name="DID">16364</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003807</sdata><score>100</score></hit><hit><sdata name="DID">15832</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003803</sdata><score>100</score></hit><hit><sdata name="DID">17285</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004041</sdata><score>100</score></hit><hit><sdata name="DID">16639</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003972</sdata><score>100</score></hit><hit><sdata name="DID">16820</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003628</sdata><score>100</score></hit><hit><sdata name="DID">15183</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-007721</sdata><score>100</score></hit><hit><sdata name="DID">15180</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-007720</sdata><score>100</score></hit><hit><sdata name="DID">15640</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-007722</sdata><score>100</score></hit><hit><sdata name="DID">15631</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-007719</sdata><score>100</score></hit></hitlist><count>66</count><groups sdata="SDDRILLDOWN"><group value="Document,insight_application1,"><count>66</count></group></groups></ctx_result_set>
    >search/7
    02.19 15:23:54.369
    IdcServer-14887
    Trace:
    search/7
    02.19 15:23:54.369
    IdcServer-14887
    ctx_query.result_set start time:15:23:54.31
    search/7
    02.19 15:23:54.369
    IdcServer-14887
    ctx_query.result_set   end time:15:23:54.32
    search/7
    02.19 15:23:54.369
    IdcServer-14887
    Result parsing start time: 15:23:54.33
    search/7
    02.19 15:23:54.369
    IdcServer-14887
    Result parsing   end time: 15:23:54.35
    search/7
    02.19 15:23:54.369
    IdcServer-14887
    SELECT dDocName,dDocTitle,dDocType,dSecurityGroup,dInDate,xArchiveFlag,xHidden,xWebsiteObjectType,xWebsiteSection,xDontShowInListsForWebsites,dRevisionID,dDocCreator,dWebExtension,xUpdateContentType,xSubmitForApproval,xFilesAllowed,xRegionDefinition,xWCWorkflowAssignment,dDocCreatedDate,dCreateDate,xWCTags,dOriginalName,xNewsType,dFormat,dPublishType,dDocFunction,dDocAuthor,VaultFileSize,dDocLastModifier,xWebFlag,dOutDate,dGif,dExtension,dDocLastModifiedDate,xClbraRoleList,xInhibitUpdate,URL,AlternateFormat,WebFileSize,xClbraUserList,dDocOwner,xReadOnly,dRevClassID,xWCWorkflowApproverUserList,xCollectionID,xComments,xPartitionId,dRevLabel,xStorageRule,dFullTextFormat,xWebsites,xDocumentSortDate,dRendition2,dRendition1,dID,xReadyForReplication,dDocAccount,xReadMoreURL,xIdcProfile,xClbraAliasList,otsFormat,otsCharset,otsLanguage FROM IdcText2 WHERE dID IN (17207,17281,17105,17244,16997,17034,17239,17178,17112,17276,17193,17070,17195,17275,17189,16993,17032,16784,16268,16866,16940,16823,16731,17132,16645,16678,16642,16610,16726,16663,15967,15878,16277,15624,16178,16765,16691,16827,16303,16696,16937,15976,16364,15832,17285,16639,16820,15183,15180,15640,15631)
    search/7
    02.19 15:23:54.369
    IdcServer-14887
    Meta query start time: 15:23:54.35
    search/7
    02.19 15:23:54.369
    IdcServer-14887
    Meta query end time:15:23:54.35
    >searchquery/6
    02.19 15:23:54.369
    IdcServer-14887
    !csMonitorActiveDbConnections,0
    >searchquery/6
    02.19 15:23:54.369
    IdcServer-14887
    Connection is removed from active connections with key of '[ACTIVE] ExecuteThread: '21' for queue: 'weblogic.kernel.Default (self-tuning)''.
    >searchquery/6
    02.19 15:23:54.369
    IdcServer-14887
    release pool connection
    >searchquery/6
    02.19 15:23:54.382
    IdcServer-14887
    Execution time is 69 ms.
    >searchquery/7
    02.19 15:23:54.662
    IdcServer-14888
    Query by [email protected] from CIS
    >searchquery/6
    02.19 15:23:54.662
    IdcServer-14888
    preparedQueryText: ( ((xRegionDefinition <matches> `NEWS_REG_DEF`) <and> ((xArchiveFlag <matches> `Yes`) <and> ((xDocumentSortDate>`2014-01-01 00:00:00`) <and> (xDocumentSortDate<`2014-12-31 00:00:00`)))) )
    >searchquery/6
    02.19 15:23:54.662
    IdcServer-14888
    Setting substr to other operator conv flag: '( ((xRegionDefinition <matches> `NEWS_REG_DEF`) <and> ((xArchiveFlag <matches> `Yes`) <and> ((xDocumentSortDate>`2014-01-01 00:00:00`) <and> (xDocumentSortDate<`2014-12-31 00:00:00`)))) )'
    >searchqueryparse/6
    02.19 15:23:54.662
    IdcServer-14888
    Into parse of UniversalSearchQuery for: ( ((xRegionDefinition <matches> `NEWS_REG_DEF`) <and> ((xArchiveFlag <matches> `Yes`) <and> ((xDocumentSortDate>`2014-01-01 00:00:00`) <and> (xDocumentSortDate<`2014-12-31 00:00:00`)))) )
    >searchqueryparse/6
    02.19 15:23:54.662
    IdcServer-14888
    Into parseQueryEx of UniversalSearchQueryParser for queryArr : ( ((xRegionDefinition <matches> `NEWS_REG_DEF`) <and> ((xArchiveFlag <matches> `Yes`) <and> ((xDocumentSortDate>`2014-01-01 00:00:00`) <and> (xDocumentSortDate<`2014-12-31 00:00:00`)))) )
    >searchquery/6
    02.19 15:23:54.662
    IdcServer-14888
    Parsing universal query:

Maybe you are looking for