More than 1 Hint in Select

Hi
Is possible put more than a hint in Select ? How can I do ?

Well, I support what was said by Mark... partially.
Indeed, hints should be avoided whenever possible. However, I wouldn't claim that hinting is something that should be avoided at all cost.
How about ALL_ROWS and FIRST_ROWS hints?
How about DYNAMIC_SAMPLING hint?
Should we avoid using APPEND hint, after all?
In my opinion, we need to understand that:
1. There are hints that have nothing to do with CBO decisions (APPEND, for example). They can't really hurt.
2. There are hints that sometimes help CBO to make better decisions (DYNAMIC_SAMPLING). I wouldn't call them "bad" as well.
3. Hints to change optimizer goal (like FIRST_ROWS, ALL_ROWS) - again, they are harmless if applied properly.
And finally:
4. Hints that force optimizer to use some fixed access path, join method - in other words to restrict optimizer's search space. These ones are surely bad. They should be used very rarely and considered a "path of last resort".
But then again - before applying such hints we must understand the nature of underlying problem, the underlying cause of bad execution plans. If we blindly hint one query, it's very likely that we'll need to hint many other queries as the problem tends to re-appear in many places of application code.
And by the way - Tom uses similar categorization of hints, too:
http://asktom.oracle.com/pls/ask/f?p=4950:8:::::F4950_P8_DISPLAYID:23566649273765#47839217291071
Kind regards.

Similar Messages

  • How to call the same query more than once with different selection criteria

    Hi,
    Please do anybody know how to solve this issue? I need to call one query with the fixed structure more than once with different selection criteria. For example. I have following data
    Sales organization XX
                         Income 2008  Income 2009
    Customer A       10                 20
    Customer B        30                  0
    Sales organization YY
                         Income 2008  Income 2009
    Customer A        20                5
    Customer B        50                10
    Now, I need this. At the selection screen of query, user fill variable  charakteristic "Sales organization" with interval  XX - YY, than I need to generate two separate results per sales organization, one for Sales Organization XX and the second for SO YYwhich will be displayed each on separate page, where result for SO YY will be dispayed under result for SO YY. Are there some options how to do it for example in Report Designer or WAD or with programming? In Report Designer is possible to use one query more than once, but I dont know how to force each query in RD to display result only for one Sales Organization, which will be defined in selection screen.
    Thank you very much
    J.

    Hello,
    thanks to all for cooperation. Finally we solved this issue with the following way..
    User fill appropriate SO on the selection screen, which is defined as range. This will resulte, that selected SO are listed in report below each othe (standard behavior). Required solution we achieved with the Report Designer, we set page break under each Result row of RD. This caused, that report is divided into required part per SO, which are stated each on separate page.
    J.

  • Every time I login, I have to select Country. It takes more than one attempt to select one.

    Every time I login, I have to select Country. It takes more than one attempt to select one. What could be done to save it so I don't have to select it repeatedly?

    Is this PSE 12? You should not be logging out. In PSE 12 log in = activate. When you log out you are deactivating PSE. Just leave it logged in.

  • No flickr share sheet when more than 99 photos are selected

    flickr share sheet does not appear when more than 99 photos are selected. So does Facebook, Airdrop and others except only "add to iPhoto". They all show up when >100 photos are selected but for more they don't
    2010 MacBook Pro 15", Yosemite

    *<100 not >100

  • GetSelectedRowKeys() returns more than one on Single Selection Tree Table

    Hi,
    I found that this issue occurring after PS3 (I think.)
    I have a tree table component, which allows single row selection. There is a listener on a column of the tree table as follows:
    public void listenPackageUnit(ValueChangeEvent valueChangeEvent)
    Object oldKey = getTreeComponent().getRowKey();
    try
    * Retrieve index of selected package unit
    * NOTE: Subtract 1 to remove no selection value. This only
    * needs to be done if attached LOV has No Selection option set.
    if (valueChangeEvent.getNewValue() != null)
    Row row = null;
    String selectedPackageUnit = null;
    int packageUnitIndex = (Integer) valueChangeEvent.getNewValue();
    packageUnitIndex--;
    * Due to the no selection item, we need to prevent search of regular
    * iterator if index is < 0. In this case we know the user selected
    * the no selection (blank) value.
    if (packageUnitIndex >= 0)
    * Using index, determine the value of the selected package unit
    DCIteratorBinding packageUnitsIterator =
    (DCIteratorBinding) PasUiADFUtil.resolveExpression("#{bindings.PackageUnitsIterator}");
    Row newRow =
    packageUnitsIterator.getRowAtRangeIndex(packageUnitIndex);
    selectedPackageUnit = (String) newRow.getAttribute("LookupCode");
    RowKeySet selection = this.getTreeComponent().getSelectedRowKeys();
    if (selection != null && selection.getSize() > 0)
    for (Object facesTreeRowKey: selection)
    this.getTreeComponent().setRowKey(facesTreeRowKey);
    JUCtrlHierNodeBinding rowData =
    (JUCtrlHierNodeBinding) this.getTreeComponent().getRowData();
    row = rowData.getRow();
    setSelectedLabel((String) row.getAttribute("Label"));
    setSelectedLabelType((String) row.getAttribute("LabelType"));
    row.setAttribute("PackageUnit", selectedPackageUnit);
    getTreeComponent().setRowKey(oldKey);
    finally
    getTreeComponent().setRowKey(oldKey);
    The issue is that getSelectedRowKeys() returns more than one when the user selects a child row in the tree table.
    It seems to be returning the total number counting from the top parent through the child.
    (For example, if the child is the second generation, it returns 2, and if the third generation, it returns 3.)
    This is causing the issue that the method tries to update the attribute of the parent row with a value for the child row. (And it fails, because the attribute is updateable only while new.)
    I remember getSelectedRowKeys() always returned one, the selected child itself, when I coded this around October, 2010.
    Is this a design change after PS3? Why does it return more than one though the tree table is for single selection?
    How can I get around this issue?
    It would be truly appreciated if we can get any quick help, since we are at final testing phase of our product.
    Thank you,
    Tomo

    Hi Vinod,
    I found the solution. Thank you very much for your suggestions. :)
    Now my listenSelection (custom listener of the tree table) looks like below:
    public void listenSelection(SelectionEvent selectionEvent)
    Row currentRow;
    PasUiADFUtil.invokeEL("#{bindings.TransactionLabelTopLevelVO1.collectionModel.makeCurrent}",
    new Class[] { SelectionEvent.class },
    new Object[] { selectionEvent });
    Object oldKey = getTreeComponent().getRowKey();
    try
    if (this.getTreeComponent() != null)
    RowKeySet rks = this.getTreeComponent().getSelectedRowKeys();
    Iterator keys = rks.iterator();
    while (keys.hasNext())
    List key = (List) keys.next();
    this.getTreeComponent().setRowKey(key);
    JUCtrlHierNodeBinding node =
    (JUCtrlHierNodeBinding) this.getTreeComponent().getRowData();
    if (node != null)
    currentRow = node.getRow();
    if (currentRow != null)
    this.setSelectedRow(currentRow);
    setSelectedLabel((String) currentRow.getAttribute("Label"));
    setSelectedLabelType((String) currentRow.getAttribute("LabelType"));
    String shippedItemFlag =
    (String) currentRow.getAttribute("ShippedItemFlagValue");
    if (shippedItemFlag != null && shippedItemFlag.equals("1"))
    setDisableAdd(true);
    else
    setDisableAdd(false);
    finally
    getTreeComponent().setRowKey(oldKey);
    /* Refresh Action menu and buttons */
    RequestContext.getCurrentInstance().addPartialTarget(this.getActionMenu());
    RequestContext.getCurrentInstance().addPartialTarget(this.getToolbar());
    And my tree table is like below:
    <af:treeTable value="#{bindings.TransactionLabelTopLevelVO1.treeModel}"
    var="node" rowSelection="single" id="tt1"
    contentDelivery="immediate" fetchSize="25"
    emptyText="#{bindings.TransactionLabelTopLevelVO1.viewable ? commonFoundationMsgBundle.NO_DATA_TO_DISPLAY : commonFoundationMsgBundle.ACCESS_DENIED}"
    selectionListener="#{pageFlowScope.MaintainTransactionSerialAssociationBean.listenSelection}"
    binding="#{pageFlowScope.MaintainTransactionSerialAssociationBean.treeComponent}"
    summary="#{maintainAssociationUiBundle.CONTAINER_SERIAL_HIERARCHY}">
    <!-- Row Header -->
    The listener is now always getting the currently selected row only.
    Tomo

  • Wcf Data Service fails when more than 8properties  in the 'select=' portion

    Hi:
    I am using WCF Data Service and Oracle
    EF Provider is ODAC11.2 Release 4
    Wcf Data Service fails when more than 8 properties are specified in the 'select=' portion of the URI
    here is my code
    var q = from c in this.ctx.SALESORDER_ITEM
    select new
    c.SORDERDETAILID,
    c.IID,c.DMFLAG,c.OWNERID,c.SKUID,c.SKU_ID,c.TRADENO,c.SOURCEID,c.SORDERID
    excetion:
    InvalidOperationException: An error occurred for this query during batch execution. See the inner exception for details
    The inner exception is null, but the DataServiceClientException states: Value cannot be null Parameter name: value
    the exception is thrown in base.OnStartProcessingRequest(args) method (overridden).
    Here is the call stack as well:
    at System.Data.Services.WebUtil.CheckArgumentNull[T](T value, String parameterName)
    at System.Data.Services.Internal.ProjectedWrapper.set_PropertyNameList(String value)
    at lambda_method(Closure , Shaper )
    at System.Data.Common.Internal.Materialization.Coordinator`1.ReadNextElement(Shaper shaper)
    at System.Data.Common.Internal.Materialization.Shaper`1.SimpleEnumerator.MoveNext()
    at System.Data.Services.Internal.ProjectedWrapper.EnumeratorWrapper.MoveNext()
    at System.Data.Services.DataService`1.SerializeResponseBody(RequestDescription description, IDataService dataService)
    at System.Data.Services.DataService`1.HandleNonBatchRequest(RequestDescription description)
    at System.Data.Services.DataService`1.HandleRequest()
    Is there a max number of properties in $select statement
    I think may be it is oracle provider's problem ,but i don't konw how to debug it Can anyone help me
    Any help is greatly appreciated

    I believe the null/empty string issue is unrelated to the 8 column issue, at least for ODP.NET. For example, let's take the original query in the OBE:
    http://.../yoursvcfile.svc/EMPLOYEES?$select=EMPLOYEE_ID,FIRST_NAME,LAST_NAME,SALARY,DEPARTMENT_ID,DEPARTMENT,EMAIL,PHONE_NUMBER,MANAGER_ID
    Let's make all the columns selected not nullable. You can do this with the Oracle Dev Tools. Specifically, PHONE_NUMBER and FIRST_NAME are the only nullable fields. I make them non-nullable and re-run the query and the same error occurs. Thus, these values should never be made null. Moreover, in all 107 rows, none of these row values consist of empty strings anyway.
    Looking into the problem further, WCF DS is calling methods in the System.Data.Services.Internal namespace.
    http://msdn.microsoft.com/en-us/library/system.data.services.internal.aspx
    Specifically, we see your issue when the ProjectedWrapperMany method is called. You will notice that there is ProjectedWrapper0, ProjectedWrapper1...ProjectedWrapper8 methods also present in the same namespace. As soon as the number of columns exceeds 8, ProjectedWrapperMany is called and we see the error. We're going to ask MS to help analyze the issue since this is an .NET-internal method being called.

  • Wanted to catch more than one record in selected rows

    Hi all,
    I am using the following function to catch the selected rows.
    CALL METHOD w_grid->get_selected_rows
            IMPORTING
              et_index_rows = i_selected_rows.
    it is catching only one row.
    but i want to catch more than one record.
    for example i will select more than one record from the grid and press the approve button. so that the status will change in the database.
    but what is happening is if i select 2 or more records it is approving only first record. because in the i_selected_rows only first row is catching. what i have to do to catch other select rows also.
    thanking u.
    regards,
    giri.

    Hi,
    CALL METHOD w_grid->get_selected_rows
    IMPORTING
    et_index_rows = i_selected_rows[] ."<<<< try to put these into []
    please not open multiple threads

  • Can more than one song be selected for slideshow on IPhoto? If so how

    Am trying to put together slideshow of granddaughter's birthday party but want to use more than one song as have a lot of photos.

    Thank you for sharing your expertise. I have taken that and tried to create a document on how to do this. You will see some different/additional comments. My idea is to share it with everyone once it is finalized. I am about ready to try and walk through all the steps for real but would ask you to read this over before I commit several hours more to this project. Any comments are appreciated. I am concerned about steps 9 through 13. Not sure i have it right. Any comments will be appreciated. Maury
    ++++++++++++++++++++++++++++++++
    How to create a Slideshow on DVD
    with music
    using iPhoto and iTunes
    as input sources
    1. Select, crop, and fix slides needed from the iPhoto library. Put them into a newly named folder. (Not a slide show.)
    2. Import this folder into iMovie using KenBurns ON.
    3. Add any necessary transitions between various segments of resulting movie.
    (This should be the finished visual project. Using this write down the exact timing needed for stop/start each segment and the total length of the movie.)
    4. Go to iTunes and select various tunes/songs/music desired.
    5. Go to Amadeus and open a new file. (This single will end up the same length as the visual project).
    6. Open JACK to connect iTunes to Amadeus.
    7. Choose a tune, find the correct snippet of music and adjust to stop/start times from 3 above. Move your snippet to Amadeus. Use cross fade so one snippet will blend into the next one. Load these in the correct order of the slideshow segments.
    (Note: Music purchased from the iTunes Store is "protected" in ACC and will no render into another format. This means it cannot be used in this example. A major inconvenience.)
    8. Your result will be string of snippets strung together in proper order and in total making up a single file the same length as your slideshow.
    9. Paste this new music file into the iMovie.
    10, Close iMovie.
    11. Open iDVD, select your theme and leave the menu window open.
    12. Open the iMovie project file (Control-click on it and select Show Package Contents) and navigate to the Shared Movies/iDVD folder.
    13. Drag the .mov file in there into the open iDVD window being sure not to drop it into any menu drop zones.
    (You'll know if you are in a drop zone (if there are any) since a text link appears with the same name as the movie file you're dragging.)
    (This allows iDVD to do the rendering thus eliminating two renderings on the same file which reduces image quality......)
    14 Save the project to Disk Image instead of burning directly to disk.
    15. Open the disk image and launch DVD Player.
    This will let you check out the finished project with DVD Player before committing to disk. You'll be able to check out the audio sync, typos etc.
    16. When you are ready to burn to disk use File>Disk Utility.
    (See: Burning a disk image file on a CD or DVD in Mac OS X.) The first step, saving to Disk Image is the encoding process and takes the longest time. Often it will seem like it's hung on the audio encoding but let it go on and on, as it often is the longest part of the encoding process.
    17. This should be the finished product.
    18. Snail Mail DVD to adorable grandchild and wait for parents to call saying it made them both cry. (Of course, this implies you are a grandparent.)
    Credits: Old Toad and Maury56
    Software: iLife 06 (iPhoto, iTunes, iMovie, and iDVD); DVD Player; Amadeus; and Jack.
    +++++++++++++++++++++++++++++++++
    About item 16, is there any way to tell the difference between "hung up" and "encoding" while it is going on?
    Maury
    PowerMac G4   Mac OS X (10.4.6)  

  • Can columns be more than 1000 in a select query (oracle 11 g)

    I am getting this error: "ORA-01792: maximum number of columns in a table or view is 1000"
    I have a dynamic query where number of column can increase according to the user input.
    They can expect more than 1000 columns. Is it possible to fetch more than 1000 rows in a query?
    I appreciate all your help.
    Edited by: user10232912 on Apr 26, 2012 2:07 AM

    >
    They can expect more than 1000 columns.
    Then they are idiots. IMO.
    Open challenge. Show me an entity with a 1000 attributes and I will show you a flawed data
    model and a total lack of grasping fundamentals of implementing that into a relation database product like Oracle.I second that - as someone who once had to ETL a system which had a table with 35.000 fields - that's 35K.
    It was a system which made extensive use of arrays - and arrays of arrays of arrays...
    Paul...

  • Parameter more than 45 characters in selection-screen

    Hi All,
    I requre help for displaying a parameter of visible length 75 characters in selection screen. By default it is displaying 45 characters.
    Thanks in advance.
    Regards,
    Rohit Goel

    Hello,
    Use the line screen element to do it. Follow an example and you can get the positions like described in the SAP Help Documentation
    SELECTION-SCREEN: BEGIN OF LINE,
                      PUSHBUTTON 2(10) push USER-COMMAND fcode,
                      POSITION 16.
    PARAMETERS para TYPE c LENGTH 20.
    SELECTION-SCREEN: COMMENT 40(40) text,
                      END OF LINE.
    INITIALIZATION.
      push = 'Push'.
      text = '<--- Fill field, then push button!'.
    Regards.

  • Showing more than one month while selecting date via mx:DateField

    Hello,
    I would like to show previous month, current and next accordingly to current date.
    Is it possible to achieve this using DateField?
    If no is there any 3rd party control allows such a feature? I found nothing on this.
    I suppose I'm not the first one who need this ability. Please, could any kind sould help me?
    Thanx in advance.

    Its seems like an awfully old post but I am facing same problem at the moment so I thought I will put in my 2 cents to the discussion;)
    Jason, what you wrote is not true I am afraid. Property selectableRange of DateField expects object and not an array. In other words it will only work with singular date range.
    I am currently working on a tool where I need to limit date selection on DateField. Basically user will select some task on drop down and type of the task (assignment) should restrict possible entries on DateField component. I am no stranger to using property selectableRange but sadly it does not work with multiple ranges:(
    I would not like to try and change standard Flex code (DateChooser.as for instance) to achieve that as I don’t want to be bothered with re-doing these bits when upgrading (migrating to newer Flex or whatnot).
    kilyas2007, I would suggest doing the following:
         1) Merge your date ranges into one (from lowest to highest value)
         2) Disable unwanted dates in between using disabledRanges property (this is an array parameter thankfully)
    Perhaps someone knows a better way to do it?
    Regards
    Michael

  • Calling more than single colums by selecting from listdown menu?

    how to call and display many colums after just selecting one info from a listdown menu? my system should display the whole one row of the training info...here's my code...thanx in advance for any helps....
    <code>
    <%
         if(tajuk_training!=null)
              String sql     = "SELECT * FROM TRAINING_HEAD WHERE TH_STATUS_ = 'APPROVE' ";     
              try
                   PreparedStatement pstmt = conn.prepareStatement(sql);
                   pstmt.setString (1,tajuk_training);
                   ResultSet rset = pstmt.executeQuery ();
                   rset.next();
                   desc=rset.getString("TT_DESC");
              catch(Exception e)
    %>
    </code>

    I really need help urgently....hope there will be somebody out there willing to help me...thanx a lot....

  • Mass transport: how to select more than 7 roles at a time

    I have about 50 roles I need to transport.  I would like to use mass transport, but when I select all 50 roles, only the first 7 are actually added to the transport list. 
    I have to repeat the selection many times before all the roles are included in my transport request.. still a rather time consuming process.  How can I select more than 7 at a time?

    > And now we're back to my original problem. 
    Oh, dear....
    > We have a structured role naming convention that would make it very easy to select with wildcards.. however, when I try to do it that way, the system won't let me select more than 8 roles at a time.
    This is where I think you do not have a problem but a misunderstanding. Never mind, we see those quite often.
    > See if you can reproduce this problem in your environment:
    I had to start it first (minisap Nw2004), renew the license and wait for the transport tool to compile. You've got me busy here on a saturday
    > 1. Start PFCG
    done
    > 2. Utilities -> Mass Transport
    yep, watched it compile.
    > 3. Click multiple selection button
    yep
    > 4. Enter a mask that would match more than 8 roles,
    yep
    > press F4
    NO! NO! NO! NO! NO! NO! NO! NO! NO! NO!
    This is where the misunderstanding starts
    > 5. Click select all (make sure more than 8 roles are selected)
    No
    > 6. Click copy button
    No
    > 7. Observe that only the first 8 role are actually copied to the multiple selection list
    Instead, hit F8 where you have hit F4 and find out all roles that fit the mask will be entered into the transport.
    You have mixed up the actual report selection and the search functionality of the selection screen. Play with it, it's fun.
    One word of caution: Mass transport can cause perfromance problems and errors. I always try not to enter more than 500 roles into a transport at a time.
    Cheers!
    Jurjen

  • Subquery returned more than one value

    Hi,
    I have this statement which has been working fine - not I get a 'Subquery returned more than one value" error:
    SELECT
    'WAS3' AS 'Rec ID',
    E.EecEEID AS 'Emp ID',
    eepNameFirst AS 'First Name',
    eepNameLast AS 'Last Name',
    EecDateOfOriginalHire AS 'Service Date',
    (SELECT DATEDIFF(YEAR, EecDateOfOriginalHire, getdate()) from empcomp EC WHERE EC.EecEEID = E.EECEEID) as 'Yrs of Serv'
    FROM
    EmpPers
    JOIN EmpComp E
    ON E.eecEEID = eepEEID
    JOIN Company
    ON eecCoID = cmpCoID
    WHERE
    EecDateOfTermination IS NOT NULL
    AND EXISTS
    (SELECT 1
    FROM EmpComp e2
    WHERE e2.EecEEID = E.EecEEID
    --AND e2.eecEmplStatus <> 'A')-- changed to <> ...this WAS/is to filter out anyone that was termed then re-hired
    --AND E.EecTermReason NOT IN ('I01','I02','I03','I14','I22','V05','V07','V09','V12','V22','V13', 'TRO')
    AND E.eecDateOfTermination
    IN (SELECT (EC.eecDateOfTermination)
    FROM EMPCOMP EC
    WHERE EC.EecEEID = E.EECEEID
    AND EC.eecDateOfTermination IS NOT NULL
    AND eC.eecDateOfTermination >= DATEADD(wk,DATEDIFF(wk,0,GETDATE()),0)
    AND EC.eecDateOfTermination <=DATEADD(wk,DATEDIFF(wk,0,GETDATE()),6)
    AND e.eecDateOfTermination >= DATEADD(wk,DATEDIFF(wk,0,GETDATE()),0)
    AND E.eecDateOfTermination <= DATEADD(wk,DATEDIFF(wk,0,GETDATE()),6)))
    --AND eC.eecDateOfTermination >= DATEADD(wk,DATEDIFF(wk,0,('12/30/2007')),0)
    -- AND EC.eecDateOfTermination <=DATEADD(wk,DATEDIFF(wk,0,('12/30/2007')),6)
    -- AND e.eecDateOfTermination >= DATEADD(wk,DATEDIFF(wk,0,('12/30/2007')),0)
    -- AND E.eecDateOfTermination <= DATEADD(wk,DATEDIFF(wk,0,('12/30/2007')),6)
    -- AND E.eecDateOfTermination IS NOT NULL ))
    --added below per Paul Cottle to exclude employeess less than four years
    AND E.eecdateoforiginalhire >=dateadd(year,-4, CURRENT_TIMESTAMP)
    qeqw

    Check this, if it works:
    SELECT
    'WAS3' AS 'Rec ID',
    E.EecEEID AS 'Emp ID',
    eepNameFirst AS 'First Name',
    eepNameLast AS 'Last Name',
    EecDateOfOriginalHire AS 'Service Date',
    DATEDIFF(YEAR, EecDateOfOriginalHire, getdate()) as 'Yrs of Serv'
    FROM EmpPers
    JOIN EmpComp E ON E.eecEEID = eepEEID
    JOIN Company ON eecCoID = cmpCoID
    WHERE EecDateOfTermination IS NOT NULL
    AND EXISTS
    (SELECT 1
    FROM EmpComp e2
    WHERE e2.EecEEID = E.EecEEID
    AND E.eecDateOfTermination
    IN (SELECT (EC.eecDateOfTermination)
    FROM EMPCOMP EC
    WHERE EC.EecEEID = E.EECEEID
    AND EC.eecDateOfTermination IS NOT NULL
    AND eC.eecDateOfTermination >= DATEADD(wk,DATEDIFF(wk,0,GETDATE()),0)
    AND EC.eecDateOfTermination <=DATEADD(wk,DATEDIFF(wk,0,GETDATE()),6)
    AND e.eecDateOfTermination >= DATEADD(wk,DATEDIFF(wk,0,GETDATE()),0)
    AND E.eecDateOfTermination <= DATEADD(wk,DATEDIFF(wk,0,GETDATE()),6)))
    AND E.eecdateoforiginalhire >=dateadd(year,-4, CURRENT_TIMESTAMP)
    If this post answers your query, please click "Mark As Answer" or "Vote as Helpful".

  • How to go back more than one page at a time?

    I'm pretty sure there used to be a drop-down arrow by the back/fwd buttons, so you could go back more than one page by selecting it. Yeah? Where did it go?

    You can either right-click on the back/forward buttons or hold down the left mouse button until the list appears.

Maybe you are looking for

  • Procedure to generate invoice in xml---please help

    Hi all, I have to write code review of a pakage which contain procedure to generate invoice in XML.The procedure contain two files .pkb and .pks.All i know is that it will deliver elemt of the post script layout.?But i dont understand what it mean no

  • How to get logged in user name from windows service c#

    i use the below code to get logged in user name. private string GetLoggedInUser() string userName = ""; if (System.Security.Principal.WindowsIdentity.GetCurrent() != null) userName = System.Security.Principal.WindowsIdentity.GetCurrent().Name; return

  • The propagation no imports the Campaigns

    Hi, I have a problem with the partial propagation a the production server (Oracle Portal 10.3.2 on Centos 5.5 x86). First performed the inventary local after permorfed the inventory of the server, after this process performed the session of propagati

  • Red glow coming from superdrive

    this may be a stupid question but here goes. i have looked through the forums, and googled this and have yet to find any mention of whether or not it's ok for there to be a red light (glow) coming from my superdrive when i'm burning. does this indica

  • Why the jsp page can not be displayed every time?

    I created a jsp page which accesses the data from the oracle database and generates some dynamic results at run time. Most of the time the page works well, but randomly the page can not be displayed. It seems not an application issue. Can someone tel