Can any one say that list of hardware for 11gr2 2node rac installation?  thank in advance

can any one say that list of hardware for 11gr2 2node rac installation?  thank in advance

Hi ,
Hardware Requirements
Physical memory (at least 1.5 gigabyte (GB) of RAM)
An amount of swap space equal to the amount of RAM
Temporary space (at least 1 GB) available in /tmp
A processor type (CPU) that is certified with the release of the Oracle software being installed
A minimum of 1024 x 786 display resolution, so that Oracle Universal Installer (OUI) displays correctly
All servers that are used in the cluster must have the same chip architecture, for example, all 32-bit processors or all 64-bit processors
Adequate disk space in the software installation locations to store the Oracle software
You need at least 5.5 GB of available disk space for the Grid home directory, which includes both the binary files for Oracle Clusterware and Oracle Automatic Storage Management (Oracle ASM) and their associated log files, and at least 4 GB of available disk space for the Oracle Database home directory, or Oracle home directory.
About Shared Storage
These Oracle Clusterware components require the following disk space on a shared file system:
Three Oracle Clusterware Registry (OCR) files, 300 MB each, or 900 MB total disk space
Three voting disk files, 300 MB each, or 900 MB total disk space
If you are not using Oracle ASM for storing Oracle Clusterware files, then for best performance and protection, you should use multiple disks, each using a different disk controller for voting disk file placement. Ensure that each voting disk is configured so that it does not have share any hardware device or have a single point of failure.
Network Hardware Requirements
When you configure the network for Oracle RAC and Oracle Clusterware, each node in the cluster must meet the following requirements:
Each node must have at least two network interface cards (NIC), or network adapters. One adapter is for the public network interface and the other adapter is for the private network interface (the interconnect). Install additional network adapters on a node if that node meets either of the following conditions:
Does not have at least two network adapters
Has two network interface cards but is using network attached storage (NAS). You should have a separate network adapter for NAS.
Has two network cards, but you want to use redundant interconnectsIn previous releases, to make use of redundant networks for the interconnect, bonding, trunking, teaming, or similar technology was required. Oracle Grid Infrastructure for a cluster and Oracle RAC can now make use of redundant network interconnects, without the use of other network technology, to enhance optimal communication in the cluster. This functionality is available starting with Oracle Database 11g Release 2 (11.2.0.2).Redundant Interconnect Usage enables load-balancing and high availability across multiple (up to 4) private networks (also known as interconnects).
However, When you install Oracle software, Oracle Universal Installer (OUI) automatically performs hardware prerequisite checks and notifies you if they are not met.
Regards,
Pradeep. V

Similar Messages

  • Can any one say What are the mandatory parameters in BAPI_GOODSMVT_CREATE

    Hi,
    Can any one say What are the mandatory parameters in
    BAPI_GOODSMVT_CREATE.
    Helpful answer will be rewarded.

    Hi,
    The following is an abap program making used of the BAPI function BAPI_GOODSMVT_CREATE to do Goods Receipts for Purchase Order after importing the data from an external system.
    BAPI TO Upload Inventory Data
    GMCODE Table T158G - 01 - MB01 - Goods Receipts for Purchase Order
                         02 - MB31 - Goods Receipts for Prod Order
                         03 - MB1A - Goods Issue
                         04 - MB1B - Transfer Posting
                         05 - MB1C - Enter Other Goods Receipt
                         06 - MB11
    Domain: KZBEW - Movement Indicator
         Goods movement w/o reference
    B - Goods movement for purchase order
    F - Goods movement for production order
    L - Goods movement for delivery note
    K - Goods movement for kanban requirement (WM - internal only)
    O - Subsequent adjustment of "material-provided" consumption
    W - Subsequent adjustment of proportion/product unit material
    report zbapi_goodsmovement.
    parameters: p-file like rlgrap-filename default
                                     'c:\sapdata\TEST.txt'.
    parameters: e-file like rlgrap-filename default
                                     'c:\sapdata\gdsmvterror.txt'.
    parameters: xpost like sy-datum default sy-datum.
    data: begin of gmhead.
            include structure bapi2017_gm_head_01.
    data: end of gmhead.
    data: begin of gmcode.
            include structure bapi2017_gm_code.
    data: end of gmcode.
    data: begin of mthead.
            include structure bapi2017_gm_head_ret.
    data: end of mthead.
    data: begin of itab occurs 100.
            include structure bapi2017_gm_item_create.
    data: end of itab.
    data: begin of errmsg occurs 10.
            include structure bapiret2.
    data: end of errmsg.
    data: wmenge like iseg-menge,
          errflag.
    data: begin of pcitab occurs 100,
            ext_doc(10),           "External Document Number
            mvt_type(3),           "Movement Type
            doc_date(8),           "Document Date
            post_date(8),          "Posting Date
            plant(4),              "Plant
            material(18),          "Material Number
            qty(13),               "Quantity
            recv_loc(4),           "Receiving Location
            issue_loc(4),          "Issuing Location
            pur_doc(10),           "Purchase Document No
            po_item(3),            "Purchase Document Item No
            del_no(10),            "Delivery Purchase Order Number
            del_item(3),           "Delivery Item
            prod_doc(10),          "Production Document No
            scrap_reason(10),      "Scrap Reason
            upd_sta(1),            "Update Status
          end of pcitab.
    call function 'WS_UPLOAD'
      exporting
        filename                      = p-file
        filetype                      = 'DAT'
    IMPORTING
      FILELENGTH                    =
      tables
        data_tab                      = pcitab
    EXCEPTIONS
      FILE_OPEN_ERROR               = 1
      FILE_READ_ERROR               = 2
      NO_BATCH                      = 3
      GUI_REFUSE_FILETRANSFER       = 4
      INVALID_TYPE                  = 5
      OTHERS                        = 6
    if sy-subrc <> 0.
      message id sy-msgid type sy-msgty number sy-msgno
              with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      exit.
    endif.
    gmhead-pstng_date = sy-datum.
    gmhead-doc_date = sy-datum.
    gmhead-pr_uname = sy-uname.
    gmcode-gm_code = '01'.   "01 - MB01 - Goods Receipts for Purchase Order
    loop at pcitab.
      itab-move_type  = pcitab-mvt_type.
      itab-mvt_ind    = 'B'.
      itab-plant      = pcitab-plant.
      itab-material   = pcitab-material.
      itab-entry_qnt  = pcitab-qty.
      itab-move_stloc = pcitab-recv_loc.
      itab-stge_loc   = pcitab-issue_loc.
      itab-po_number  = pcitab-pur_doc.
      itab-po_item    = pcitab-po_item.
      concatenate pcitab-del_no pcitab-del_item into itab-item_text.
      itab-move_reas  = pcitab-scrap_reason.
      append itab.
    endloop.
    loop at itab.
      write:/ itab-material, itab-plant, itab-stge_loc,
              itab-move_type, itab-entry_qnt, itab-entry_uom,
              itab-entry_uom_iso, itab-po_number, itab-po_item,
                                                  pcitab-ext_doc.
    endloop.
    call function 'BAPI_GOODSMVT_CREATE'
      exporting
        goodsmvt_header             = gmhead
        goodsmvt_code               = gmcode
      TESTRUN                     = ' '
    IMPORTING
        goodsmvt_headret            = mthead
      MATERIALDOCUMENT            =
      MATDOCUMENTYEAR             =
      tables
        goodsmvt_item               = itab
      GOODSMVT_SERIALNUMBER       =
        return                      = errmsg
    clear errflag.
    loop at errmsg.
      if errmsg-type eq 'E'.
        write:/'Error in function', errmsg-message.
        errflag = 'X'.
      else.
        write:/ errmsg-message.
      endif.
    endloop.
    if errflag is initial.
      commit work and wait.
      if sy-subrc ne 0.
        write:/ 'Error in updating'.
        exit.
      else.
        write:/ mthead-mat_doc, mthead-doc_year.
        perform upd_sta.
      endif.
    endif.
          FORM UPD_STA                                                  *
    form upd_sta.
      loop at pcitab.
        pcitab-upd_sta = 'X'.
        modify pcitab.
      endloop.
      call function 'WS_DOWNLOAD'
        exporting
          filename                      = p-file
          filetype                      = 'DAT'
    IMPORTING
      FILELENGTH                    =
        tables
          data_tab                      = pcitab
    EXCEPTIONS
      FILE_OPEN_ERROR               = 1
      FILE_READ_ERROR               = 2
      NO_BATCH                      = 3
      GUI_REFUSE_FILETRANSFER       = 4
      INVALID_TYPE                  = 5
      OTHERS                        = 6
    endform.
    *--- End of Program
    Reward for useful answers.
    Regards,
    Raj.

  • Dear frnz, i am doing my prjct in Lview. ie online PQ monitoring​. i need to simulate the system with disturbanc​es generated in Lview. so can any bdy plz tel me how to genrte PQ problems in labview. thanks in advance..

    dear frnz, i am doing my prjct in Lview. ie online PQ monitoring. i need to simulate the system with disturbances generated in Lview. so can any bdy plz tel me how to genrte PQ problems in labview. thanks in advance..

    I work in the power conversion industry and do these types of measurements all the time…
    Do you want to just measure power quality or create and measure power quality problems?
    What hardware are you using?
    Power quality analyzer?
    Programmable AC power source?
    Fast Transient Generator?
    Here is an example of what I do.
    To create PQ problems I use a California Instruments AC source set to nominal power for the unit under test. Using Labview I program several transients consisting of fixed and random duration dropouts and surges. I also use a Schaffer Fast Transient Burst Generator to apply high frequency noise bursts directly onto power lines.
    For measuring power quality I use a Voltech PM3000A power analyzer and Labview to measure everything from voltage, current, and frequency, to  harmonics and %THD
    Message Edited by RTSLVU on 07-23-2008 10:31 AM

  • Can any one suggest a realtime audio recorder for Reaktor in Logic please?

    Hi all,
    So its been a few days so far with Logic Pro 7 on my new intel Mac, I made the jump from PC land and Nuendo and am trying to get up to speed.
    What I am in dire need of is an application that I can use at the same time as Logic to record the output of some granular parts from Raktor5.
    Basically I am trying to manually do some tweaks on sounds that I just want to be recorder into audio files and then inport them into logic for further editing.
    Can any one make a good suggestion for such a think, or does Logic have something similar to this already built in?
    Thank you all in advance for the help and past help I have recieved in this forum.
    Cheers!

    Hi all,
    Thanks for the ideas... I went with the recorder box and that solution worked perfect! I used to be on a PC and had a Creamware system that allows for routing of audio any where with as many drivers as you want EG: Asio2, Wave and such at the same time so you could just have (at the time I was using Nuendo3) your DAW up, open an instance of soundforge and start weaking Reaktor ensembles from within your DAW host while recording direct to disk in sound forge with out having to do anything, it worked amazingly well.
    This is the next best thing.
    Now I just need to spend more time in Logic to learn my way around as I am a new user..
    Cheers!

  • Can any one suggest me useing right way for using cost centers

    Hello Guru's
    I am in implementation Projec, The client is in Depote Sales process, i just want to know about the cost cenetr and their importance we are creating 20 different cost centers is it really required to create 20 different cost centers, for integrations with MM And SD should i have to take one cost center per plant for Purcase and Sales related activites  are should i have to take different Cost Centers Purcase different and Sales different
    Can any one suggest which is the right way to use the cost center for integration
    Management     0010     DI10100010
    Finance & Accounts     0020     DI10100020
    HR and Personnel & Admin     0030     DI10100030
    Purchase - Equipment     0040     DI10100040
    Purchase - Parts     0050     DI10100050
    Purchase - General     0060     DI10100060
    Imports     0070     DI10100070
    Sales & Marketing - Equipment     0080     DI10100080
    Sales & Marketing - Parts     0090     DI10100090
    Sales - Miscalenous     0100     DI10100100
    Exports     0110     DI10100110
    Logistics     0120     DI10100120
    Services & Technical     0140     DI10100140
    Information Technology & Systems     0150     DI10100150
    Warehouse     0160     DI10100160
    Workshop      0170     DI10100170
    Workshop ( Repairs )     0180     DI10100180
    Production     0190     DI10100190
    Internal Audit     0200     DI10100200
    Legal     0210     DI10100210
    Training & Development     0220     DI10100220
    Research & Development     0230     DI10100230
    Moderator: Please, read basic SAP material on help.sap.com

    hi,
    my transaction is VL02N change outbound delivery.

  • Can any one tell me how to prepare for Swing interview

    hai,
    I have been working on swings for 18 months, till now i never attended any interview. I am having an nterview next week, i dont know what to prepare and how to prepare fo the interview. The only thing i know is how to use Swing components, i dont know theorytical part of it. Please some one guide me how to prepare for the interview. Please provide me interview questions. so that i may be bit confident while attending the interview.
    Thanks in advance
    Ravi

    This might give you an idea :
    http://forum.java.sun.com/thread.jsp?forum=57&thread=317742
    but I have no suggestion how to prepare, apart from writing as many Swing apps as possible.

  • Hello everyone, can any one help regarding activation

    i have got iphone 4s, i factory unlocked my iphone 4s, but now when ever i put any sim apart from the orignal SIM,it goes on to activation required, then it says Sim not valid , though i get the signal bars at the top, and carrier in SETTINGS->GENERAL->ABOUT-> also changed from orignal carrier to new. I dont know what to do, Can any one help me, i have paid for the factory unlocking to a guy and now that guy is not picking my phone, i dont know what to do.

    Ask him... he is not the carrier. ONLY the carrier can authorize unlocking it. There is a process that has to be followed involving restoring the phone after the unlock has been approved. If the phone was hacked at any time prior to requesting a legitimate unlock, it may not be usable at all after attempting to have it legitimately unlocked.

  • Hey, I had met a problem with installation. Can any one help me?

    Hi everyone, I'm an user of Windows 7(64 bit),
    I had just download "Master Collection CS5.5"
    Everything are fine but Adobe Acrobat Professional can't install on my computer.
    There are the details..:
    Exit Code: 6
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 4 error(s), 1 warning(s)
    WARNING: DW066: OS requirements not met for {AC76BA86-1033-F400-7760-000000000005}
    ----------- Payload: {AC76BA86-1033-F400-7760-000000000005} Acrobat Professional 10.0.0.0 -----------
    ERROR: Error 1324.The path R嶰up廨er un document num廨is?sur un multifonction.sequ or the volume is invalid. Please enter it again.
    ERROR: Install MSI payload failed with error: 1603 - 安裝時發生嚴重錯誤。
    MSI Error message: Error 1324.The path R嶰up廨er un document num廨is?sur un multifonction.sequ or the volume is invalid. Please enter it again.
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Acrobat Professional: Install failed
    Thanks

    Re: Hey, I had met a problem with installation. Can any one help me?
    This worked for an English version and the concept should work with all Adobe programs - new or old (hopefully in any language). My guess is that you have/had an older version of Acrobat/Reader on your computer hard drive that needs to be *completely* removed first. Uninstall the new (and any old) Acrobat; then try using the "kb2..." guideline link below before reinstalling the new Acrobat. I am including the lengthy instructions in order to help others with more extensive installation problems. Good luck!
    I live on a fixed income and use CS for a hobby. I had problem installing Adobe Creative Suite (CS1) to Windows 7 64-bit Pro on my new computer. Also installed Adobe Photoshop LR3. What I learned: All Adobe products (Flash, Acrobat/Reader, Photoshop, Creative Suites, etc.) leave a VERY pervasive footprint on your hard drive. Logic finally worked for me.... think of building a house; there is an order you have to do things in. First, you have to clean the area before laying the foundation; then you have to build the framework before you put the roof on. You cannot install an older program over ANY newer program; and you will sometimes have a problem installing a newer program containing Flash, Reader, etc. unless you "erase" the older versions of Flash, Reader beforehand. If installing older programs, do a Custom/Manual install; do not install older versions of Flash, Reader, etc.  packaged with your Adobe software.
    SOLUTION (not easy, but it works):
    I first tried this; it did not solve my problem (but, if applicable, may help others).  http://windows.microsoft.com/en-us/windows7/Make-older-programs-run-in-this-version-of-Win dows
    Before doing anything, make document and any database/presets/cache back-ups beforehand (keep notes on their designated location*); manually create a System Restore point. (Be prepared to reinstall Windows if necessary - I didn't have to.)
    Completely and meticulously eradicate (clean) your hard drive of ALL Adobe programs [uninstall, remove remaining folders, and remove only the registry entries that have the Adobe name attached (unless you are an expert and fully understand the other entries)]. Use this as a guideline  http://kb2.adobe.com/cps/400/kb400769.html
    Do a Custom/Manual reinstall of all your Adobe products *in order of release dates* (OLDEST first).... do not include Reader, Flash, etc. If your CD will not automatically run at this point, click "Open folder to view files" (use Computer/Windows Explorer, if necessary). Click "Adobe Creative Suite (or your desired program) ==> Setup.exe" (IMPORTANT: Make sure that Reader, Flash, etc. are unchecked.)
    After each of your desired Adobe programs are installed, test to insure they boot up. Then download the latest Reader, Flash, etc. apps and install them (I did this in order of release date - oldest first). Do test boot(s) again.
    Copy/Paste your document and any database/presets/cache back-ups into the appropriate folders (*this will vary depending on your programs and your filing system).
    It has been four weeks and all my Adobe programs work flawlessly - system is stable, no problems!

  • Can any one validate the below queries related to temp tablespace

    For Temporary Tablespace Free and Used Space Information, I am using the following query
    SELECT fs.tablespace_name tspace,
    sum(fs.bytes)/(1024*1024) tot_ts_size_MB,
    sum(df.bytes_free)/(1024*1024) free_ts_size_MB,
    sum(df.bytes_used)/(1024*1024) used_ts_size_MB
    FROM dba_temp_files fs,
    (select tablespace_name, bytes_free, bytes_used from v$temp_space_header) df
    WHERE fs.tablespace_name(+) = df.tablespace_name
    GROUP BY fs.tablespace_name;
    For getting how much space is being used by current users, I am using the following query
    SELECT b.tablespace tablespace_name,
    a.sid sid,
    a.username username,
    (b.blocks * c.value)/(1024*1024) Current_Usage
    FROM v$session a, v$sort_usage b,
    (select value from v$parameter where name = 'db_block_size') c
    WHERE a.saddr = b.session_addr;
    Can any one validate, that above queries are right or not?

    Hi,
    1.for first query i think u can also use only v$temp_Space_header to find out
    the required details by
    SELECT tablespace_name, SUM(bytes_used)/1024/1024 "Tot Used Space in MB",
    SUM(bytes_free)/1024/1024 "Tot Free Space in MB"
    FROM V$temp_space_header
    GROUP BY tablespace_name;
    2.http://www.dbazine.com/oracle/or-articles/weeg3
    Thanks
    Kuljeet

  • Can any one give guidence

    hi, experts
        i am seraching job on abap
        here is my objects
      u2022     Developed a Stock overview report.
    u2022     Developed a Sales order report.
    u2022     Developed Vendor analysis report.
    u2022     Developed a report on Account receivable items.
    ALV Reports:
    u2022     Developed a report to display Invoice and delivery schedules. 
    u2022     Developed interactive report for displaying Purchase order and item details.
    BDC (Batch Data Communication):
    u2022     Developed a BDC program for migrating vendor master data (XK01) using table control.
    u2022     Developed an Interface program for uploading purchase order data using session method.
    Scripts and Smart Forms:
    u2022     Developed a Purchase order document and developed driver program.
    u2022     Modified form Medruck with logo and fields.
    u2022     Maintained sales order document in Pdf format.
    ALE/IDOCS:
    u2022     Created Message types, Idoc types and customized idoc details for customer details using custom idoc.
    u2022     Developed Idocs based on message types Matmas ,Cremas and Debmas.
    u2022     Created Extended idocs for customer details.
    BADI:
    u2022     Added Screens in purchase order application.
    u2022     Customized additional menuu2019s based on requirement.
    ALVOOPS:
    u2022     Developed a program for migrating bank master data (FI01) using simple inheritance.
    u2022     Created Abstract class for displaying invoice details.
    u2022     Created Hyperlinku2019s, Printed documents using custom control.
    ALV Reports:
    u2022     Developed an interactive report for displaying purchase order & respective items using Hierarchical Sequential Alvs. 
    u2022     Developed Interactive report for displaying company data and customer codes.
    BDC (Batch Data Communication):
    u2022     Developed a BDC program for uploading customer master data (XD01) using Session method.  
    u2022     Developed  an Interface  program  for  uploading  material master  data(MM01) using  call transaction  method.
    Dialog programming:
    u2022     Developed a dialog program for customer details and purchase order details using Tabstrip control.
    u2022     Developed a dialog program for customer details and item details using Tabstrip control with subscreen.
    ALE/IDOCS:
    u2022     Developed Idocs from existing ones using Change pointer functionality.
    u2022     Distributed vendor master data using Standard Idoc functionality.
    BAPI:
    u2022     Developed a Bapi interface program for creating a purchase requisition.
    u2022     Developed a custom Bapi interface program.
    ALVOOPS:
    u2022     Created Exception Handling, Printed documents using custom control.
          can any one give guidence how to prepare for interviews and how to work on my objects,

    I cannot provide guidance you seek, but want to point out that such "summary" should work well on LinkedIn. Why don´t you place your personal summary there and use that channel to support your effort?
    Otto

  • New To SOA, can any one suggest how to proceed

    Hi All,
    I am new to SOA i want to learn basics in SOA. Can any one suggest me how to proceed, I know Web Services.
    Thanking You,
    Rakesh.

    Marc made a list of resources too :
    http://orasoa.blogspot.com/2007/05/newbie-getting-started-with-oracle-soa.html
    the quickstarts are nice to start with too, just to see what the tools can do, how the concepts work etc

  • Can any one suggest about sapi

    hi gurus,
    can any one explain,. what is   sapi . what for it used.
    regards,
    praveen

    Hi,
    The BI Service API (SAPI) is a technology package in the SAP source system that enables the close integration of data transfer from SAP source systems into a BI system.
    The SAPI allows you to
    ●     make SAP application extractors available as a basis for data transfer into BI
    ●     carry out generic data extraction
    ●     use intelligent delta processes
    ●     access data in the source system directly from BI (VirtualProvider support)
    http://help.sap.com/saphelp_nw04s/helpdata/en/7a/27bcf087c7464db8b95eaa717b6e6a/content.htm
    Regards.

  • Can any one tell me how to use Image Prompt

    Hi
    Can any one tell me how to use Image Prompt in Answers?
    Thanks
    Rahman

    Had a look at this already?
    http://download.oracle.com/docs/cd/E12103_01/books/AnyUser/AboutPrompts.html
    Cheers,
    C.

  • Safari keeps crashing every time I try to open a link from a different application, i.e. Mail. The trouble report says that some problem occurs with libcooliris.dylib plug-in. Can any one help?

    Safari keeps crashing every time I try to open a link from a different application, i.e. Mail. The trouble report says that some problem occurs with libcooliris.dylib plug-in. Can any one help?
    Thanks!

    Dear Linc,
    Thank you for the advice, John Blanchard1  and Linc Davis
    As suggested in your reference thread I removed "/Library/Printers/hp/PDEs/hpPostScriptPDE.plugin" and the problem has been resolved.
    I am guessing the the plug-in for the hp printers got corrupted and effected every thing, or became unsuitable when I installed an Apple update. I would be most grateful if you can confirm how the problem was coursed so I can understand and learn from this experiance.
    Ash

  • Hello i am having a problem in my 4s that it dosent run any USSD code it goes on calling , can any one help me i am mack from Karachi Pakistan

    Hello i am having a problem in my 4s that it dosent run any USSD code it goes on calling , can any one help me i am maqsood  from Karachi Pakistan

    Ok so I've done what you said and this is what it's come back ....
    I don't know that these are the errors , but they're the things which don't look right ...
    Throughout the shut down there is a recurring line ;
    It says ;
    Com.apple.launchd 1 0x100600e70.anonymous.unmount 301 PID still valid
    Then there are 2 more which I think are related ;
    Com.apple.securityd 29 PID job has I overstayed its welcome , forcing removal.
    Then the same with fseventd 48 and diskarbitrationd 13
    Oh and on Launchd1 : System : stray anonymous job at shut down : PID 301 PPID13 PGID 13 unmount...
    Then the last process says "about to call: reboot (RB_AUTOBOOT).
    Continuing...
    And stops ...
    Hope this means something to you ... Thanks again for your help so far :-)

Maybe you are looking for

  • ITunes wont run in games (on PC, not iPod)

    If I setup my iTunes with a random song, start a game then the song goes totally crazy and skips many parts of the song leaving a noicy voice when it does so. So I really wont use it cause I want my ears in good shape some years still. This happended

  • DAC: Increase $$END_DATE in W_DAY_D

    Hi All, Currently we are using BI Apps version of 7.9.5, we found that in W_DAY_D table data is till Dec 30th 2010 only. How we can load data till 31st Dec 2020 in same table. There are 2 parameters used in the SIL_DayDimension mapping $$START_DATE a

  • Why does you tube freeze up all the time?

    Why when I'm trying to watch  You Tube does it constantly freeze up making it useless to me?

  • How to display Month values in SSRS report

    Hi All,     I have a requirement to display month values in SSRS Chart. x-axis should display all month names from January till current month. How can I set this properties and show it in a line graph Thanks & Regards, Regards RCP

  • Can I migrate printers with underscores in name?

    I was wondering if it was possible to use the migration tool to migrate printers and their profiles that have underscores in their names from oes2 sp2 to oes11?