Determining DBID

Hello,
How can i know the dbid before restoring the spfile and controlfile with rman..
Also without considering enterprise manager.
kk.

hi,
if your not able to startup your database then you can see your backup set file for DBID but if you configure controlfile autobackup on.
SQL> select DBID from v$database;
      DBID
2156049726Starting Control File and SPFILE Autobackup at 07-JAN-07
piece handle=E:\WINDOWS\SYSTEM32\C-2156049726-20070107-00 comment=NONE
Finished Control File and SPFILE Autobackup at 07-JAN-07
regards
Taj

Similar Messages

  • Get DBID

    Hi friends,
    I am new person. I saw lots of example abouy restore/revovery DB. How do I know a DBID ( for set DBID= ) during recovering DB or control file.
    Thanks
    Jim

    You can see Note 227060.1 How To Determine The DBID When Using RMAN and Note:580414.1 RMAN - How to restore the controlfile using RMAN to know where you can get dbid and under what circumstances it's needed.
    Enrique
    PS. There another not documented ways to get the dbid as stated here: http://arjudba.blogspot.com/2008/05/how-to-discover-find-dbid.html

  • Finding dbid

    how can I find the dbid of the database, incase the control file is lost and the status is nomount.

    how can I find the dbid of the database, incase the control file is lost and the >status is nomount. Since the control file has been lost you will not be able to mount.
    There are two places you can find it without opening your database if the DBID has not been recorded.
    1.The DBID is used in forming the filename for the control file autobackup.
    2. Any saved text files that have output from an RMAN session. Example
    Recovery Manager: Release 10.2.0.3.0 - Production on Tue Apr 8 22:00:17 2008
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    RMAN>
    connected to target database: LIVEDB (DBID=4244080946)Please also review;
    Determining your DBID
    http://download.oracle.com/docs/cd/B19306_01/backup.102/b14192/recov003.htm#sthref551
    Adith

  • No shared library found for the database with ID DBID

    Hi SDN,
    We're trying to connect our BW system under WIN/MSSQL 2005 to an source system (RSA1) witch is an DATABASE DB4 on OS400.
    when we check the database connection, it gave us the error
    No shared library found for the database with ID DBID
    in SM21 we've found
    As well as the standard connection, an attempt was made to set up
    another database connection, under the specified ID. The Shared Library
    for this second database could not be found.
    The Shared Library is usually found in the the Executable
    directory (profile parameter DIR_LIBRARY) under the name dbs
    <dbs>slib<os_ext>. <dbs> stands for the database type and <os_ext>
    stands for the operating system-specific extension of the Shared
    Libraries.
    The database type is determined from the entry that corresponds to the
    specified DB ID in the table DBDCON. Check whether the data in this
    entry is correct.
    someone can guide me were to found DBSL library for this time of external connection from Windows to DB4?
    thanks in advance,
    best regards,
    Pedro Rodrigues

    Hi again,
    after download dbdb4slib.dll and copied it to kernel directory, it gave this error message
    B  create_con (con_name=DBID)
    B  Loading DB library 'E:\usr\sap\SID\SYS\exe\run\dbdb4slib.dll' ...
    M  *** ERROR => DlLoadLib: LoadLibrary(E:\usr\sap\SID\SYS\exe\run\dbdb4slib.dll) Error 126 [dlnt.c       237]
    M          Error 126 = "The specified module could not be found."
    B  *** ERROR => Couldn't load library 'E:\usr\sap\SID\SYS\exe\run\dbdb4slib.dll'
    [dbcon.c      4672]
    B  ***LOG BYG=> could not load library for database connection DBID      [dbds#3 @ 1035] [dbds    1035 ]
    someone has some idea?
    thakns

  • Account determination error - in creation of invoice

    Hello experts,
    i have an error in creation of invoice, after( pgi post goods issue)
    will you please help me out to solve this error.
    thanks & Regards,
    yogesh raina

    hello sir,
    After going throuth this path it shows no gl account in account determination chart
    as below
    Condition type     Message     Description
      ZPR0                                  123     Access KOFI not carried out (initialized field)
    Access     Message     Description
    10     123     Access KOFI not carried out (initialized field)
    20     121     No G/L account found in Account determination type KOFI
    30     123     Access KOFI not carried out (initialized field)
    40     121     No G/L account found in Account determination type KOFI
    50     121     No G/L account found in Account determination type KOFI
    60     123     Access KOFI not carried out (initialized field)

  • Is there a way of determining what element in an array is being clicked on?

    Hi all.  I would like to setup an event to determine what element in an array is being clicked on/hovered over.  I think I tried this before and found it wasn't working due to limitations of LV 7.0.  If this code already exists, it would be great if I don't have to do a scavenger hunt for the solution.
    I think one possibility I nixed was to use the refnum of the elements to determine which one it is.  IIRC, this is not possible because the refnum of the element is for the edit box only.
    The second possiblity is to get the on click event, and somehow determine which element in the array it is.  This doesn't sound too difficult as it should be a simple calculation, but may get in to some hairryness based on if the indicies are visible or not, and if I am using a new or old array with new or old control (calc would change based on boarder size of the controls).  I might just simplify it by removing indicies and using older control set which has minimal boarder size.
    And just for fun, can I force a tool tip to show up?
    Thanks all,
    A
    Using LV7.0 on WinXP.

    blawson wrote:
    Been bitten by LabVIEW wrote:
    I think one possibility I nixed was to use the refnum of the elements to determine which one it is.  IIRC, this is not possible because the refnum of the element is for the edit box only.
    Using LV7.0 on WinXP.
    This is indeed possible, at least in the newer versions I use.
    Take the array refnum from the click event data terminal and get a reference to the array element.  This refers to the element that was clicked, but you do need to work out how to get the index.  My method is to use property nodes to get the screen position and size of the element and the screen position and size of the array, as well as the array's Visible Index property. For each direction, take the quotient of the relative position of the element (account for padding!) over the size of an element.
    I suspect that taking the mouse coords and comparing to the array's sizes in pixels is similar, although I trust my method for events that don't have mouseclicks (what coords does Array:shortcut menu selection(User) return if you used the keyboard?)
    Here's an old version I happened to have open.  I've posted about this before, I suspect I have a clearer version in my gallery.  I use this method in my example code contest entry to work out which square of the chessboard is clicked.
    Thank you for that one!
    I am currently "locked up behind a down-rev fence" (working an old app in an old version) so I had not heard of that.
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • How can you determine at runtime which libraries are attached?

    Hi
    I am wondering if there is a way to determine which libraries are currently attached to a form at runtime. My application is in forms 10g.
    I am hoping to get the full path so that it is possible to show this in an information type display. I am ideally looking for a solution that works on both Unix and Windows so that it can be used in development and production
    thanks in advance
    Wayne

    I am curious, why you want to know which library is attached and the full path??? You cannot change it at runtime!!
    I don't think that's possible at runtime by using Generic Forms built-ins, But as always with Oracle, you can have several solutions.
    One solution is to initialize global variables/parameters in PRE-FORM and later you can read them and see the values and do whatever you want accordingly.
    When using Global variables, you can test for their DEFAULT_VALUE to check whether the variable exists or not, this will prevent getting an error if the variable hasn't been initialized yet.
    Tony

  • Error in Asset A/c Determination

    Hi all,
    I already created asset in Accont determination (111) which is assigned to Asset Class. Now I need to assign GL a/c(222) to DP Acq. in Tcode- OA90. But I am getting an error as below:
    "Account 300 not yet defined as reconciliation account in co. code PP"
    But i created GL a/c(222) as recon a/c, i did not assigned earlier, now it is not accepting
    <b>Case-2:</b>
    Due to the above error, i tried to assign another GL a/c (333), but showing error that
    "You no longer change the value 222 for the GL a/c"
    You tried to change GL a/c 222. However, assets were already created with an a/c determination that includes this a/c.
    You can only change GL a/c in the a/c deterination as long as there is no asset that uses this a/c.
    If you want to change the a/c, you have to enter a new a/c deterination containing the hange a/c.
    URGENT PLEASE
    Rgds
    sunfico

    Hi,
    Good morning and greetings,
    Please check up the same in OAMK.
    Please reward points if found useful
    Thanking you
    With kindest regards
    Ramesh Padmanabhan

  • Error while determining ref.mov.type for WM via Table 156S: 647/ / / /L/ /

    Guyz,
    Firstly despite the plant+storage location + warehouse no. assignments are done , my replenishment delivery (delivery for stock transport order between plants under same company code) is not picking up storage location and warehouse no and thus stopping me from doing picking and PGI (post goods issue).
    However in VL02N when i'm trying to change storage location for line item, i'm getting following weird error
    *Error while determining ref.mov.type for WM via Table 156S: 647/ / / /L/ /*
    I found a SAP Note(133223) regarding this error and VL02 transaction but that note was specific to older versions. I'm on ECC 6.0
    Any suggestions please ?
    Thanks

    Warehouse managment has its own movement types, most identical to inventory management movement types.
    These WM movement types are determined via reference movement types.
    the error you have just looks like your customizing is not complete.
    IMG > LE > WM > Interfaces > IM > define movement types.

  • Getting an error "Customer could not be determined" for IDOCs in SCM 7.0

    Hi Friends,
        I am executing the report RSMIPROACT in ECC 6.0 system to publish Demand and Stocks into the SCM 7.0 system.
    The IDOC is processed without any errors in ECC 6.0 . However, in the SCM 7.0 system , the IDOC fails with the error.
    I have noticed that 2 things .
    1.  E1ADRE1 field is NOT being sent by the ECC system .
    2. I get the same error even if I manually add this field and add value 300 or 301 for the qualifier field.
    Has anybody faced this problem before ?
    I look forward to replies.
    Detailed error is given below.
    Regards,
    Ranjini.
    Customer could not be determined
    Message no. /SAPAPO/EDI010
    Diagnosis
    The system must determine the customer number from the IDoc data in order to update stock and sales figures for customers. It uses the additional section E1ADRE1 with the qualifier '300' or '301' in the vendor address section to do this. The customer number stored here should have a valid customer number in the APO System.
    The section was not available in the processed IDoc.
    System Response
    The system cancels processing.
    Procedure
    Configure the EDI convertor in such a way that the corresponding section has a value.

    Hi Ranjini,
    Please look into the following
    1) Customer master data is fully maintained
    2) Customer number ranges are fully defined in customisation
    3) Customer address details are maintained
    4) Is there any special characters used while defining customer data or customer
    number like $, #,[ etc.,?
    5) Customer int models are active in SCM side prior to IDOC processing (including
    customer, demand, stocks etc)
    Please confirm your findings
    Regards
    R. Senthil Mareeswaran.

  • Error "codepage could not be determined for the receiver-system"

    Hi,
    we use the idoc-adapter to send message from mySAP ERP to PI.
    All worked fine.
    So, this morning I have changed the datatype of the messageId from "char" to "int" in mySAP ERP in the customizing menue (install param). So, no message received in SAP PI.
    When I start transction "we05" in mySAPERP" I get the following error:
    "codepage could not be determined for the receiver-system" status 02.
    I have changed the datatyp to "char" but the same probleme
    Can anybody help me please?
    Regards
    Stefan

    This error shouldn't occur unless there is some modification at the OS level codepages.
    Please check the entried in the RFC destination for connecting to the XI system. Unicode settings.
    Regards,
    Prateek

  • Free Goods determination in Invoice

    Hi Experts,
    My query is regarding Free Goods. Free Goods are determined in the sales order. Now lets assume that I have maintained free goods scheme for product A as 10 qty free on 100 Qty.
    At the time of delivery, if insufficient stock (60 Qty - batch B) is there, my delivery qty will get reduced to like:
    Main Item = 50 Qty
    Free Item = 10 Qty
    Kindly note that batches are automatically determined in the delivery and only one batch B with qty 60 is available.
    Now at the time of creating invoice, I wish to check the scheme that the main qty and free goods qty should be in exact ratio as maintained in the condition master for free goods.
    My question is how to restrict invoice creation in case of mismatch in main item qty and free item qty.
    Thanks.

    I have maintained inclusive free goods condition with 9+1 scheme.
    Now when I create sales order for 30 qty, main item will be 27 and free item will be 3.
    Available stock = 25
    At the time of delivery creation,
    main item = 25
    free item = 3
    Case 1. IF I don't change the qty, I cannot do PGI as stock is only 25 (Main item + free Item = 28)
    Case 2. But if I change the main item to 22, free goods qty will remain as 3. And system allows to do PGI. (No decimal qty allowed as sales UOM is the smallest UOM.)
    Case 3. When I change main qty to 18, free qty changes to 2.
    Now I wish to restrict case 2. (Case 1 is not possible and case 3 is acceptable.)
    Kindly suggest.

  • Free goods should not determine in sales order

    Hi,
    I have maintained the free goods determination in SAP CRM with validity period in T Code: /sapcnd/gcm  and have created a quotation for the material which has a free goods validity.The free goods are determined at quotation level, when i was converting the quotation to the sales order the free goods validity period got expaired.In this case the free goods are should not get determined in the sales order.But when i test it in IDES system the free goods are getting determined in the sales order eventhough free goods validity period expaired.
    Can any one tell me how to restict the free goods in the sales order level when the validity period expaired at the time of sales order create.
    Regards
    Nagaraju

    Hi ,
    You can use the BADI CRM_COPY_BADI. Here you can implement the check for products which are free and have expired to be excluded from copying from quotation to sales order.
    Regards
    Kavindra

  • Free goods with combination of material determination

    Hi All,
    I have Materil X for this free good is Y.  But for material Y there is material determination with A. In this case what will happen while i am entering the material X in the sale order/
    As of my knowledge freegoods don't support for any special function like BOM & vairant config. I don't know about the material det.
    Please clarify this doubt.
    Regards
    Sunil

    Hi Sunil,
    You can see Material Determination and Free goods as two seperate issues.
    For material X, Material Y will be a free good only when material Y is available in stock. The system will not substitute materiail Y with material A just because you have material determination configured for the same.
    On the other hand, if you enter material Y on its own i.e. seperately at the line item level of the sales order..........then material determination will occur and the item will be substituted by material A.
    See both of them as two seperate scenarios.
    Hope its clear.............
    Regards
    Sai

  • Free goods determination in variant article

    Hi ALL!!!!
    The issue is regarding IS-Retail. In case of order processing with variant article free goods is not getting active. The item category of the parent article is TAG and for the variants is TAN. When I am maintaining freegoods for the variant then also its not getting picked up nor when I am maintaining free goods for the parent article.
    Please suggest
    regards

    Hi
    1) In IS-Retail Variant article as called Generic Articles (retail terminalogy).
    2) Come to freegoods, In retail you can use promotion concept to maintain the freegoods determination for generic artilces and it should test with POS system.
    regards
    satish

Maybe you are looking for

  • Error while creating a Planned Order

    Hi SAP Experts, I have an error encountered while creating a Planned Order which is "Mode linkage problem with mode number". Diagnosis:     An application program called an LCA routine and the following error occurred:     An order has at least one c

  • Can I edit one project on two computers with external drive and two copies of software?

    I have two copies of premiere elements. One on IMac and one on Macbook. Video files on external drive. I want to be able to edit same project on both. I originally started the project on macbook but IMac doesn't see the exsisting project.  Can I do t

  • G4 400MHz OS 10.2 update to 10.2.8 won't work

    I have tried to update from the software updater and the website download. Both times it stops and says a problem was encountered, but it does not tell me what the problem is. My I tunes requires an OS of 10.2.8 or better. What can I do? Should I spe

  • Fields missing in import and export structure PPCO0001 - PPCO0023

    Hello Experts, I'm hoping that you can help me.  I am trying to add some logic in user exits to default data and do some checking in production orders.  It would be great if I could talk to you about what Iu2019m trying to do and the problem that Iu2

  • BPM - Generate file when message is successful

    Hi, We have designed the BPM to update database system by using JDBC receiver adapter. Following are the steps in BPM : 1. Send data to XI from R/3 system by using ABAP proxy 2. Make Sync call to R/3 system to get details of the data sent by using AB