In oracle rac, If user query a select query and in processing data is fetched but in the duration of fetching the particular node is evicted then how failover to another node internally?

In oracle rac, If user query a select query and in processing data is fetched but in the duration of fetching the particular node is evicted then how failover to another node internally?

The query is re-issued as a flashback query and the client process can continue to fetch from the cursor. This is described in the Net Services Administrators Guide, the section on Transparent Application Failover.

Similar Messages

  • HT1766 i am new user of ipod touch 4g and i want to know to to restore backup one computer to the another computer.

    i am new user of ipod touch 4g and i want to know to to restore backup one computer to the another computer.

    Maybe this since I am not clear what you want to do.
    Syncing to a "New" Computer or replacing a "crashed" Hard Drive: Apple Support Communities

  • Oracle RAC + HDS User Please help Migration Topic

    Hi DBA/Storage Admin,
    I have following issue that need your help (is a Solaris + Oracle 10g):
    1. We are going to migrate data center, we going to move physical server BUT we are going to purchase new Hitachi Storage.
    2. We are going to use Hitachi TrueCopy to clone all the OCR, Vote Disk and ASMDisks
    In the server I have following softlink created:
    /dev/rdsk/myrac/ocr -> /dev/rdsk/myolddisk1d0s0
    /dev/rdsk/myrac/votedisk -> /dev/rdsk/myolddisk2d0s0
    /dev/rdsk/myrac/asmdisk -> /dev/rdsk/myolddisk3d0s0
    What I am going to do is to recreate the softlink to the new LUN, then change the permission to either root:oinstall and oracle:oinstall and 640 or 660 accordingly.
    /dev/rdsk/myrac/ocr -> /dev/rdsk/newdisk1d0s0
    /dev/rdsk/myrac/votedisk -> /dev/rdsk/newdisk2d0s0
    /dev/rdsk/myrac/asmdisk -> /dev/rdsk/newdisk3d0s0
    Please help me will above plan worked?
    Thanks for sharing.

    HexSin wrote:
    Hi DBA/Storage Admin,
    I have following issue that need your help (is a Solaris + Oracle 10g):
    1. We are going to migrate data center, we going to move physical server BUT we are going to purchase new Hitachi Storage.
    2. We are going to use Hitachi TrueCopy to clone all the OCR, Vote Disk and ASMDisks
    I cannot advise on the detail of your proposed method, but may I ask one question: are you certain that you have the best approach? If it is possible to mount the old and the new storage on the same node(s), then you can move the disk groups to the new storage by using ASM to relocate file extents, and you can also move the OCR and vote devices. All with zero downtime,

  • Query in Select query operation

    Please excuse me for posting this again.
    I'm stuck up with this for 3 days. Lenghty post pls do read and help me.
    How is the select query going to be changed in the SAP so that the original database behind it understands it. I want to know the operation of IN operation in where clause where in we can use ranges.
    I'm asking this because I'm facing a problem using Native SQL.
    Query is like this:
    EXEC SQl.
    OPEN C1 for
    SELECT field1 from table@domain where field2 IN :ABAP_VAR.
    ENDEXEC.
    EXEC SQL.
    FETCH C1 NEXT INTO :VAR1 , :VAR2
    ENDEXEC.
    Oracle usually recognises this statement IN ( '2222' , '3658' , '6895' )
    But here this field that is build dynamically like this is not recognising them as seperate fileds but instead it is taking them as a single string and not selecting anything.
    But if a single value is passed it is fetching the data into the cursor. And the code is working fine.
    Any help in this is highly appreciable.

    "if a in r_range" is is effectively: does the value held in 'a' comply with the values held in range 'r_range'. Ranges can hold NE, patterns etc so this can get quite complex.
    You can see that it is very different from the SQL type IN.
    If your range hold several values you could unstrip it into a string varaible so that it ended up having a value something like: ( '2222' , '3658' , '6895' ). Not sure if you need the '(' but it would be something like this:
    eg,
    assuming your range is simple and only holds 'I' and 'EQ' values:
    data v_string type string.
    loop at r_range.
    concatenate v_string '@''' r_range-low  '''@' into v_string.
    endloop.
    REPLACE
      ALL OCCURRENCES OF '@'
      IN v_string
      WITH ' '.
    Then you can use:
    SELECT field1 from table@domain where field2 IN :v_string.

  • SAP query field selection order and text

    Hello All,
       Is there any way I can change the position of fields on the selection screen of query. Also can I change the text of the selection fields. Thanks
    Atul

    In SQ01 enter your query name and go into change mode, on the menu click "Goto" , "Field Selection" then "Field Selection"
    in there change the text of selection field, to change to ordering just enter the number sequence in the "No" the order in which you want them to appear. Like
    Production Order 02
    Order Type       03
    Plant            01
    after you execute the query selection screen will appear like below
    Plant
    Production Order
    Order Type

  • Oracle RAC 11.2 on Windows without DNS and DOMAIN

    I am trying to install Oracle RAC 11.2 in windows 2008R2 64 bit which is on workgroup and no available DNS.
    I read that SCAN requires DNS and in case DNS is not available, then host file will do but only one SCAN address will do.
    Can anyone help me out on this set up. Any steps/procedure is highlyh appreciated.
    thanks..

    Remember you can only resolve one scan IP if you're using hosts file
    example
    192.168.100.1 node1
    192.168.100.2 node2
    192.168.110.1 node1-private
    192.168.110.2 node2-private
    192.168.100.10 node1vip
    192.168.100.20 node2vip
    192.168.100.100 racscan
    all nodes must have the same hosts file entries

  • I cannot download firefox, when i try i get a window that asks to run as admin or user, i have selected both and when i try the download stops

    i have been trying to download firefox, everytime i do i get a window asking me to pick a user, either admin or user, i have tried selecting them and when i hit ok the download is gone

    Save the Firefox installer to the desktop and start the installation with a double click or trey the right-click context menu and use Run as Administrator
    You can find the latest Firefox release here:
    *Firefox 9.0.x: http://www.mozilla.org/en-US/firefox/all.html

  • Query on select query

    hi,
    in my selection screen i have 5 fields
    ie matnr mtart matkl erdsa from table mara and
    werks from table marc
    o/p
    if i input any one of the 5 fields in the selection screen i need the output for all the 5 fields which matches the selection condition.
    Thanks in advance.

    Hello,
    Check this code :
    [code]TABLES: mara,marc.
    SELECT-OPTIONS: s_matnr FOR mara-matnr NO INTERVALS,
                    s_mtart FOR mara-mtart NO INTERVALS,
                    s_matkl FOR mara-matkl NO INTERVALS,
                    s_ersda FOR mara-ersda NO INTERVALS,
                    s_werks FOR marc-werks NO INTERVALS.
    DATA: BEGIN OF itab OCCURS 0,
            matnr TYPE matnr,
            mtart TYPE mtart,
            matkl TYPE matkl,
            ersda TYPE ersda,
            werks TYPE werks_d,
          END OF itab.
    DATA: wa_tab LIKE LINE OF itab.
    SELECT amatnr amtart amatkl aersda
           b~werks
           FROM mara AS a JOIN marc AS b
           ON bmatnr = amatnr
           INTO TABLE itab
           WHERE a~matnr IN s_matnr
           AND   a~mtart IN s_mtart
           AND   a~matkl IN s_matkl
           AND   a~ersda IN s_ersda
           AND   b~werks IN s_werks.
    IF sy-subrc <> 0.
    ENDIF.[code]
    Regards,
    Deepu.K

  • SELECT ROWNUM and ORDEY BY DATE

    I want to select the most recent row from a table where one column is null and have the following query.
    'select * from table_name where rownum < 2 and column1 is null order by date_stamp desc'
    Date_stamp column holds the system date when each row was inserted int this table. So whenever a row is insered into this table the date_stamp column always gets the curent sysem date.
    This is always returning me the oldest row not the most recent row. I tried to use
    GREATEST(select date_stamp from table_name)
    but it did not work as GREATEST expects dats seprated by commas.
    If there is a function which can convert the date_stamp to a numerical value(milliseconds from 1970 or something like what java has) I can order by that number and the most recent date should have the highest numerical value and thus should work.
    Is there a way to do this without having to write a procedure or function? I'm using 8i(8.1.7).
    Thanks

    Note that ORDER BY and ROWNUM cannot be combined the way you have in your query. Try this:
    SELECT *
    FROM   (SELECT *
            FROM   table_name
            WHERE  column1 IS NULL
            ORDER  BY date_stamp DESC)
    WHERE  rownum = 1

  • How do I select range and require end date in it crystal report

    I'm trying to select a range of dates in my records however it must include the end date from my parameters what is the syntax for that record selection and anything after the Start Date (open).  If the Date range doesn't end in the specified End Date then I don't want to see it.

    well I created two reports one with pulling all the end dates data then the other report with the stuff before that date and put the end date as a subreport in the other one so he can see what was done recently on the subreport and scroll through the other report while the subreport stays on the results bottom end - however he has to scroll through 100's of pages to find the data he wants so he doesn't like that. However it is a good mockup of the results he wants ...but he doesn't want to scroll through 100's of pages - my guess is he wants one report with end date only and any dates before hand.
    Original
    Part                         TransactionDate                         Qty                     Unit cost
    GA101                    10/11/2013                                  5                         1.23
    GA101                    5/25/2012                                   10                        2.23   
    GA101                    8/14/2011                                   15                        5.15
    HE8924                  8/22/2014                                   14                        4.25  
    HE8924                  6/13/2012                                   2                          3.25
    UY325                    8/22/2014                                   5                         6.32
    UY325                    7/10/2010                                   2                         3.25
    TE5689                  8/12/2014                                   1                          8.14
    TE5689                  5/16/2013                                   2                          9.12
    IO8978                    8/22/2014                                   6                         8.25
    IO8978                    5/20/2013                                   8                         7.25
    IO8978                    3/15/2012                                   4                         9.25
    IO8978                    1/20/2009                                   5                         10.25
    MY CODE RESULTS SHOULD SEE
    START DATE 01/01/2011  END DATE 08/22/2014
    Part                         TransactionDate                         Qty                     Unit cost
    HE8924                  8/22/2014                                   14                        4.25  
    HE8924                  6/13/2012                                   2                          3.25
    UY325               
      8/22/2014                              
        5                    
       6.32
    IO8978                    8/22/2014                                   6                         8.25
    IO8978                    5/20/2013                                   8                         7.25
    IO8978                    3/15/2012                                   4                         9.25

  • In Oracle SQL, cannot use column in select statement and order by

    Hi,
    Is there a work around for this.
    Thanks in advance
    Pablo.

    Hi,
    943981 wrote:
    Hi All,
    This is the error I get:
    ORA-00960: ambiguous column naming in select list
    00960. 00000 - "ambiguous column naming in select list"
    *Cause:    A column name in the order-by list matches more than one select
    list columns.
    *Action:   Remove duplicate column naming in select list.
    Error at Line: 6 Column: 17That error message looks pretty clear to me. What don't you understand?
    Either
    (a) use aliases, so each column has a unique name, or
    (b) remove duplicate columns from the SELECT clause.
    Post your query. It's hard to say exactly what you're doing wrong when we don't know exactly what you're doing.
    For best results, post a complete test script (including CREATE TABLE and INSERT statements, if necessary) that people can to re-create the problem and test their ideas.
    See the forum FAQ {message:id=9360002}

  • Small Query in Selection Screen and Screen.

    Hello Guys...
    I have Created a program using Selection-Screen 1000. and Screen 2000.
    At Selection-Screen I have written code
    Start-of-selection.
      ok_code = sy-ucomm.
      CASE ok_code.
        WHEN 'BACK'.
            LEAVE PROGRAM.
    end case.
    and At the user-command of Screen 2000.
    I have written Follow code.
    ok_code = sy-ucomm.
      CASE ok_code.
        WHEN 'BACK'.
            LEAVE PROGRAM.
        when 'CANCEL'.
           LEAVE PROGRAM.
        when 'ADD'.
           Perform Add_New_Row.
        when 'REMOVE'.
           Perform DELETE_Row.
        when 'SAVE'.
           Perform SAVE_DATA.
        when 'EXIT'.
           LEAVE PROGRAM.
        endcase.
    My Problem is that I am not able to come out from program through back button..
    Follow is like that..
    at Selection Screen user provide some input on that basis screen 2000 Call.
    but when i press back button on screen 2000 Selection screen 1000 appear.
    and my Problem is that when i press back button on selection-screen on 1000.
    it's goes to screen 2000.
    I know, it's little thing I am missing, Let me know ..what was that..
    Cheers......
    Swati...

    Hello Guys...
    Previous code I have given is modify by this but same problem..
    I have dubug the program and trace it. it's will not goes on Selection Screen
    on Each back button the event occurs which is user-command 2000.
    I have Created a program using Selection-Screen 1000. and Screen 2000.
    At Selection-Screen I have written code
    Start-of-selection.
    ok_code = sy-ucomm.
    CASE ok_code.
    WHEN 'BACK'.
    LEAVE PROGRAM.
    end case.
    and At the user-command of Screen 2000.
    I have written Follow code.
    ok_code = sy-ucomm.
    CASE ok_code.
    WHEN 'BACK'.
          CALL SELECTION-SCREEN '1000'.
            EXIT.
    when 'CANCEL'.
    LEAVE PROGRAM.
    when 'ADD'.
    Perform Add_New_Row.
    when 'REMOVE'.
    Perform DELETE_Row.
    when 'SAVE'.
    Perform SAVE_DATA.
    when 'EXIT'.
    LEAVE PROGRAM.
    endcase.
    My Problem is that I am not able to come out from program through back button..
    Follow is like that..
    at Selection Screen user provide some input on that basis screen 2000 Call.
    but when i press back button on screen 2000 Selection screen 1000 appear.
    and my Problem is that when i press back button on selection-screen on 1000.
    it's goes to screen 2000.
    I know, it's little thing I am missing, Let me know ..what was that..
    Cheers......
    Swati...

  • I am a power user with 100 open URLs and need a way to grep open tabs by a part of the URL. I can create an add-on if the open URLs are exposed.

    I imagine I could query an sqlite3 table for open windows but don't know the details for what is available. I trust firefox to always be able to open a previous session that I use open windows as sort of a task list. Duplication of information is futile.

    I actually think the default single session storage is a bit fragile. Do you use the [https://addons.mozilla.org/en-US/firefox/addon/session-manager/ Session Manager] extension or [https://addons.mozilla.org/en-us/firefox/addon/tab-mix-plus/ Tab Mix Plus] to provide greater depth?
    The "Switch to Tab" feature of the address bar provides some of the functionality you want. However, the fact that it shows "Switch to Tab" rather than the address on that tab makes it hard to see if it's the one you want.
    If you want to build your own add-on, here are a couple that might serve as a starting point or resource for understanding how to work with tabs in Firefox. I haven't tried them myself. (MPL licensed for code re-use.)
    * [https://addons.mozilla.org/en-us/firefox/addon/tabhunter/ Tabhunter] - search for a string in URLs across all windows, choose from dialog
    * [https://addons.mozilla.org/en-us/firefox/addon/showcase/ Showcase] - view tab thumbnails across all windows, with a find feature

  • Just updated to 9.0.1~ select homepage as about:blank & startpage as blank but it continues to open with the mozilla whatsnew page how can I stop this & have blank as I require?

    Per above I am using Firefox 9.0.1 with Windows XP Home Edition & have been unable so far to set my Firefox startup preferences per all previous versions to Blank page even tho' that's what is selected under Tools-Options-General

    Hi macanudo,
    You should look at [https://support.mozilla.com/kb/Firefox+has+just+updated+tab+shows+each+time+you+start+Firefox this article about that specific issue] and the article [http://kb.mozillazine.org/Preferences_not_saved Preferences not saved]. It might be a pref.js issue, so the second article should fix your issue with the search bar. These should give you all the information you need!
    If that doesn't work:
    # Type about:config in the address bar
    # Click ''I'll be careful, I promise'' if prompted
    # In the Filter input field type ''startup''
    # Double click on startup.homepage_override_url
    # Delete the text string and click ''OK''
    # Close Firefox and reopen the window to verify that it has worked.
    Hopefully this helps!

  • In dveloping a web page as a new user to html, I can't open my file in Firefox but can in IE what is the difference in this HTML for Firefox?

    I have a problem with the HTML documentation on all of my pages nothing will shows. I had a page developed ion 2006 that worked fine and but then none of the pages worked so I began to rewrite new pages as opposed to revising my old ones. Nothing is working and nothing will show up and the HTML language is all checked. I wrote a simple page to show one graphic and it still will not work. Am I missing something here at the beginning of each page? This happens to all people that try to view my page using Firefox. I am as you can guess a novice at this.

    A good place to ask questions and advice about web development is at the mozillaZine Web Development/Standards Evangelism forum.<br />
    The helpers at that forum are more knowledgeable about web development issues.<br />
    You need to register at the mozillaZine forum site in order to post at that forum.
    See http://forums.mozillazine.org/viewforum.php?f=25
    You need to post a link to the website or post relevant parts of the code to make it possible to inspect the code.

Maybe you are looking for

  • Will chaging iTunes installation directory from C: also chage the iTunes registry and backup directories?

    Hi, I have a hard time updating my iPad 1st gen to the iOS 5. The problem is that I have insufficient disk space on my C drive. The whole partition is 30 GB , Windows 7 takes up 10GB, I have some necessary programs installed there also and as a resul

  • Creative Cloud Desktop App does not upload CERTAIN files

    Trying to use the Creative Cloud Desktop app to manage my Adobe Audition Files. The entire folder structure syncs, but individual files keep failing. The desktop app does not show any useful messages, but I found this error in the CoreSync.log file.

  • Using 3G phone for voice only

    After purchasing my beloved iPhone 4, I would like to pass my old 3G phone to my wife, who uses voice only, no data. AT&T says the iPhone 3G will not work properly without a data plan and cannot be used for voice only service. Is AT&T correct? Is the

  • Extending the range of Airport Extreme in house with walls

    Any sugggestions on the best way to extend the range of Airport Extreme? The base unit is located in an office at one end of a house. I would like to be able to connect from rooms at the other end of the house, some 70' away. There are three walls be

  • How is validation done using BPM and MDM

    Hi everybody. I have a business usecase. It is with BPM-MDM Integration. I need your comments on this. Data is transferred/imported from ERP to MDM. This process is automized and data is imported through Import Server. whenever the import happens, va