How can I view transaction log?

Hello,
I need to get statistics, about how much time does it take to execute each stored procedure (procedure start time, and procedure end time) on database 9i.
Any ideas?
Thanx,
Romas

Hi Romas,
Take a look at the DBMS_PROFILER package. Functions in the package to look at are START_PROFILER and END_PROFILER. Once you are done, profiling, you can get a very detailed report on how long your procs took and much more stuff.
Besure to install the DBMS_PROFILER package using "PROFLOAD.SQL" script (sys must install it). the PROFTAB.sql script will help you the info. All stated in the link below. Hope this helps.
Here is the link to the documentation.
http://download-west.oracle.com/docs/cd/B10501_01/appdev.920/a96612/d_profil.htm#ARPLS039

Similar Messages

  • How can I view the logs in Parental Controls?

    I'm trying to monitor my children's internet use and iMessages on our laptop and the logs show there is activity. However, I cannot see anything when I click on the actual log entries. Is there something I'm missing? I'm having this issue with both internet and iMessage. Whenever I click on the iMessage log entry, a window pops up from iMessage as if I'm going to start a new conversation. Very strange.

    If your children are comp savy, it's possible that they have erased the logs.  You should set up parental control.  This way you can control all internet & comp usage.  Your children will not be able to erase or get into anything to erase if you do not make that option available. 

  • How can I view my iCloud contacts from someone else's iPhone? I don't want to change their phone settings.

    Yesterday I ran into a problem that was eye opening to say the least. I could not not access my contacts in order to find a friend's phone number. No one remembers phone numbers any more. God knows I don't.
    I was on a jetski and it broke down. I was stranded at a dock miles away. I needed to contact my friend to tell him (a) I'm ok, (b) where I was, (c) to bring a tow. Of course I had no phone on me because it would have gotten soaked.
    People were kind enough on the dock to let me use their smart phones to attempt to retreive the phone number and call for help. But I quickly discovered that it is impossible.
    On an iPhone, I tried to use their Safari browser to go to www.icloud.com. When you do that, it simply redirects you to the apps. But it isn't my phone, and their apps are logged in to the owner's accounts. I wasn't about to update the settings in a stranger's phone.
    One guy let me try his iPad with Cellular. Same problem as the iphones. It would not let me use www.icloud.com. It insisted that I use the native iOS apps.
    On an Android, www.icloud.com would simply refuse to work. It would say it was not supported.
    The question I have is: How can I view my contacts from someone else's smart phone in an emergency situation?
    Second question: Why can't I use www.icloud.com on a smart phone's web browser like I can on regular computer?
    I got lucky. I happened to know my mom's home number. Many hours later she was home and I was able to use a phone to call her. She brought up www.icloud.com on her home computer, logged on as me, and read me the phone number I was seeking. But what are the chances of being able to call a trusted person who has access to a computer to do this for you?

    Without "pretending" to be yourself on the other phone (change settings) there's nothing else you can do.
    iOS devices are meant to be single user and can't view iCloud.com the same way a Mac or PC can do.
    You need to find a desktop or laptop machine (Mac or PC) to log in at iCloud.

  • HT5373 How can I view and edit my iPhone calender from my home PC?

    How can I view and edit my iPhone calendar via my home PC?

    Hello Gary 204,
    Thank you for using Apple Support Communities!
    If the iPhone syncs its calendars to iCloud, you can log into www.icloud.com and edit the calendar there.
    You can check this in Settings>iCloud on your device:
    iCloud: Change iCloud feature settings
    http://support.apple.com/kb/PH2613
    Take care,
    Sterling

  • How can I view icloud photos

    How can I view my icloud photos? I lost my phone n need to get some pictures I originally back do I need to buy new phone n let as new to back up or can I just log in somewhere to view them

    You can only view photo stream photos on an iOS device or computer that is signed into your iCloud account with photo stream enabled.  This requires Windows 7 or 8 if you have a PC, or OS X Lion (10.7.5) or higher if you have a Mac.  If you do, you can set this up as explained here: http://www.apple.com/icloud/setup/ios.html.  Note: you will only be able to access photo stream photos from the last 30 days; older photo stream photos are no longer in iCloud.
    If you backed up your phone, your camera roll photos are included in the backup.  Restoring the backup to a replacement iPhone should recover them.  Note: be sure to do this soon as Apple removes backups for devices that have not been backed up for 180 days.

  • How can user view Central Person ID by Personnel Number and Vice Versa?

    Dear Experts,
    We are not using Concurrent Employment, but since Talent Management requires to use the Central Person object, we have created the relative objects for the employees. What I want to know is, how can user view the Central Person ID by a personnel number and vice versa easily?
    Thanks,
    Steven

    Not User friedly
    This logic is in Function Group HRTMC_PPOM, screens 0700 and 0710.
    You can copy it to Z and change search.
    In transaction OOFRAMEWORKCUST for scenario TMC_PPOM change Report in "Tab Page in Scenario for each Object Type" from HRTMC_PPOM to new Z*.

  • How can I view as "single page continuous" in full screen mode?

    how can I view as "single page continuous" in full screen mode?
    preferences->page display:
    preference->accessbility:

    Not possible.

  • How can I view the USMT recovery key in SQL report

    Hello all,
    Can anyone help me to provide sql query for below link… What I am looking is Just to create a report with all computers that has computer association any type with the recovery key information.
    http://www.windows-noob.com/forums/index.php?/topic/1763-how-can-i-view-the-usmt-recovery-key/
    I have tried below but not working so looking for help…..
    SELECT     TOP (100) PERCENT dbo.v_StateMigration.SourceName, dbo.v_StateMigration.SiteCode, dbo.v_StateMigration.SMPServerName, 
                          dbo.v_StateMigration.SourceMACAddresses, dbo.v_StateMigration.RestoreMACAddresses, dbo.StateMigration.StateEncryptDecryptKey, 
                          dbo.StateMigration.StorePath, dbo.StateMigration.StoreSize
    FROM         dbo.StateMigration INNER JOIN
                          dbo.v_StateMigration ON dbo.StateMigration.SMPServerName = dbo.v_StateMigration.SMPServerName CROSS JOIN
                          dbo.v_UserStateMigration
    WHERE     (dbo.StateMigration.StorePath IS NOT NULL) AND (dbo.StateMigration.StoreSize IS NOT NULL)
    ORDER BY dbo.v_StateMigration.SourceName

    Try this.
    SELECT Distinct
    SM.SourceName,
    SM.SiteCode,
    SM.SMPServerName,
    SM.SourceMACAddresses,
    SM.RestoreMACAddresses,
    SMT.StateEncryptDecryptKey,
    SM.StorePath,
    SM.StoreSize
    FROM
    dbo.v_StateMigration SM
    JOIN dbo.v_UserStateMigration UM on SM.RestoreClientResourceID= UM.RestoreClientResourceID
    join dbo.StateMigration SMT on SM.SMPServerName = SMT.SMPServerName
    WHERE
    (SM.StorePath IS NOT NULL)
    AND (SM.StoreSize IS NOT NULL)
    ORDER BY
    SM.SourceName
    http://www.enhansoft.com/

  • How can i view and apply new custom patterns without going to preset manager? i had this facility but have now lost it

    how can i view and apply new custom patterns without going to preset manager? i had this facility but have now lost it.  i design patterns but am fairly new to photoshop. i used to be able to click on the drop down menu in patterns in the 'fill' box but cannot now do this.  have i inadvertently clicked on something to turn this facility off?  i now have to go to 'preset manager' and manually move my new design to the first box and click 'done' so that i can use it.

    Which version of photoshop are you using?
    After you define a custom pattern it should be added to the bottom of whatever patterns are already loaded.
    For example, if you define a custom pattern and then go to Edit>Fill>Pattern, the newly defined pattern should have been added to the existing loaded patterns.

  • How can I view Artwork on iTunes for 1 or 3 songs per Album?

    So, I am on my iTunes. On the previous Version of iTunes, you can have the list of Albums and view at the same time the Artwork whether it was for 10, 20 songs or even just 1 song. With the new version, there are four icons on the Upper Right where you can view "Cover Flow", "Album Covers", "Detailed List", "Detail List with Album Artwork"...
    When I click on the "Detail List with Album Artwork" and I want to view the Artwork for those albums that I only have 1, 3, or just 5 songs, I cannot view the Artwork. I can only view the Artwork (if for example) those with more then 10 songs.
    How can I view the Artwork at the same time as with those that I am able to?

    I can only view the Artwork (if for example) those with more then 10 songs.
    iTunes menu View > Aways show artwork.
    iTunes defaults to show artwork for albums with 5 or more songs.

  • HT1390 how can i view a list of only the rentable movies in itunes?

    how can i view a list of only the rentable movies in itunes?

    you mean using itunes for windows or from the ipad

  • How can I view my full billing history for the app and music stores without iTunes installed?

    I just received an email receipt from Paypal showing a $12.99 purchase from iTunes. I almost NEVER purchase anything over around five dollars in the app or music store. Since PayPal does not show what this purchase was for, I have not received the receipt from Apple yet, and I cannot find anyway to look up online what this purchase was for....I need help to find out ASAP what this purchase was. If my account has been compromised or if I have been incorrectly charged for something, I would like to get the issue handled immediately. I do not want to install iTunes on my PC (nor should I have to for Pete's sake), but I cannot see anything recent at all in my app or music history on my iPad (not that I would ever purchase anything for $12.99 anyway...I just don't). Thanks in advance for any tips!

    How can I view my full billing history for the app and music stores without iTunes installed?
    No.
    If my account has been compromised
    If you even think this may have happened, immediately change your password.
    See this -> Apple ID: Changing your password

  • How can I view my pictures that were backed up to iTunes? I no longer have an apple product but need to view the pictures for very important reasons.

    How can I view my pictures that were backed up to iTunes? I no longer have an apple product but need to view the pictures for very important reasons.

    If you mean backed up as part of an iPhone backup in iTunes?  If so, you would have to use 3rd party software to extract them from the backup, such as iPhone Backup Extractor.

  • Purchased a movie on my iPhone throught iTunes? I can see it on my computer but I cannot get it to my iPad. I have been looking at all the setting on my computer, iPad and iPhone and I still can't view it on my iPad. How can I view it on my iPad?

    I purchased a movie on my iPhone through iTunes. I can see it on my pc and I shared all my media. I am unable to watch it or download it to my iPad. I am using the same email account for all devices for home sharing. I am not sure what the issue is with this and I have check and rechecked many settings many times. How can I view a movie I purchased on iTunes on one device, on all my other devices?

    If it's a rental film (not a purchased film) that you downloaded on your phone then you can't move it to your computer's iTunes - from http://support.apple.com/kb/HT1657:
    Can I play my rental on more than one device?
    If you download a rented movie on your computer: You can transfer it to a device such as your Apple TV (1st generation), iPhone, iPad, or iPod if it’s a standard-definition film (movies in HD can only be watched on your computer, iPad, iPhone 4 or later, iPod touch (4th generation or later), or Apple TV). Once you move the movie from your computer to a device, the movie will disappear from your computer's iTunes library. You can move the movie between devices as many times as you wish during the rental period, but the movie can only exist on one device at a time.
    If you download a rented movie on your iPhone 4 or later, iPad, iPod touch (4th generation or later), or Apple TV: It is not transferable to any other device or computer.

  • How can I view an AI file created on a MAC on a PC without corrupting the fonts?

    How can I view an AI file created on a MAC on a PC without corrupting the original fonts?  An AI file was created with an image and text on a MAC.  When the AI file was opened on a PC, the text fonts were not the same as originally created.  Also, the same AI file was saved to PDF on the MAC.  When the AI file was opened on a PC, there wasn't anything visible.  Anyone have any ideas?

    Are you using the save version of Illustrator on both Mac and PC? If so, and you have the same fonts installed on both machines you should be able to open it without any problems. You may need to tell it which fonts to assign, they are not always named the same. If you don't need to edit the text, you could convert the text to outline and eliminate the need for fonts.

Maybe you are looking for

  • Windows 8.1, IE 11 and SharePoint Online

    I have windows 8.1 and can not get "Form Settings" in SharePoint to work. It tells me "Internet Explorer is required to use this feature.", but I am using IE. I did not have this issue on my windows 7 box at work but on my laptop I can not get IE 11

  • How to include image in dynamic .pdf CF8

    What is the proper way to include an image in a dynamic .pdf? In CF7, I did this. <img src="file://///xxxDocServer/HiRes Photos#Biography.File_Path#" width="119" height="153" />

  • Is it safe to always keep the PC plugged in after removing the battery pack?

    As I'm not going to move my pc for some time, I have removed the battery pack and use the AC power instead. But I would like to know whether its safe to keep it plugged into the AC 24/7? and does it consume energy or does it damage anything when the

  • How to type part of a word and have Numbers suggest the whole word as previously used?

    I track a budget in a table, using a limited set of category names in a column.  After typing in a few items and category names, later items use the same category names.  In Numbers 2.0, I could type the first characters of a category name and Number

  • Don't have permission to view

    I keep getting the following message when trying to open PDF documents on my Mac, "The file XYZ couldn't be opened because you don't have permission to view it." I never used to have this problem. I may have unwittingly upgraded to a new version. Can