Does oracle 9i has a table like v$sql_bind_capture in Oracle 10g?

I want to know the bind value in sql command, in 10g I can join v$sql_bind_capture to fine the value. But in 9i, there is no v$sql_bind_capture. Is there any other way I can find the bind value??

I want to know the bind value in sql command, in 10g I can join v$sql_bind_capture to fine the value. But in 9i, there is no v$sql_bind_capture. Is there any other way I can find the bind value??Not in 9i.
Sql trace or process dump would be the only way to extract the bind values.
We have v$sql_bind_data view, but it's session-scope.
================================
Dion Cho - Oracle Performance Storyteller
http://dioncho.wordpress.com (english)
http://ukja.tistory.com (korean)
================================

Similar Messages

  • Does Encore CS4 has Autosave function  like Premiere Pro

    I don't seem to find about it. Recently I had a project that suddenly lost it's menu and so was replaced by a template. It was fidly an busy so I would love to get it back without redoing it. (Butons, links and all)
    Thank you for your time
    MM
    PS I just found an entry from 2006 that does not answer the question but suggest to have this feature in the "wish List"!
    I think I'm going to redo my menu!

    Say that again, I finally fix the project to encode and probably would have done better starting from scratch too. I find the size confusing. I noticed the blue line seems to be the size of the project. I added back my HD video clip and it seems to show 37 GB. But this time I won't hold my breath to long and "que sera, sera" I may have to do it all over again! it just a shame to waste so much real estate. 12, 15 GB is a lot especially when one think about DVDs. I may need to think about finding appropriate BR size
    I found the above in a "recovered session! But today I have to report that I have not made any progress:
    I noticed whilst burning with imgburn there are a lot write Retries (440, and I'm barely 2% complete. I must admit I have no idea how all this works - I can see the buffer at 100% and the device buffer line flicking to 100%
    I just lowered the writing speed that was X8 down to X2 (here we are at 3% with 550 write retries).
    I was quite hopeful with the setting to DL 50GB that should have been the problem.But!
    According to imgburn, the source shows 35316,957,184 bytes so it should fit onto 50gb.
    I know all this is very complex and I'm not up to it to understand the whole process - yet knowing I have had one successful burn and in the past I had not trouble with DVD burning - I should get somewhere!
    Searching more for an answer I found a 2009 post that talks about BD DL and suggests each layer will only take 25 gb and therefore we should try to have two parts no more than 25 gb in the project to burn on a 50gb DL BD? Have you heard of such thing?
    Well It's almost 7hours and the burning is 96% - Since I have no changed anything I don't expect too much about this session.
    Message was edited by: Michelmnr

  • Why does my login screen when scrolling mouse over appear pixalated (has small squares wherver the mouse scrolls until the entire page has been scratched like a lotto ticket:) ?

    Why does my login screen when scrolling mouse over appear pixalated (has small squares wherver the mouse scrolls until the entire page has been scratched like a lotto ticket:) ?

    OS X Lion: Login window partially appears, cursor movement redraws screen

  • Does Oracle have Extended Stored Procedure like SQL Server and Sybase?

    Hi, i am new to Oracle. I want to know if...
    Does Oracle have Extended Stored Procedure like SQL Server and Sybase?
    If it does not have, then how can i call outside program written in C or JAVA from the Database stored procedure or trigger?

    refer to this link on external procedures
    http://download-west.oracle.com/docs/cd/A87860_01/doc/server.817/a76956/manproc.htm#11064

  • Hey does SAP XI has anything like 17.0 release or 17.0 version?

    Hi
    hey can anyone tell me soon about this question.does SAP XI has anything like 17.0 release or 17.0 version? please reply soon is really urgent.
    Thanx
      Xilearner

    Hi,
    XI has Support Pack SPS17.
    http://help.sap.com/saphelp_nw04/helpdata/en/43/d00cb4a7073ab3e10000000a422035/frameset.htm
    Regards,
    Moorthy

  • Does iCal has alert feature like in Mac Calendar?

    Does iCal has alert feature like in Mac Calendar?
    In the Mac Calendar, you can set a alarm for an event to send an e-mail at 15 minutes before event. Is it possible to do same in iPad iCal?

    I know it will pop up an alert message, but is it possible to get it to send out an e-mail message instead? If it is possible, could you tell me how to do it in the iPad? I seem to be only able to make it pop out a message but not able to make it sends out an e-mail. Thanks.

  • Acrobat XI does not export tables like Acrobat X when "Save As" to MSWord

    I have some pdfs that clearly have tables in them. Acrobat X can save them to MSWord just fine. Acrobat XI does not.
    I've tried all combinations of the layout settings ("Retain Flowing Text"/"Retain Page Layout") and image settings (Include Images on/off) and MSWord versions (.doc/.docx) and none of them result in tables like what X does.
    Is there a way to make XI behave like X when saving as MSWord documents?

    Make sure you apply all updates to Acrobat 11.

  • Does Mail App has an offline feature like Google Mail?

    I store all my emails on my IMAP .me.com account, but when I am offline I cannot access any emails. Does Mail App has an automatic sync option with locally stored mailboxes? Or is there an offline option such as Google Mail offers?
    Would appreciate any help.

    I'm not sure what Google Mail offers, but in Mail Preferences, Accounts, (select the account) and click on Advanced, there is an option for how to store messages for offline viewing.
    However, I have mine set not to keep any messages, but when offline, I still have the local copies of all the messages.

  • Oracle jdbc creating a table, sequence and trigger

    I'm trying to create a table with a sequence and with a trigger for that sequence. When I do this within Oracle Express edition I have the following SQL statements. Which DO run correctly inside Oracle Express using the same user I log in with JDBC.
    CREATE table "TEST" (
    "ID" NUMBER(10) NOT NULL,
    "NAME" VARCHAR2(20),
    constraint "TEST_PK" primary key ("ID")
    CREATE sequence "TEST_SEQ"
    CREATE trigger "BI_TEST"
    before insert on "TEST"
    for each row
    begin
    if :NEW."ID" is null then
    select "TEST_SEQ".nextval into :NEW."ID" from dual;
    end if;
    end;
    So now what I do is put each of these into a List of Strings and execute 1 by one like this:
    List<String> commands = new ArrayList<String>(4);
    commands.add("Create table ...");
    commands.add("Create sequence ...");
    commands.add("Create trigger...");
    st = con.createStatement();
    for (String command : commands) {
    st.execute(command);
    etc...
    But I get an error with the trigger statement. "Error with Oracle command: ORA-00942: table or view does not exist"
    It seems to me that Oracle has not yet seen the new table at this point. or maybe my user can create tables but not triggers? If that's the case why did it work in the express application itself?
    TIA

    SproketBoy wrote:
    But I get an error with the trigger statement. "Error with Oracle command: ORA-00942: table or view does not exist"Keep in mind: Oracle is not lying to you.
    >
    It seems to me that Oracle has not yet seen the new table at this point. or maybe my user can create tables but not triggers? If that's the case why did it work in the express application itself?No, DDL commands cause an explicit commit. As soon as you invoke them, the change is permanent. If it was a rights problem, you'd get a different ORA error stating that, it won't silently fail.
    Lets not assume it is anything difficult, perhaps there is simply a typo in a name somewhere?

  • How to fetch rows from a table like search engines do?

    Is it possible to fetch rows from a table like Google does? I want to fetch row number 20-40 after the select has ordered the rows.
    Pseudo code: select * from log where rownum > 20 and rownum < 40 order by date;
    Rownum doesn't work with ordering so I tried:
    select * from log where (select * from log order by date) and rownum <20;
    But that still doesn't do what I want. I get the "top 20" rows but I can't get rows 20-40.
    My real table has 70000 rows and I want to select 69000-70000 so I really need a SQL do fetch only the rows I need.
    Any help would be very appreciated!
    Best regards,
    Christer Nordvik

    SELECT alias_for_rownum, column_names
            FROM   (SELECT ROWNUM AS alias_for_rownum, column_names
                    FROM   (SELECT   column_names
                            FROM     table_name
                            ORDER BY columns_to_order_by)
                    WHERE  ROWNUM <= last_row_you_want)
            WHERE  alias_for_rownum >= first_row_you_want
    Example:
    -- (This example uses the Oracle dept demo table.
    SET AUTOTRACE ON EXPLAIN
    SELECT rn, deptno, dname, loc
            FROM   (SELECT ROWNUM AS rn, deptno, dname, loc
                    FROM   (SELECT   deptno, dname, loc
                            FROM     dept
                            ORDER BY deptno)
                    WHERE  ROWNUM <= 3)
            WHERE  rn >= 2
                    RN     DEPTNO DNAME          LOC
                     2         20 RESEARCH       DALLAS
                     3         30 SALES          CHICAGO

  • JBO-25014: Another user has changed the row with primary key oracle.jbo.Key

    Hi,
    I am developing a Fusion Web Application using Jdeveloper 11.1.2.1.0. I have a home.jspx page that has a ADF table built on efttBilling View Object. . When you click on one of the rows in the table, it will take you to detail.jspx where you can edit the row and save. When 'save' is clicked, stored procedures are executed to update/insert rows into few tables , and then go back to home.jspx where you need to see updated content for that row.
    To get down to the exact issue, updates are made to the tables on which the efttBilling View Object is built using a stored procedure. Once this is done, I am trying to requery view object to see new content. But I keep getting JBO-25014: Another user has changed the row with primary key oracle.jbo.Key error. Following are the approaches I followed to query new results:
    a. Executed Application Modules Commit Method. Created 'Commit' Action binding and tied it to homePageDef.xml. Called this binding from a view scope bean.
        BindingContainer bindings = BindingContext.getCurrent().getCurrentBindingsEntry();
         OperationBinding operationBinding = bindings.getOperationBinding("Commit");
        Object result = operationBinding.execute();
       if (!operationBinding.getErrors().isEmpty())
        return null;
    b. Marked 'Refresh on Insert' , 'Refresh on Update', 'Change Indicator' checkboxes for all the attributes in the entities associated with efttBilling View Object.
    c. Tried to Requery View Object. Created a refreshViewObject method in Application Module Impl.java file, exposed this method to the client interface and created a invokeMethod Action binding in home.jspx
    Code in Application Module:
      public void refresheftTransactionsforBillingAccountViewObj1View()
        System.out.println("In eftTransactionsforBillingAccountViewObj1");
      findViewObject("eftTransactionsforBillingAccountViewObj1").executeQuery();
    Code in view scope bean
            DCBindingContainer bindings =
           (DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry();
            OperationBinding operation =
            bindings.getOperationBinding("refresheftTransactionsforBillingAccountViewObj1View");
            operation.execute();
    I have searched web, ADF forums and tried methods suggested in there but no sucess.
    Could anyone please provide some insight in this issue. I have been battling with this since quite some time. I can provide you with the log file too.
    Thanks!
    Shai.

    What code does your Commit method have .. can you try using the Commit executable from the AM itself instead ?
    Also -
    Shai wrote:
    'Change Indicator' checkboxes for all the attributes in the entities associated with efttBilling View Object.
    which all attributes you set this property for . it should just be for History columns as such.
    Did you also check if this could be your scenario ?
    Decompiling ADF Binaries: Yet another reason for &quot;JBO-25014: Another user has changed the row with primary key orac…
    OR
    JBO-25014: Another user has changed the row with primary key oracle.jbo.Key
    OR
    Another user has changed the row with primary key -Table changed externally
    Message was edited by: SudiptoDesmukh

  • How to create a table-like layout using Iterator?

    I want to render several items in a table format using an iterator. Can anyone guide me on how to line up the different columns, like in a table?
    I cannot use the built in table because I want to change the display later using javascript and the af:table component does not work with that.
    The table will be in a panelsplitter element. The code I have right now:
    <af:iterator id="i1"
                       value="#{bindings.DenormPlanLine1.collectionModel}"
                       var="row"
                       rows="#{bindings.DenormPlanLine1.rangeSize}">
                        <af:panelGroupLayout id="pg1" layout="horizontal"
                                             inlineStyle="width:800.0px;">
                          <f:facet name="separator">
                            <af:spacer width="5" height="1" />
                          </f:facet>
                          <af:outputText value="#{row.StartDate}"  styleClass="sDate"/>
                          <af:outputText value="#{row.FinishDate}" styleClass="fDate"/>
                          <af:outputText value="#{row.DenormWbsLevel}" styleClass="level"/>
                          <af:outputText value="#{row.DisplaySequence}" styleClass="dSequence"/>
                          <af:outputText value="#{row.ElementVersionId}" styleClass="elVersionId"/>
                          <af:outputText value="#{row.TaskType}" styleClass="taskType"/>
                          <af:outputText value="#{row.PercentComplete/100}" styleClass="percent">
                            <af:convertNumber type="percent" />
                          </af:outputText>
                        </af:panelGroupLayout>
                        <af:spacer width="100%" />
                        </af:iterator>

    User, please tell us your Jdev version!
    Check out this sample http://andrejusb.blogspot.de/2011/05/oracle-adf-11g-custom-table-pagination.html
    Timo

  • [Trouble] The Report has no tables

    Hi there,
    i have trouble in using Crystal Reports for .NET 2.0.
    I load a CSV file via JetDB Provider as Text database and try to use it as DataSource for my report.
    But it crashes all time, with a error like this "report has no tables".
    Actually i dont really know Crystal Reports well, i got the project from an ex-employment from our Company.
    Of course i readed the PDF documentations "Reporting Off ADO.NET Datasets", "Crystal Reports Guide To ADO.NET", "Connecting the Report Designer Component to a Data Source" but that didnt help me at all.
    So i hope you guys can help me,
    here are the code: http://rafb.net/p/hMon9Z65.html
    with best regards,
    Torsten Sailer

    So if I understand correctly, you are loading data from a CSV file into a DataSet object and passing the DataSet to a report that you have loaded using the ReportDocument object?  Are you using the SetDataSource() method to pass the DataSet to the report?  
    Make sure that the schema of the DataSet isn't changing from when you designed the report.  The report's schema must match the DataSet schema when passing the DataSet to the report. 
    The best way to troubleshoot the issue is when the error occurs, write out the DataSet to an .xml file (with the schema) and then in a simple Windows app, load the same report, and the xml schema/data into a DataSet object (rather than the CSV) and see if the same error occurs.  If it does, open the report in design and do a "Set Database Location" to your xml file and see if it picks up any changes.  If it does, then that might be the reason why it errors....the schemas are not matching and you need you find out why.
    <p>-MJ</p>

  • Table-like behavior in flash

    I have an app I've built for a client that displays a bunch
    of dynamic data in a table-like grid. This is currently a "top 10"
    that shows details of the top-10 winners of a contest. The client
    has now said that under certain circumstances this "top 10" display
    grid will now need to display a table of dynamic data of
    undetermined height (That is it could be a "top 30" or a "top
    100"). So firstly I imagine the data will need to be embedded in a
    scrollable movie-clip that adjusts its height based on the amount
    of data there is. I was disappointed to learn flash html does not
    support tables. I've seen reference to some components available,
    but they all seem sort of like a big jump for something the client
    sees as a minor change to the application. Could someone please
    help me determine what is the easiest route for me to take?

    Why not just use a DataGrid component? They're pretty easy to
    use actually.
    Try this: start a new AS2 project and drag a DataGrid from
    the components
    panel onto the stage. Use the properties panel to size it to
    500 x 300. When
    you add data to a grid it will just show a scroll bar if
    necessary, it
    doesn't resize... Give it an instance name of "theGrid".
    Now, add the following script to the frame:
    import mx.controls.gridclasses.DataGridColumn;
    function doGrid(gridRef, gArray:Array)
    for (var i = 0; i < gArray.length; i++) {
    var cat:DataGridColumn = new DataGridColumn(gArray
    [0]);
    cat.width = gArray[2];
    cat.headerText = gArray
    [1];
    cat.editable = false;
    gridRef.addColumn(cat);
    var gFormat = new Array(["fname", "First Name:", 120],
    ["lname", "Last
    Name:", 200], ["date", "Win Date:", 80]);
    doGrid(theGrid, gFormat);
    If you compile now, you'll see the grid with the field
    titles... I use the
    doGrid function, and an array like this to make formatting
    the grid easy.
    The first item in the array matches the dataProvider
    property, as you will
    see in a moment - the second is the title, and the third the
    width of the
    column... change these as you need.
    To add data, you just create an array of objects, with the
    object properties
    matching the first item in the format array - like so - add
    the following
    and test again:
    var gridData = new Array({fname:"Dave", lname:"Mennenoh",
    date:"09/14/08"},
    {fname:"giga", lname:"saurus", date:"10/14/08"});
    theGrid.dataProvider = gridData;
    That's all there is to it... If you add more data than can be
    shown, you'll
    get a scroll bar. You can add en event listener to know when
    someone selects
    an item, etc...
    good luck
    Dave -
    www.offroadfire.com
    Head Developer
    http://www.blurredistinction.com
    Adobe Community Expert
    http://www.adobe.com/communities/experts/

  • Can I connect window device like modem, mobile in oracle forms,if possible then how?

    Can I connect window device like modem, mobile in oracle forms,if possible then how?

    Hi Tony,
    So explain where you would see your notification?I just mention, Leave module, there are many other module. For example In Purchase Purchase Requigition , Production Module Production Complite , Delivery Module Delivery Ready.
    For this it will better to show at respective Menu.
    In the Window title?Another good Idea !
    You could have a timer trigger that runs every 5 minutes and checks a notification table, if there is an unacknowledged notifcation, then you could change the Window title of the formas app to show a (1) at then end of it.Timer has a bad this.. For example, if i make a timer and run every 5 min. then if user works on a form, timer will hide the form and show the timer window.
    Isn't it ?
    Would that do, or do you need more?Yea.. More..It will be like facebook. If any notified work is done by any person, light will go off.
    Thanks for your interest and suggestion...
    Ask2Learn
    Edited by: Asked to Learn on Jan 23, 2013 12:36 AM

Maybe you are looking for

  • Filtering report data based on user login and Parameter fields

    Post Author: mronquillo CA Forum: General Hi,I am running a report that filters data based on the user login. To do this, I created a formula called @user that compares the login name (using the CurrentCEUserName field) and returns the user's name. I

  • Report level manipulation

    Hi All, I have a sales report, its a very simple report. I need to calculate revenue at the report level. Revenue = Price * Quantity. I have quantity Key figure in the column level, i need to calculate revenue(calculated key figure), but price key fi

  • BBP_PDIGP-GROSS_PRICE zero in SRM purchase order

    Hello All, We are using extended classic scenarion SRM 5.0 (Server 5.5) with backend ECC 6.0 When creating a shopping cart for product (NOT direct material) on account assignment F = Order with a quantity smaller 1 the SRM purchase order hasn't got a

  • How to use a Shuffle in your car

    Hi, my car has a connection for an MP-3 player but it's not a USB-port, it's a smaller one (don't know what it's called, will find out if needed). Is there a way (some kind of adapter maybe) to connect my shuffle to this port? By the way, I'm in the

  • Pivot sql

    Hi, ID Contract_Year   type1Fee 1 type1Fee 2 type1Fee 3   type2Year1 type2Year2 type2Year3 1 2015 $1.50 $1.50 $1.50 $2.00 $2.00 $2.00 this is my SOURCE DATA, AND i am trying to get in this model id  CONTRACT_yr TYPE year1    year2       year3 1 2015