Is there any way to trace my session even when i forgot to fire  spool

Is there any way to trace my session even when i forgot to fire
spool [file name] .................

No, not as fa as I know.
Traces of a session and spool are not related.
You need to set an audit trail to trace a session.
Spool simply spools to a file your work in SQL*Plus.
Hope this Helps

Similar Messages

  • Is there any way to trace my session

    Is there any way to trace my session even when i forgot to fire
    spool file name .................

    Tkprof can give you all information below
    [http://www.orafaq.com/wiki/TKProf]
    TKProf
    From Oracle FAQ
    Jump to: navigation, search
    TKProf is an Oracle database utility used to format SQL Trace output into human readable format. The TKProf executable is located in the ORACLE HOME/bin directory.
    [edit] Start TKProf
    Syntax is:
    tkprof input.trc output.prf [options]
    Example:
    $ tkprof orcl102_ora_3064.trc output.prf EXPLAIN=scott/tiger SYS=NO
    [edit] Sample output
    For the above example, the output would be in file output.prf:
    Tkprof: Release 9.2.0.1.0 - Production on Tue Dec 24 15:32:43 2002
    Copyright (c) 1982, 2002, Oracle Corporation.  All rights reserved.
    Trace file: ORCL102_ora_3064.trc
    Sort options: default
    count    = number of times OCI procedure was executed
    cpu      = cpu time in seconds executing
    elapsed  = elapsed time in seconds executing
    disk     = number of physical reads of buffers from disk
    query    = number of buffers gotten for consistent read
    current  = number of buffers gotten in current mode (usually for update)
    rows     = number of rows processed by the fetch or execute call
    select *
    from
    employee where emp_id = 3737
    call     count       cpu    elapsed       disk      query    current        rows
    Parse       10      0.00       0.03          0          0          0           0
    Execute     10      0.00       0.00          0          0          0           0
    Fetch       20      0.34       0.35         72       4730          0          10
    total       40      0.34       0.39         72       4730          0          10
    Misses in library cache during parse: 1
    Optimizer goal: CHOOSE
    Parsing user id: 59
    Rows     Row Source Operation
          1  TABLE ACCESS FULL EMPLOYEEAnother insteresting link
    [http://www.dbspecialists.com/files/presentations/use_explain.html]

  • I have a daughter using Skype on her iPhone, is there any way to trace her activity, even if she logs out?

    I do not know her user name or password, and she logs out every time she uses it.......just being a concerned dad.....

    devo136 wrote:
    I do not know her user name or password, and she logs out every time she uses it.......just being a concerned dad.....
    Err, why don't you try spend more time with her and get closer? Perhaps she might reveal who the mystery caller is or so if you ask **nicely**. Well I guess possible fear your kids have is the fear of *rejection* in a case where she might be contacting someone she thinks you wouldn't agree to.

  • Hi,i lost my iPhone few hrs ago...is there any way to trace it...?

    Hi,i lost my iPhone few hrs ago...is there any way to trace it

    thanksss to al.. i do download 'find my phone,but dnt remember activate or not.
    someone walked in my shop n stole it? or the contractor worker took it?cant lodge report cause cant find serial no.
    al contact gone..!
    once again thank guys!

  • Is there any way to locate your iPhone even though it is dead or offline?

    Is there any way to locate your iPhone even though it is dead or offline?

    Other than by physically looking for it, no.

  • Is there a way to trace an IPOD even if it is Jailbroken.... how is it possible to bypass the ICloud Lost feature in the device? third time my 64 gb iPod touch gets stolen.

    Is there a way to trace an IPOD even if it is Jailbroken.... how is it possible to bypass the ICloud Lost feature in the device? third time my 64 gb iPod touch gets stolen.

    If it is off or not connected to wi-fi, then you cannot track it.

  • Is there any way to resize already loaded preview when widget is resize?

    Is there any way to resize already loaded previews when panel widget is resize? <br />Actually, I have already a lot of preview images loaded on my preview panel's widget. when my preview panel is resize, is there any way to resize already loaded preview images without creating new preview images. <br /><br />ErrorCode CMPSImageListDataView::CreatePreview( const IDFile& previewFile, uint32 width, uint32 height, uint8 backGrey ) <br />{ <br />InterfacePtr<IPMStream> fileStream( StreamUtil::CreateFileStreamRead(previewFile) ); <br />if(!fileStream ) return kFailure; <br /><br />InterfacePtr<IK2ServiceRegistry> serviceRegistry(gSession, UseDefaultIID()); <br />if(!serviceRegistry) return kFailure; <br /><br />int numHandlers = serviceRegistry->GetServiceProviderCount(kImportProviderService); <br />for (int i = 0; i < numHandlers; i++) { InterfacePtr<IK2ServiceProvider> provider( serviceRegistry->QueryNthServiceProvider(kImportProviderService, i)); <br />InterfacePtr<IImportProvider> importProvider(provider, IID_IIMPORTPROVIDER); <br /><br />if (importProvider && importProvider->CanImportThisStream(fileStream) == IImportProvider::kFullImport) <br />{ <br />InterfacePtr<IImportPreview> preview(importProvider, IID_IIMPORTPREVIEW); <br />if(preview) <br />{ <br />bool16 reallocateNeeded = kTrue; <br />if( (this->m_fCachedImHeight == height) && (this->m_fCachedImWidth == width)) <br />reallocateNeeded = kFalse; <br /><br />if(reallocateNeeded) <br />{ <br />this->DeleteBuffers(); <br />m_fpCurAGMImage = new AGMImageRecord; <br />memset (m_fpCurAGMImage, 0, sizeof(AGMImageRecord)); <br />m_fpCurAGMImage->bounds.xMin = 0; <br />m_fpCurAGMImage->bounds.yMin = 0; <br />m_fpCurAGMImage->bounds.xMax = width; <br />m_fpCurAGMImage->bounds.yMax = height; <br />m_fpCurAGMImage->byteWidth = 3*width; <br />m_fpCurAGMImage->colorSpace = kAGMCsRGB; <br />m_fpCurAGMImage->bitsPerPixel = 24; <br />m_fpCurAGMImage->decodeArray = 0; <br />m_fpCurAGMImage->colorTab.numColors = 0; <br />m_fpCurAGMImage->colorTab.theColors = nil; <br /><br />this->m_fDataBuffer = new uint8[((m_fpCurAGMImage->byteWidth) * height)]; <br />ASSERT(this->m_fDataBuffer); <br />m_fpCurAGMImage->baseAddr = static_cast<void *>(this->m_fDataBuffer); <br /><br />this->m_fCachedImHeight = height; <br />this->m_fCachedImWidth = width; <br />} <br /><br />::memset(m_fpCurAGMImage->baseAddr, backGrey, (m_fpCurAGMImage->byteWidth) * height); <br /><br />if (m_fpCurAGMImage->baseAddr) <br />{ <br />AcquireWaitCursor busyCursor; <br />preview->Create24bitRGBPreview( (uint8*)m_fpCurAGMImage->baseAddr, width, height, fileStream, kTrue ); <br />m_fCurImageSysFile = previewFile; <br /><br />return kSuccess; <br />} <br />} <br />} <br />fileStream->Seek(0,kSeekFromStart); <br />} <br />return kFailure; <br />}

    Really Thanks!! T Schneider<br />How can I do that matrix?<br />Would you mind....?<br /><br />                    <br />PMReal imageWidth = ( m_fpCurAGMImage->bounds.xMax - m_fpCurAGMImage->bounds.xMin);<br />                    <br />PMReal imageHeight = ( m_fpCurAGMImage->bounds.yMax - m_fpCurAGMImage->bounds.yMin);<br />                    <br />PMReal xOffset = frame.GetHCenter() - imageWidth/2;<br />PMReal yOffset = frame.GetVCenter() - imageHeight/2;<br /><br />gPort->translate(xOffset, yOffset);<br />               <br />InterfacePtr<ITransform> iTransform(this, IID_ITRANSFORM);<br />PMMatrix theMatrix = iTransform->GetInnerToParentMatrix();<br /><br />.??????????????????????????????.<br /><br />ASSERT(m_fpCurAGMImage);<br />gPort->image(m_fpCurAGMImage, theMatrix, 0);

  • Is there any way to restore lost sessions closed accidently?

    I had many tabs open but accidently closed the firefox without saving it. When I opened next time, I lost all the tabs. Is there any way to restore those tabs.
    I saw a posting which refering to renaming a file called sessionstore.bak but I could not find that file. I need a permanenet solution to this. I don't want to save everything in the bookmark. Alternatively, is there any way to save multiple opened sessions which can be retrieved any time.

    Apparently new in FireFox 4, possibly due to customer demand, there is a selection to Restore Previous Session in the History menu. Unfortunately, I must use it way too OFTEN.

  • I have lost my Iphone 4s but I am not sure whether FindmyIphone is on or not. Is there any way to trace?

    I have lost my Iphone 4s recently. I am not sure whether I got activate the FINDMYIPHONE, is there any way to check?

    Did you try to log in icloud.com/find on your computer and see if you can locate your phone?
    Also have a look at this article: iCloud: Troubleshooting Find My iPhone, iPad, iPod touch, or Mac
    Message was edited by: Ingo2711

  • Iphone 3GS was dropped and will not turn on or respond to USB connection.  Is there any way to extract the data off when it is not responding so that I can restore to my new phone?

    The phone is physically intact, but you can see the LCD is cracked behond the glass. I have tried plugging it in, tried putting it on the charger, and resetting it using the off and home buttons, bit response. I don't need the phone to work, but I do need to be bale to back it up in order to restore to the new phone.  Is there any way to extract the data or back up the hard drive without repairing the phone?  Just curious what my options are before I spend cash trying to fix the phone and find out there was another way to get the data.  Any thoughts here or should a good repair shop being able to create a backup somehow?

    Im not going to be much help because I don't know of anything else to besides take it somewhere that fixes electronics and see if they can get it off some how maybe if you take it to an apple store they can do something to get your information.

  • HT4314 I have two games Tribez and Tribez and Castles on my iPad. I have to send my iPad Air back for repair to crack glass. Is there any way to save the games., for when I have to restore back up

    I have two games tribez and tribez and Castle. As my new iPad air has a cracked screen I have to send it back for repair. I have to do a reset and restore backup when I get it back. Is there any way to back up above games. On tribez I have reached level 99 and will be annoying to starts again.

    Do you have a computer with iTunes on it that you have associated the iPad with?
    If the answer is yes, simply set iTunes up to back up the device locally, fully sync the apps, photos, movies, etc. A copy of everything, including the config of the device and all your settings (scores) will be made on the computer's drive. This even includes a backup copy of all the apps. When you get the replacement device (probably a refurbished blank unit), a Restore from that backup will totally reconstruct what you have today.
    If the answer is no, you will have quite a bit more work to do in order to get back to the original state that the iGadget is currently in (minus the crack).

  • HT1414 is there any way to track down my iphone when i have lost it?

    I lost my iphone and i have the "find my iphone" app and thought that it may work from my mac but I am not finding a way to do that, is there any way to track down my iphone from my mac?

    On your Mac, login to iCloud.com, & try to locate your phone. This requires that Find My Phone be setup/activated, on your phone, before you lost it. It also requires your phone be turned on & connected to the Internet. There is no other way to locate a lost iPhone, other than physically looking for it.

  • Is there any way to popup a dialog box when user try to create a new folder?

    Hi
    I want to add a pop up dialog ,using Flex custom UI dialog, when use click "New Folder" in Adobe Bridge ? Then user can input folder name in this dialog.
    Or I want to put this way,  is there any way to display Flex custom UI dialog and get user's input in my CreateDirectoryHandler implementation?
    The Adobe Drive SDK doesn't elaborate clearly about how to interact with custom UI dialog.
    Thanks a lot!

    Hi jmc,
                 See the links below.This will be helpful to you.
                 http://forums.ni.com/t5/LabVIEW/A-picture-as-a-dialog-box/td-p/236851
                 http://forums.ni.com/t5/LabVIEW/Dialogbox-with-user-input-and-image/td-p/1601214
    Thanks as kudos only

  • Is there any way to turn off keypad sounds when making a phone call?

    I am a new user to iphone....is there any way to turn off sounds of keypad when making a manual phone call of someone not in address book?
    Thanks

    If I understand the question correctly, it is not about turning off keyboard clicks, it's about silencing the beeps made when manually keying in a  phone number. With keyboard clicks turned off, the beeps still sound when keying in a phone number. If I'm reading the iPhone User Guide correctly, it explains how to turn off keyboard clicks but not how to silence the   beeps when keying in a phone number. The only way I have found to silence the beeps is to put the phone into silent mode.

  • HT201365 Is there any way to find my lost Iphone when its switched off ?

    hi guys
    my name is tahir
    i lost my iphone recently week
    i dont remember that where i lost it in my car or in a hotel but the bad news is it is switch off
    so i wanted to know that is there any way to find my iphone when it is switched off ?

    No, there is not.
    What To Do If Your iDevice or Computer Is Lost Or Stolen
    iPhone, iPod Touch, and iPad
    If you activated Find My Phone before it was lost or stolen, you can track it only if Wi-Fi is enabled on the device. What you cannot do is track your device using a serial number or other identifying number. You cannot expect Apple or anyone else to find your device for you. You cannot recover your loss unless you insure your device for such loss. It is not covered by your warranty.
    If your iPhone, iPod, iPod Touch, or iPad is lost or stolen what do you do? There are things you should have done in advance - before you lost it or it was stolen - and some things to do after the fact. Here are some suggestions:
    This link, Re: Help! I misplaced / lost my iPhone 5 today morning in delta Chelsea hotel downtown an I am not able to track it. Please help!, has some good advice regarding your options when your iDevice is lost or stolen.
      1. Reporting a lost or stolen Apple product
      2. Find my lost iPod Touch
      3. AT&T. Sprint, and Verizon can block stolen phones/tablets
      4. What-To-Do-When-Iphone-Is-Stolen
      5. iCloud- Use Lost Mode
      6. What to do if your iOS device is lost or stolen
      7. 6 Ways to Track and Recover Your Lost/Stolen iPhone
      8. Find My iPhone
      9. Report Stolen iPad | Stolen Lost Found Online
    It pays to be proactive by following the advice on using Find My Phone before you lose your device:
      1. Find My iPhone
      2. Setup your iDevice on iCloud
      3. OS X Lion/Mountain Lion- About Find My Mac
      4. How To Set Up Free Find Your iPhone (Even on Unsupported Devices)
    Mac Computer
           Find My Mac can be used from Find My Phone at iCloud.com and via Find
           My Phone on your iDevice.
          The following is third-party anti-theft software:
               1.  STEM 2.1
               2.  MacPhoneHome 3.5
               3.  MacTrack 7.5.0
               4.  VUWER 1.7
               5.  Sneaky Bastar* 0.2.0
               6.  Undercover 5.1.1
               7.  LoJack for Laptops
               8. Hidden 2.0
               9. Prey 0.6.2

Maybe you are looking for

  • Enquiry on HP Fiber Transciever Module Compatibility.

    I have a Cisco switch 2960-s PoE installed. I was wondering if the HP Fiber module #AJ718A   ( http://h30094.www3.hp.com/product/sku/3790470 ) is compatible with it. if it is compatible, is there much difference between it and the cisco GLC-SX-MM ? t

  • PhotoShop CS3

    Hello, Out of country, using my MacBook Pro, i forgot to install DPP from Canon to view my images taken with EOS 5D Mark II. Because Canon is giving UPGRADES, i wonder where to find downlodable original DPP ? Trying to open RAW images using PhotoShop

  • About Project types

    Hi friends Please explain me about Roll-Out project, when it is preferred? How it is different from Development project? Is there any need to develop objects from scratch in Roll-Out ?? Thanks Suren

  • Xfce4 printing issue

    Hi, Just installed a printer via cups page and printing a test page from there works fine. The problem is: With the printer installed, the xfce menu entry 'Printer Dialogue' does not start or show the gui. Only if I delete the printer will the 'print

  • I need help with my sercuity questions. I for got what they was. Can you help me?

    Can someone help me figured out what my sercuity question is?