Can I fetch LOB data directly using OCIStmtFetch2 instead of lob locator?

Is it possible to fetch Lob data using OCIStmtFetch2 instead of fetching lob locator? I think using lob locator can increase the round-trip between client and oracle server. Is it right?

Senthil,
have a look at JDeveloper 10g. You can use UIX instead of JSP simply by changing the file extension from jsp to uix when creating new forms. The form bean used is oracle.adf.controller.struts.forms.BindingContainerActionForm which is a generic form.
Frank

Similar Messages

  • Reg: fetch the data by using item_id which is retuned by In line View Query

    Hi all,
    create table xxc_transactions(type_id number,trx_line_id number ,item_id number,org_id number);
    insert into xxc_transactions values(null,null,null,null);
    create table xxc_items1(item_id number,org_id number,item_no varchar2(10));
    insert into xxc_items1 values(123,12,'book');
    create table xxc_headers(header_id number,order_id number);
    insert into xxc_headers values(null,null);
    create table xxc_lines(header_id number,item_id number,line_id number);
    insert into xxc_lines values(null,null,null);
    create table xxc_types_tl(transaction_id number,NAME varchar2(10));
    insert into xxc_types_tl values(106,'abc');
    create table xxc_quantity(item_id number);
    insert into xxc_quantity values (123);
    create table xxc_quantity_1(item_id number);
    insert into xxc_quantity_1 values (123);
    SELECT union_id.item_id,
           b.org_id,
           e.name,
           fun1(union_id.item_id) item_no
    FROM   xxc_transactions a,
           xxc_items1 b,
           xxc_headers c,
           xxc_lines d,
           xxc_types_tl e,
           (SELECT item_id
            FROM   xxc_quantity
            WHERE  item_id = 123
            UNION
            SELECT item_id
            FROM   xxc_quantity_1
            WHERE  item_id = 123
            UNION
            SELECT item_id
            FROM   xxc_transactions
            WHERE  item_id = 123) union_id
    WHERE  a.type_id = 6
           AND a.item_id  = b.item_id
           AND union_id.item_id = b.item_id
           AND a.org_id = b.org_id
           AND c.header_id = d.header_id
           AND d.line_id = a.trx_line_id
           AND d.item_id = b.item_id
           AND c.order_id = e.transaction_id
           AND b.org_id = 12
    GROUP  BY union_id.item_id,
              b.org_id,
              e.name
    ORDER  BY union_id.item_id;
    create or replace function fun1(v_item in number)
    return varchar2
    is
    v_item_no
    Begin
       select item_no from xxc_items1
       where item_id=v_item;
       return v_item_no ;
        Exception
         When Others Then
          v_item_no := null;
          return v_item_no;
    END fun1;
    I  need  fetch the data by using item_id which is retuned by In line View Query(UNION)
    item_id  org_id  name    item_no
    123        12        abc       book
    Version: 11.1.0.7.0  and 11.2.0.1.0
    Message was edited by: Rajesh123 Added test cases script
    Message was edited by: Rajesh123 changed Question as fetch the data by using item_id which is retuned by In line View Query(UNION)

    Hi Master , sorry for the late reply and can you please help on this?
    create table xxc_transactions(type_id number,trx_line_id number ,item_id number,org_id number);
    insert into xxc_transactions values(null,null,null,null);
    create table xxc_items(item_id number,org_id number,item_no varchar2(10));
    insert into xxc_items values(123,12,'book');
    create table xxc_headers(header_id number,order_id number);
    insert into xxc_headers values(null,null);
    create table xxc_lines(header_id number,item_id number,line_id number);
    insert into xxc_lines values(null,null,null);
    create table xxc_types_tl(transaction_id number,NAME varchar2(10));
    insert into xxc_types_tl values(106,'abc');
    create table xxc_uinon_table(item_id number);
    insert into xxc_types_tl values(123);
    SELECT   union_id.item_id,
             b.org_id ,
             e.name ,
             fun1(union_id.item_id) item_no   --> to get item_no
             FORM xxc_transactions a,
             xxc_items             b,
             xxc_headers           c,
             xxc_lines             d,
             xxc_types_tl          e,
             ( SELECT item_id
                 FROM   xxc_uinon_table ) union_id
    WHERE    a.type_id= 6
    AND      a.item_id = b.item_id
    AND      union_id.item_id = b.item_id
    AND      a.org_id = b.org_id
    AND      c.header_id = d.header_id
    AND      d.line_id= a.trx_line_id
    AND      d.item_id= b.item_id
    AND      c.order_id= e.transaction_id ---106
    AND      b.org_id = 12
    GROUP BY union_id.item_id,
             b.org_id ,
             e.name
    ORDER BY union_id.item_id;
    Note: xxc_uinon_table is a combination of UNION's
    select 1 from dual
    union
    select 1 from dual
    union
    select no rows returned  from dual;
    I will get 1 from the above Query
    Thank you in advanced

  • Can we make a data connection using a WADL file?

    Can we make a data connection using a WADL file for REST web services?

    Can we make a data connection using a WADL file for REST web services?

  • How can i records with date format using web services?

    Hello
    I can't record date records using web services. I get no message errors.
    I can import string values but no dates (YYYY-MM-DD). Do you have any clue about that?
    Regards
    Arturo

    hello,
    That's the code I'm using to update an opportunity. In the date fields (e.g. dFecha_de_entrega_al_cliente) I've tried to put an specific date in the correct format (If i put it in another format i've got an error message due the wrong format). The CRM accepted the code but it didn't update the values that are different of string.
    I don´t know if there is something missing in teh program or if the developer environment is not the adequate.
    Regards for your comments
    Arturo
    Private Sub ActualizarOportunidad(ByVal fila As Data.DataRow, ByVal TipoPersona As String)
    Dim oLog As New Log()
    Dim IdLog As Integer
    Dim NumSerie As String = ""
    Try
    oLog.Insert_Log("Activación Garantía - Crear Oportunidad", oLog.GetLastIdProceso())
    IdLog = oLog.GetLastId()
    Dim sr_input As Opportunity.OpportunityUpdate_Input
    Dim sr_output As Opportunity.OpportunityUpdate_Output
    sr_input = New Opportunity.OpportunityUpdate_Input
    Dim sr(1) As Opportunity.OpportunityData
    sr(0) = New Opportunity.OpportunityData
    NumSerie = fila("NumeroSerie").ToString().Trim()
    sr(0).ExternalSystemId = NumSerie
    sr(0).OpportunityName = fila("NumeroSerie").ToString().Trim()
    sr(0).SalesStage = "Deseo" '"Cerrada/Ganada"
    sr(0).dFecha_de_entrega_al_cliente = fila("FechaEmision").ToString().Trim()
    sr(0).dFecha_de_facturacin_al_cliente = fila("FechaCompra").ToString().Trim()
    sr(0).stNro_Factura = fila("NumeroFactura").ToString().Trim()
    sr(0).plActividad_Economica = fila("IdActividad").ToString().Trim()
    sr(0).plTipo_de_Venta = fila("TipoCompra").ToString().Trim()
    sr(0).CustomObject8ExternalSystemId = fila("ApellidoVendedor").ToString.Trim()
    'sr(0).CustomObject8ExternalSystemId = IIf(TipoPersona = "J", fila("DocumentoE").ToString().Trim(), fila("Documento").ToString.Trim())
    'sr(0).CustomObject7ExternalSystemId = fila("")
    Dim lofsr As Opportunity.ListOfOpportunityData
    lofsr = New Opportunity.ListOfOpportunityData
    lofsr.Opportunity = sr
    sr_input.ListOfOpportunity = lofsr
    sr_output = oOpportunity.OpportunityUpdate(sr_input)
    oLog.Update_Log(IdLog, "Si", NumSerie, "")
    Catch ex As SoapException
    Me.txtError.Text = ex.Detail.InnerText.ToString()
    oLog.Update_Log(IdLog, "No", NumSerie, ex.Detail.InnerText.ToString())
    End Try
    End Sub
    ************************************************************************

  • Can one build a data warehouse using SQL rather than Warehouse Builder?

    I would like to build a data warehouse purely using SQL statements. Where can I find the data warehouse extension of SQL statements?

    I am exploring the internal workings of Warehouse Builder.
    I have written a SQL script to generate sample data to be inserted into tables, then write SQL script to do Extraction, Transformation and Loading using MERGE,, GROUP BY CUBE, DECODE, etc.
    If anyone has any experience of just using SQL to perform ETL, would you share your expeience here? Thanks.

  • My friend borrowed my old iPhone 4. I wanted to erase all the data but I dont have a password and my friend doesnt know his password. How can I erase the data without using a password?

    My friend borrowed my iPhone. I want to sell the iPhone, but first I have to erase all the data that belong too my friend. I don't know his password and he doesn't know either. Is it possible to erase the data without using a password?
    thanks!

    You need the password if it is iCloud locked you won't be able to activate the phone for use.
    As long as he remembers his email,  you can reset the password
    If you forgot your Apple ID password
    or Forgot Apple ID
    https://iforgot.apple.com/appleid
    If it is a lock screen password, you can do a restore.
    Hold down power and home for 10 seconds and release power but keep holding down home. iTunes will say your phone is in recovery mode so you can restore it.

  • Whether can we upload Trasactional data by using any method of LSMW or not?

    Hey SDN's
    Have you ever tried to upload data in Tcode 'FBCJ' (Csh Journal in FI) by using
    LSMW.?
    If you uploaded the data successfully, please let me know.
    Because 'FBCJ' is for transactional data.  so, Is it possible to upload any sort of  transactional data by using LSMW?
    Because I've been trying to upload the data but at 14th step it saying like ''There is no input field for the screen number 100''
    please try to solve this problem.
    thank you verymuch.
    Regards,
    Ali

    Hi Ali,
    1) We can use Transactional and master data in LSMW.
    2) As of my understanding the error u r getting because of ( its guess try check this what i am telling -
    > if ur using recording method, while recording if u have not recorded the field in a particular screen '100' and if u want to upload it by specifying in the input file, (in this case u can get this kind of error) and .
    3) when u have done recording at that time the particular field is in change mode/input mode (we can enter the value) , but while uploading if that particular field is in gray mode/display mode(we cant enter value) in this case also it will show this kind of error.
    so first check , by taking 2-3 records and run in foreground ,
    and anlyze where exactly ur strucking if this is the case, do changes as per the need.
    if this is not the case anything else excuse me and eloborate it .
    Reward points if helpful
    Thanks
    Naveen khan

  • How can i Fetch the data of Kunnr address

    For Invocie printing
    vbrk- kunag/kunrg we will get payer no with this i want to fetch the data of kunnr address
    Thanks and Regards
    kishore

    Hi Kishore
    Generally If it is related to billing , payer address will be printed for invoice printing . But if you want the KUNNR address then check in VKDFS - KUNNR
    Regards
    Srinath

  • Can the Find My iPhone app use a serial number to locate lost iPod Touch 4g

    I lost my iPod Touch 4g and want to find with the Find my iPhone app. I'm using my brother's iPhone 4s to locate it. Can I use a serial number to locate. I lost it in school (in the Administrations office) so I know it won't be stolen. I had them search the whole building and found nothing. My school has Wi-Fi. I got the serial number from iTunes back up.

    The find my iDevice works through iCloud.  What you needed to have done before it went missing was setup an iCloud account on the device, then enable the find my device slider setting to "ON" under that account's settings.
    If you did not do that, it is not trackable.
    There is no way to track it by serial number.
    Also, in order to be trackable it has to be powered on and connected to a data connection.  A wifi-only device like an iPod Touch powers off the wifi radio when running on the battery, so if it has gone into sleep mode, it would not be trackable until or unless woken up by someone so it could re-acquire a data connection with a wifi network.

  • Hi how can i fetch the data from tree table

    Hi i am designing a UI in which i am creating a java tree table as on sun java site http://java.sun.com/products/jfc/tsc/articles/treetable2/index.html now i have to fetch the perticular column value on the mouse click.I have implemented mouse listener and on mouse clicked event I tried :
    Object obj=tableInputOutputEntities.getValueAt(tableInputOutputEntities.getSelectedRow(),tableInputOutputEntities.getSelectedColumn());
    as we usually do in case on JTable but it is also throwing null exception. Again after going through forum i found some code to get the current row and current column selected values and tried with getValueAt(int,int) method but still it is throwing nulll pointer exception. Please help me out.
                         public void mouseClicked(MouseEvent e)
              Point p = e.getPoint();
              int row = treeTable.rowAtPoint(p);
              int column = treeTable.columnAtPoint(p);
              Object obj=treeTable.getValueAt(row,column);
              System.out.println("Object value: "+obj.toString());               
                                }Regards
    Naxy

    Hello Kevin,
    The question to use which method depend on your detail requirements. If you use BAPI, you need to find which Bapi can provide the data you want. Bapi normally use as a function called by external system. So you need to develop an external program like VB/Java to call this Bapi and move it to SQL. LSMW is use when you want to upload data from an external system to SAP. So it does not serve your requirement. Idoc can be use to export data to an external system. Again like Bapi, you need to find what Idoc can provide the data you want. However, it does not any programming from the external system. If I were you, based on your requirements, I think writing an Abap program that read the data you want and download it to NT/SQL server will be faster and easier.

  • Help needed.. i can't restore my data backup using Link, it says incompatible...

    hi..
    i'm loosing all my data now because Link is piece of junk  
    i have Q10 SQN100-3 with firmware 10.1.0.xxxx i don't remember, and then using autoloader from JSanders posts... i update it to the newest 10.2 available on that post.. afterwards i'm trying to restore my previous backup and it says file isn't compatible with the version of the device software that you are currently running...
    so now i lost all my data inside .. please any advice on getting back data from my backup?
    maybe you guys have solution for this kind of problem? i saw many threads with similar problems but not solution yet... 

    yes it was the same device with the same PIN and BB ID.. i have manage to extract the backup file and the manifest.xml contains the software version it was backup to and i can see the blackberry id is the same one i have used..
    <?xml version="1.0" encoding="UTF-8"?>
    <BlackBerry_Backup><Version>4.0</Version><Client platform="windows" osversion="Microsoft Windows NT 5.1.2600 Service Pack 3" dtmversion="1.2.3.56"/><SourceDevice pin="i hide this" hwid="8600270A" revision="1"><Platform type="QNX" version="10.2.1.2141"/></SourceDevice><QnxOSDevice><Archives><Archive id="app" name="Application Data" count="152" bytesize="615636100" keyid="i hide this" perimetertype="0"/><Archive id="media" name="Media" count="3112" bytesize="908993604" keyid="cece_i hide this" perimetertype="0"/><Archive id="settings" name="Settings" count="1639" bytesize="10474116" keyid="i hide this" perimetertype="0"/></Archives></QnxOSDevice></BlackBerry_Backup>
    i get also 3 files app.tar, media.tar, setting.tar this is all 3 data backups from link extract, could we modify it to make another restore files or somehow decrypt the tar backups?

  • I upgraded to OS7 and am having trouble with the reminder app. can not find the dates that use to be at the bottom

    tips on using Reminders with OS7

    iOS 5: Understanding Location Services
    http://support.apple.com/kb/ht4995
     Cheers, Tom

  • Fiori Approve requisition (Header) can't fetch item data

    Hi,
    I am trying to implement approve requisition (approval by header level).
    I can see the number of PR I need to approve in the tile,
    But when I click, it is HTTP error, and there is dump at the backend (CL_GBAPP_APV_PR_API)
    this is because the item number is 00000.
    system is new, notes are implemented.
    any idea?

    Hi Masayuki,
    We have the same issue here and our SP level are the following:
    GBAPP002 SP07
    UIX01EAP SP04
    Error in the frontend: {"error":{"code":"/IWFND/CM_BEC/026","message":{"lang":"pt","value":"Erro RFC: Access via 'NULL' object reference not possible."},"innererror":{"transactionid":"5486B3C840FD1830E10000000A5A0C07","timestamp":"20141210160652.9077510","Error_Resolution":{"SAP_Transaction":"Run transaction /IWFND/ERROR_LOG on SAP NW Gateway hub system and search for entries with the timestamp above for more details","SAP_Note":"See SAP Note 1797736 for error analysis (https://service.sap.com/sap/support/notes/1797736)"},"errordetails":[]}}}
    Dump in the backend:

  • Can you show applications open directly in menubar instead of dock?

    Hi there
    I want to disable dock totally
    But I want to get the functionality in my menu bar
    So i want to show icons of the apps which are open (or at least favourite apps), directly on the menubar
    I don't want them in a folder, I already have an app which does that called xMenu
    I want the actual icons of the Favourite/IfPossible:OPEN apps to directly appear in menubar
    Is there anything that can get some/all of this functionality?

    Well, there probably is; however, a word of caution: the Menu bar is controlled by the System and it may have undesirable results changing system behavior.
    What is it about the dock that bothers you?
    I have all the apps I use on a regular basis in the dock - not a folder, mind you - alias icons to the apps themselves which all open with one click. I rarely use the system supplied Applications folder in the dock. At last count, I had almost 60 app icons in the dock, which is minimized with significant magnification - I have them organized so I can usually hit the right one without having to search. You can also check "automatically show and hide the Dock" so it'll only show itself when moving the cursor over the area.

  • How to Table data directly stored as file in FTP location

    Hi All,
    In my process i need to convert table into csv file,i know how to convert as file,but the file will stored into FTP location directly,can any one help regarding this...
    Thanks in Advance...
    Edited by: 947267 on Oct 26, 2012 2:46 AM

    Hi,
    I think you will have to store it locally first and then use the OdiFtpPut Tool in a package.
    Does your requirements allow that ?
    Regards,
    JeromeFr

Maybe you are looking for

  • Help, how do i find out the host server for a website i have inherited

    hi i inherited responcibilty for a website, simply because there was noone else avalable. i have dreamweaver cs3, but only about 2 weeks worth of knowledge and experience. I was given info ie. ftp address and username etc, so have been able to downlo

  • Loading xml file in to database (inserting only one level)

    Hi All,   I am trying to load an xml file into db using ssis..when i am trying to load the data in xml its loading only first row.. sample xml: <?xml version="1.0"?>   <Products>     <Product ID="Level1_75000000" UserTypeID="Level1" ParentID="Product

  • Deleting a Deployed Categorization Schema

    *Hello,* *I was wonder if anyone knows how to delete a categorization schema with deployed status? After playing in the IC web client it only appears draft categorization schema's can be deleted.* *Is there a way to delete deployed schema's in back e

  • Low Disk Space Warning in LR 2.1 RC

    Hello, I just installed Lightroom 2.1 RC on my homebuilt 2.83 GHz Quad Core computer with 4 Gigs of RAM running Windows Vista SP1. I have a 500 GB hard drive that I use for my software and another 500 GB hard drive that I use for documents and files/

  • WRt54G gateway offline problem

    when i log onto MSN on a networked computer, it randomly wont work and when i go to the troubleshooter it tells me that the garteway is offline. Wile this happens my browser wont load web pages. it will serch for them, but then it ont load anything.