Query to check for DB created

Hi all,
How can I query in DB to check for all database created? As well as the size of each DB?
Thanks.

Hi,
mitchel-->by quering v$database will show u the creation data of database but what if the database was migrated or rebuild?? the date will change..So i do not trust this.
How can I query in DB to check for all database created? As well as the size of each DB?How can u query from a database and know when all the databases on the server were created?And how can u know the sizes of all the database bases from one database?I think we cannot do that
From query u can find out the output of the same database by cheacking system tablespace creation date with the below query
select fn.fnnam
, fe.FECRC_tim
from x$kccfe fe
, x$kccfn fn
where fe.fedup!=0
and fe.indx+1=fn.fnfno
and fn.fnnam is not null
and fn.fnnam = '&Filename'
And for the database size query dba_data_files and v$logfile.
Regards
Kaunain
Edited by: Kaunain Ahmed on Aug 25, 2008 1:55 PM

Similar Messages

  • Mass availability check for reservations created manually

    Hi,
    Please let me know if there is any transaction for mass availablity check for reservations created manually.we can check avaialabilty for individual reservations in mb21 or mb22.but we need a collective availabilty check feature.
    Thanks for the help inadvance.
    Regards
    Krishna

    Thansk a lot for your quick response.I could not find the option for availabilty check in MBVR.could you please explainn me how to see this.
    Regards,
    Krishna

  • Duplicate address check for while creating New accounts

    Hi,
    While creating new account for checking postal address and duplicate records i am getting following error message
    The address is correct as entered. Display the Address Reviewer Screen
    currently i am using CRM 7.0
    Thanks & Regards
    Kishore Kumar

    no replies

  • Query : Authorization check for reports in report writer

    Hello,
    I want to secure reports created form report writer.
    How can I give separate Authorization to users, so that they are restricted only to display or for changing or for creating.
    Thank you in advance.

    Hi Naveen,
    Here is wonderful thread which can solve your issue.
    Authorization in my report
    Regards,
    Ganesh
    ****Reward points if Helpful*****

  • Query - Authorization Check for Material Details

    Hi Experts,
    I've got a requirement where I've to put authorization check in a number of transactions (standard as well as custom) which lead to material display some way or the other for specifc matarils (checking the authorization field). Few are for reports (may be interactive) as well. The need is to stop unauthorized people from getting access to the specifc material details such as dimensions (quantity,length, width, etc.).
    The first option would be to stop the user from viewing the material itself and showing some appropriate error message.
    The second option would be to make the above said details invisible in the screen for the specific matarials.
    The Authorization object is M_MATE_MAT.
    The Authorization field is BEGRU.
    The range of tcodes start from ME21, ME22, ME23, ME23N ...to MM01, MM02 etc. and a number of custom tcodes.
    What is the best way to achieve this? I guess I'd need to look for exits. Please suggest
    Thanks & Regards
    Pritam

    > I've got a requirement where I've to put authorization check in a number of transactions (standard as well as custom) which lead to material display some way or the other for specifc matarils (checking the authorization field). Few are for reports (may be interactive) as well. The need is to stop unauthorized people from getting access to the specifc material details such as dimensions (quantity,length, width, etc.).
    >
    > The first option would be to stop the user from viewing the material itself and showing some appropriate error message.
    >
    You can do this with authorization at transaction level.
    > The second option would be to make the above said details invisible in the screen for the specific matarials.
    >
    Invisible on the screen, you might need to consider the material screens user exit. I am not sure how your material master configured
    > The Authorization object is M_MATE_MAT.
    > The Authorization field is BEGRU.
    >
    > The range of tcodes start from ME21, ME22, ME23, ME23N ...to MM01, MM02 etc. and a number of custom tcodes.
    >
    > What is the best way to achieve this? I guess I'd need to look for exits. Please suggest
    All in all, you need user exits to have field level authorization and maintain authorizations at transaction level for the one you dont want to show anyone or to few

  • CC constantly checking for updates creating laptop battery issues?

    Loaded the CC, LR5.5, PS & PS 2014 updates last week.  Ever since CC has been requesting updates constantly.  It will even wake the laptop up when asleep.
    Diagnostics say its sending 183 requests per second and the MacOS X will terminate the application for loop operations.
    Anyone have a solution for this?
    Application is now disabled until Adobe fixes the loop glitch.

    Hi jbgoldfinger,
    Please try to sign-in and sign-out from Adobe creative cloud, try the steps mentioned in the link given:- Sign out, Sign in | Creative Cloud Desktop app
    Sarika

  • Cancel Date in Void Checks for Payment

    Ver. 2005, PL11: The cancel date (and update date) is not being set when voiding a check for payment which is associated with an outgoing payment.
    Likewise, the cancel date (and update date) is not being set when a check for payment is voided when canceling an outgoing payment.
    When reporting on payment activity, the ocho file is not accurate without the cancel date. Any idea if this is a setting? A bug? Fixed in 2007? Ideas on a work-around?

    Ad-hoc payments, such as a cash on delivery order, an emergency employee loan or some other one-time payments are created using the check for payment screen, entered against an account number, not a vendor, and the "create journal entry" box is checked.
    The check is then immediately printed using the document printing. The payment wizard is invoked weekly, and it ignores these ad-hoc, paid and printed payments.
    Any ad-hoc checks for payment correctly have the cancel date and update date updated when using the void check for payment screen.
    Checks for payment created from the payment wizard (which are "associated" with a previously created outgoing payment) do not have the cancel date and update date updated in the check file (OCHO) when using the void check for payment screen.

  • Querying User Rights for Create Document for Webi

    HI all,
    We developed a .NET application that allows a user to create Webi documents if they have access rights.  This worked in Business Objects XI R2 and we're upgrading to BusinessObjects Enterprise XI 3.1.  Our VB.NET code is as follows:
         Dim webIApplication As InfoObject
         webIApplication = istore.Query("SELECT * FROM CI_APPOBJECTS WHERE SI_ID = " &     applicationID.ToString()).Item(1)
         If webIApplication.SecurityInfo.CheckRight(17170446) Then
                    permissionOK = True
         End If
    This right used to allow a user to create a webi document, however, this right must have changed in the new version, since checking this right always returns false.  We did verify that this user has rights when using the built in Infoview, and it works properly.  We have been unable to determine the new right ID, or if this is still the proper way to check for such rights.  Thanks for any information you can provide.

    Hi,
    I'm trying to do the same in Java with a 3.0 but my code below is not working do you have an idea of what is wrong ?
    ISessionMgr sm = CrystalEnterprise.getSessionMgr();
       IEnterpriseSession _es = sm.logon("Niko", "", "machine", "secEnterprise");
       ISecurityInfoMgr isim = _es.getSecurityInfoMgr();
       ISecRights iMyRights = isim.getRights();  
       IInfoStore iStore = (IInfoStore) _es.getService("InfoStore");
       IInfoObjects rUsers = iStore.query("select * from ci_systemobjects where si_kind like 'WebIntelligence'");
          IInfoObject rUser = (IInfoObject)rUsers.get(0);
         int iObjectId = rUser.getID();
       IPluginBasedRightIDs ip = rUser.getSecurityInfo2().getKnownRightsByPlugin();
       java.util.Map toto = ip.getPluginCustomRights();
       IRightID[] irids= (IRightID[])toto.get("CrystalEnterprise.WebIntelligence");
       Locale myLo = new Locale("FRENCH");
       Locale lyLO2 = myLo.FRENCH;
       for (int i=0;i<irids.length;i++) {
        if (irids<i>.getBaseID()==14) {
         System.out.print(irids<i>.getDescription(lyLO2) + " -->" + irids<i>.getBaseID() + " -- " + irids<i>.getRightPluginKind() + " = ");
         int iResult = iMyRights.checkRight(irids<i>.getBaseID(), irids<i>.getRightPluginKind(), iObjectId);
         System.out.println(iResult == ISecurityResult.CE_SEC_GRANTED);
    Any help is appreciate. Consulting is engaged on a project related to this dev and it is hurry.
    Regards,

  • When firefox checking for updates and updates found but due to proxy restrictions it unable to download the updates then it continue trying to download that and this time it creating problem on running javascript

    When firefox checking for updates and updates found but due to proxy restrictions it unable to download the updates then it continue trying to download that and this time it creating problem on executing javascript and raising errors.

    What are the error messages you are seeing?

  • Save Query - An error occurred while creating connection strings for the query

    A workbook trying to edit and reload I get the following error "Save Query - An error occurred while creating connection strings for the query" No Power Pivot data model or anything.

    I am getting the same error when editing a Power Query in an Excel spreadsheet. It happens when I change a Group By step to do a Sum instead of Count Rows.

  • Create authorization check for a report

    Hi,
    I need to create an authorization check for a report. It means that I need to restrict the usage of the report to couple of users ( 'USER1' and 'USER2' ). How can I do that? I did read through a lot of threads regarding this piece got a bit confused and stuck while creating the authorization object.
    Say the report name is ZHR_TIMEABC.
    Can anyone explain how to create an authorization object and how are they tied to the object and call them in the abap code?
    Thanks in advance,
    VG

    Hi,
    Thanks. Here is my understanding, S_C_FUNCT calls a system generated function module to make an authority check. So, if different users say USER1 and USER2 have different authroization levels, defined in their user profile, just adding this piece code will take care of authroization check for the program OR do I need to take care of something else?
    If so, when do we need to create the authorization objects using SU20 and assign the group and follo this process? When do we use this approach ( lot of threads on authority check have mentioned this procedure)?
    Your inputs will be helpful to understand this concept.
    Thanks,
    VG

  • Need to Create a Check for Plant in WBS & Plant in Network

    Dear Guru's,
    While creating Project (CJ01) my users are creating in a Plant, and while creating network for the same project/WBS, they are using different Plant Code.
    Since my Profit center is related to the plant in CJ01,
    and because of wrong Plant in network, all my PR/ PO is going in a different Profit center, which is creating a huge problem while auditing.
    I need to Create a Check for Plant in WBS & Plant in Network...!!
    Kindly suggest me the ways to do it and how to do it...

    Hi Deepa,
    The Check you are trying to create between Plant defined at Project def and network level that should be same can be achieved through validation at the network level by using a user exit at network level.
                    While creating the network you can change the plant value not equal to the value at proj def/network profile may be one of the reason is since the network type is defined for more than one plant (OPUV).
                    While creating validations at network level we do not have the option of setting the prerequisite/check  using WBS or Proj def fields (i.e. PROJ-, PRPS- fields)    so we need to create a user exit at the network level.
    I am not sure but logically u can have a user exit for both prerequisite and check steps of the validation.
    You need to create the user exit in program ZGGBR000.
    Please take help from your Abaper for the same.
    OPSI-Network header-Validation- Step - Prerequisite u2013 Check u2013 Message.
    Prerequisite
    If Proj Profile = u2018XXXu2019 and Network Profile = u2018XXu2019 (or as per your logic if need be use a exit)
    CHECK.
    PROJ-WERKS = CAUFVD-WERKS   (This logic needs to be defined in user exit and set the same user exit at the check.)
    Once you define the user exit in ZGGBR000, it will be available in the tab u2018exitsu2019 at the Prerequisite and Check levels.
    The name of the form pool (e.g., ZGGBR000) that contains your user exit must be stored in table T80D.
    It is important that you make declare the code generation program for your user exit; how many and what type of parameters you are using for the user exit. You do this by entering your newly defined user exits in the form routine GET_EXIT_TITLES. Found in program ZGGBR000.
    Check with your Abaper to check on all the aboveu2026
    Message:
    Plant at Network level should be same as at Project def level.
    Hope it helps you,All the best..
    Regards
    Vinayak.

  • Error Individual check for creating the object WBS Element required

    Hi Expert,
    I've a requirement to create WBS elements using BAPI. And I am using BAPIs in the following manner.
    CALL FUNCTION 'BAPI_PS_INITIALIZATION'
    CALL FUNCTION 'BAPI_BUS2054_CREATE_MULTI'
    EXPORTING
    i_project_definition = g_pdwbs
    TABLES
    it_wbs_element = it_wbs_element
    et_return = it_return
    EXTENSIONIN =
    EXTENSIONOUT =
    CALL FUNCTION 'BAPI_PS_PRECOMMIT'
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    When I do so I am getting the below errors. Please suggest.
    "Individual check for creating the object WBS Element C-497082 required ".
    "Individual check for creating the object WBS Element C-497082-0001 required".
    Please suggest how to correct this error.

    Hi Karthikeya,
    I think the project profile which you are using has a different mask and the WBS element you are passing is different to the BAPI.
    Are you able to create manually from CJ01 using the same WBS element?
    Create a project manually and it will give the list of the mandatory fields set in the config. Using that list populate the BAPI struture accordingly.
    Hope this helps.
    Thanks
    Lakshman.

  • Non-***. KF are coming blank for newly created Plant/Mat in Inventory Query

    Hi,
    In my BEx query, Total stock quantity values for newly created Plant is not coming.
    BW and R3 have gone live on the same date.
    (1) Did Stock initialization for existing Plant.
    (2) Filled set up table and did INIt load for the existing plants.
    (3) compress the request in BW.
    BX - with marker update
    BF - with no marker update.
    Now two more plants are created in R3 side with their opening stock values.
    Did Delta to BW.
    New Plants are loaded into BW. I can see "Receipt Qty" value in 0IC_C03 cube - 1200.And Issued qty - 000
    But When I execute Bex query, "Total Stock qty" and "Stock in Transit" (these all are non-cumulative keyfigures) are coming as blank.
    Please suggest. Quick response is much appreciated. This is Production (after Go-live issue).
    Thanks in advance.

    Any sugestions ??

  • How to create UDF in Checks for Payments.

    hi,
    we created  UDF  under manager user fields>under payments>Checks but it's showing only payment means we need to show udf in checks for payment where we need to create UDF for checks for payment form.please guide me.
    regds,
    sampath.

    Hi Sampath,
    UDF is not possible to add for 'Checks for Payment' form but if you would like to display the information in print layout, you could add the fields to Outgoing payments -> Title and include these fields in the print layout designer for 'Checks for Payment'
    Regards,
    Vijay Kumar
    SAP Business One Forums Team

Maybe you are looking for

  • IDOCFlatToXmlConvertor in the Module Processor For SOAP Sender CC

    Hi Sdners, Can we use below adapter module for Proxy Communication- SOAP Sender with XI Protocol ? IDOCFlatToXmlConvertor in the Module Processor From SAP we getting IDoc as Flat File wrapping it in Proxy Messages. We need to do convert those message

  • MIssing Conditions in BAPI_SALESORDER_SIMULATE

    Hello, When I execute the BAPI_SALESORDER_SIMULATE function without Schedule Line Data Input (ORDER_SCHEDULE_IN) our custom fixed material pricing are not returned in Conditions Output (ORDER_CONDITION_EX). The fixed pricing is only returned if ORDER

  • OMG, my N86 phone memory only left 5.6mb!!!

    what will happen if my phone memory become 0? what can i do now? i have move my inbox to mass storage, clear my cache.....and so on

  • Gaps in the path

    hi. i'm a total newbie in illustrator. and i'm having a trouble: gaps in(on?) the path around the cretain anchors. when i apply a style to my path, the gaps appear. why is that and how do i get rid of them? thanks. sorry for my english.

  • Imovie video issues

    I have been experiencing issues with video delays when I import. The issue is the video is not in sync with actual video (example if I say hello, iMovie will show that a few seconds later). I checked my disc space and i still have over 20GB of space