Should trace files contain clear text for queries?

Hi:
I've set up a JDBC connection pool in Oracle WLS 10.3.3 and want to verify that the traffic is in fact encrypted. (I am not going for authentication, just encryption). So I have turned tracing on in the server and I run an application in WLS. In the trace file I see the following:
2011-09-27 18:11:50.248292 : na_tns:Secure Network Services is available.
2011-09-27 18:11:50.248307 : nau_adi:entry
2011-09-27 18:11:50.248324 : nau_adi:exit
2011-09-27 18:11:50.248333 : na_tns:    authentication is not active
2011-09-27 18:11:50.248346 : na_tns:    encryption is active, using AES256
2011-09-27 18:11:50.248356 : na_tns:    crypto-checksumming is active, using SHA1
2011-09-27 18:11:50.248365 : na_tns:exitI am taking this to mean that in fact the application is using an encrypted JDBC connection. Later on in this file though, I see the clear text of the query (everything is clear text actually). I believe this is correct because by the time the query makes it into the trace file the DB has decrypted it and executed it. Is this correct?
Thanks.

Are you referring to the database session trace file (e.g. generated by SQL_TRACE=TRUE, event 10046, DBMS_SESSION.SESSION_TRACE_ENABLE etc) ?
What is dumped (ie. SQL statements) is always clear text. (There used to be an issue with passwords from ALTER USER commands still present in the shared pool but I believe that has been fixed so the password is not dumped in clear text).
SQLNet traffic between an Application Server and Database Server is encrypted.
Hemant K Chitale

Similar Messages

  • [svn:fx-trunk] 8245: adding option (package-description-file) to specify file containing package descriptions for asdoc.

    Revision: 8245
    Author:   [email protected]
    Date:     2009-06-25 12:07:07 -0700 (Thu, 25 Jun 2009)
    Log Message:
    adding option (package-description-file) to specify file containing package descriptions for asdoc.
    Bugs: SDK-19755
    QE Notes: None.
    Doc Notes: None.
    Reviewed by: Paul
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-19755
    Modified Paths:
        flex/sdk/trunk/modules/antTasks/src/flex/ant/AsDocTask.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/AsDocAPI.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/configuration_en.properties
        flex/sdk/trunk/modules/compiler/src/java/flex2/tools/ASDocConfiguration.java

    Revision: 8245
    Author:   [email protected]
    Date:     2009-06-25 12:07:07 -0700 (Thu, 25 Jun 2009)
    Log Message:
    adding option (package-description-file) to specify file containing package descriptions for asdoc.
    Bugs: SDK-19755
    QE Notes: None.
    Doc Notes: None.
    Reviewed by: Paul
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-19755
    Modified Paths:
        flex/sdk/trunk/modules/antTasks/src/flex/ant/AsDocTask.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/AsDocAPI.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/configuration_en.properties
        flex/sdk/trunk/modules/compiler/src/java/flex2/tools/ASDocConfiguration.java

  • Conversion of PDF to WORD (a problem with a file containing Persian text)

    Converting/copying  a PDF file containing a persian text to WORD (.doc) gives a distorted  WORD document!  Could any one please tell me what I must do to have a  sound and neat WORD (.doc) version of a PDF file containg a Persian  text? I use Adobe Acrobat8 Professional and MS Office WORD 2007. So  many thanks in advance for your help.

    Converting/copying  a PDF file containing a persian text to WORD (.doc) gives a distorted  WORD document!  Could any one please tell me what I must do to have a  sound and neat WORD (.doc) version of a PDF file containg a Persian  text? I use Adobe Acrobat8 Professional and MS Office WORD 2007. So  many thanks in advance for your help.

  • Just lost a file containing important photos for a project. how do it get back?

    HP TOUCHSMART 610PC - WINDOWS 7 - 64bit
    lost file containing important pictures was in Picassa. How do I get them back?

    Brindah99
    You are in the wrong forum if you are making a brochure, and you are not saying what version of Photoshop Elements that you are using.
    You can repost your thread in the Adobe Photoshop Elements Forum or wait for a moderator here to see your thread here and then move it from here to there.
    While we are waiting for those decisions, here is something you to think about
    1. Assuming Photoshop Elements 11 Windows.....
    You should be able to click your sized down photo on screen to get a bounding box around it for additional resizing. And, if you click on the Layer for this photo in the Layers Palette, you should be able to see the photo's bounding box on screen.
    Either one of those happening?
    With the Move Tool selected, look to the bottom of the workspace where the Move Tool options are shown. Do you have a check mark next to "Auto Select Layer"? Check what is happening with and without the check mark there. Remember Move Tool is selected in this example.
    Best wishes
    ATR

  • Terminal command to move multiple files containing certain text

    Hi all.
    Still new to mac so I'm hoping for a softly softly approach.
    I have over 300GB of SD versions of HD content just taking up space on my iTunes drive. Now, I realise backing up such a large amount of data is going to need yet another drive (or a huge amount of DVDs!), and at the moment isn't urgent but could be at this rate. I have been trying to use the cp comand to copy all files containing (HD) in the filename into a subfolder so I can easily separate then select the SD versions to backup/delete as needed. I would replace cp with mv once I got it working. However, since the terminal appears to work differently to Windows Command Prompt I've been having difficulty with the wildcards.
    How would I write the following:
    copy all m4v files in [this directory] that contain (HD) in the filename to [new directory]
    I tried
    cp *(HD).m4v
    cp * (HD).m4v
    cp *" (HD)".m4v
    and many other permutations but they all kept coming up with no such file or directory errors. Any help appreciated.
    edit: would there be a way of writing it as: copy all m4v files in [this directory] that do not contain (HD) in the filename to [new directory]
    Message was edited by: HappyTrucker

    I find this terminal stuff interesting but also annoying as a newbie trying to get his head around it.
    That's where making it a script simplifies it.
    Try:
    Open TextEdit (Applications->TextEdit) and then: Format->Make Plain Text
    Then copy the code below (edit to suit your needs) and paste in TextEdit and save as AnyNameYouWant.command on the Desktop (you can move it anywhere you want later)
    #!/bin/bash
    find /Volumes/Videos/TV\ Shows/The\ West\ Wing/ -not -name '*(HD).m4v' -exec mv {} /Volumes/Videos/TV\ Shows/The\ West\ Wing/sdversions/  \;
    Now, open Terminal (Applications->Utilities), and make AnyNameYouWant.command executable by entering:
    chmod u+x Desktop/AnyNameYouWant.command
    Now you can just "click" AnyNameYouWant.command on the Desktop to run.
    Tony

  • Illustrator file contains pdf text rather than graphic

    When I open an illustrator file I created about a year ago I now get a file that is filled with text saying:
    This is an Adobe® Illustrator® File that was
    saved without PDF Content.
    To Place or open this file in other
    applications, it should be re-saved from
    Adobe Illustrator with the "Create PDF
    Compatible File" option turned on. This
    option is in the Illustrator Native Format
    Options dialog box, which appears when
    saving an Adobe Illustrator file using the
    Save As command.
    When I follow the instructions it literally saves the warning text that is shown, and there is no graphics.
    When I try to "place" the file into a new illustrator file the preview shows my graphic, but when it is place it is just the repeating message.
    Has anyone seen this or know a work around to get my graphic back

    Looks like the file is corrupt.
    Either you didn't save it with PDF compatibility or both parts of the file got corrupted.
    When following the instructions did you save it under a different name or did you overwrite the existing file?
    If you overwrote it, then your file is most probably gone forever. If you still have the original file you could try and recover it using third party tools. See a list of tools inthis post by Jacob Bugge: Re: How to recover an Illustrator CS2 file that crashed, with Illustrator CS5.5 ?

  • Xcode 4.6.3 quits when the .m file contains hebrew text in nsstrings.It showing jumbled text while scrolling and then crashing.

    Process:         Xcode [4962]
    Path:            /Applications/Xcode 2.app/Contents/MacOS/Xcode
    Identifier:      com.apple.dt.Xcode
    Version:         4.6.3 (2068)
    Build Info:      IDEApplication-2068000000000000~3
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [158]
    Responsible:     Xcode [4962]
    User ID:         501
    Date/Time:       2013-11-12 17:22:39.636 +0530
    OS Version:      Mac OS X 10.9 (13A603)
    Report Version:  11
    Anonymous UUID:  F948C939-2F6E-E958-31A4-A0022732FDFC
    Sleep/Wake UUID: 3D020738-7CFF-4D9D-B81D-4F613ADF7E6F
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    ProductBuildVersion: 4H1503
    UNCAUGHT EXCEPTION (NSRangeException): *** -[__NSCFString _getBlockStart:end:contentsEnd:forRange:stopAtLineSeparators:]: Range {51526, 113227} out of bounds; string length 164727
    UserInfo: (null)
    Hints: None
    Backtrace:
      0  0x00007fff90881404 __exceptionPreprocess (in CoreFoundation)
      1  0x00007fff92c7fe75 objc_exception_throw (in libobjc.A.dylib)
      2  0x00007fff908812cc +[NSException raise:format:] (in CoreFoundation)
      3  0x00007fff8fae9bdd -[NSString _getBlockStart:end:contentsEnd:forRange:stopAtLineSeparators:] (in Foundation)
      4  0x00007fff8933aa0a _NSFastFillAllLayoutHolesForGlyphRange (in AppKit)
      5  0x00007fff8970c0e2 -[NSLayoutManager(NSPrivate) _rectArrayForRange:withinSelectionRange:rangeIsCharRange:singleRectOnly:fullLin eRectsOnly:inTextContainer:rectCount:rangeWithinContainer:glyphsDrawOutsideLines :] (in AppKit)
      6  0x00007fff8940a6e0 -[NSLayoutManager rectArrayForCharacterRange:withinSelectedCharacterRange:inTextContainer:rectCou nt:] (in AppKit)
      7  0x00007fff892ed2b2 -[NSTextView(NSSharing) updateInsertionPointStateAndRestartTimer:] (in AppKit)
      8  0x000000010f0b1ccf -[DVTCompletingTextView(FoldingSupport) updateInsertionPointStateAndRestartTimer:] (in DVTKit)
      9  0x000000010f0da6b8 -[DVTSourceTextView(FoldingSupport) updateInsertionPointStateAndRestartTimer:] (in DVTKit)
    10  0x00007fff8928c27a -[NSLayoutManager(NSPrivate) _invalidateLayoutForExtendedCharacterRange:isSoft:invalidateUsage:] (in AppKit)
    11  0x00007fff8928ec0f -[NSLayoutManager textContainerChangedGeometry:] (in AppKit)
    12  0x000000010f0b6e78 -[DVTLayoutManager textContainerChangedGeometry:] (in DVTKit)
    13  0x00007fff892812e8 -[NSTextContainer setContainerSize:] (in AppKit)
    14  0x00007fff892ef065 -[NSTextContainer(NSPrivate) _resizeAccordingToTextView:] (in AppKit)
    15  0x00007fff9084ffcc __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ (in CoreFoundation)
    16  0x00007fff90743c5d _CFXNotificationPost (in CoreFoundation)
    17  0x00007fff891e9023 -[NSView _postFrameChangeNotification] (in AppKit)
    18  0x00007fff8940889b -[NSView setPostsFrameChangedNotifications:] (in AppKit)
    19  0x000000010f14b7e9 -[NSView(DVTNSViewAdditions) dvt_viewDidEndLiveAnimation] (in DVTKit)
    20  0x000000010f14b7e9 -[NSView(DVTNSViewAdditions) dvt_viewDidEndLiveAnimation] (in DVTKit)
    21  0x000000010f14b7e9 -[NSView(DVTNSViewAdditions) dvt_viewDidEndLiveAnimation] (in DVTKit)
    22  0x000000010f14b7e9 -[NSView(DVTNSViewAdditions) dvt_viewDidEndLiveAnimation] (in DVTKit)
    23  0x000000010f14b7e9 -[NSView(DVTNSViewAdditions) dvt_viewDidEndLiveAnimation] (in DVTKit)
    24  0x000000010f14b7e9 -[NSView(DVTNSViewAdditions) dvt_viewDidEndLiveAnimation] (in DVTKit)
    25  0x000000010f14b7e9 -[NSView(DVTNSViewAdditions) dvt_viewDidEndLiveAnimation] (in DVTKit)
    26  0x000000010f14b7e9 -[NSView(DVTNSViewAdditions) dvt_viewDidEndLiveAnimation] (in DVTKit)
    27  0x000000010f14b7e9 -[NSView(DVTNSViewAdditions) dvt_viewDidEndLiveAnimation] (in DVTKit)
    28  0x000000010f14b7e9 -[NSView(DVTNSViewAdditions) dvt_viewDidEndLiveAnimation] (in DVTKit)
    29  0x000000010f14b7e9 -[NSView(DVTNSViewAdditions) dvt_viewDidEndLiveAnimation] (in DVTKit)
    30  0x000000010f14b7e9 -[NSView(DVTNSViewAdditions) dvt_viewDidEndLiveAnimation] (in DVTKit)
    31  0x000000010f14b7e9 -[NSView(DVTNSViewAdditions) dvt_viewDidEndLiveAnimation] (in DVTKit)
    32  0x000000010f14b7e9 -[NSView(DVTNSViewAdditions) dvt_viewDidEndLiveAnimation] (in DVTKit)
    33  0x000000010f14b67d -[DVTSplitViewAnimation animationDidEnd:] (in DVTKit)
    34  0x00007fff89469693 -[NSAnimation(NSInternal) _stopAnimation:withTimer:] (in AppKit)
    35  0x00007fff8faf6094 __NSFireTimer (in Foundation)
    36  0x00007fff907e8724 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ (in CoreFoundation)
    37  0x00007fff907e825f __CFRunLoopDoTimer (in CoreFoundation)
    38  0x00007fff9085976a __CFRunLoopDoTimers (in CoreFoundation)
    39  0x00007fff907a3aa5 __CFRunLoopRun (in CoreFoundation)
    40  0x00007fff907a3275 CFRunLoopRunSpecific (in CoreFoundation)
    41  0x00007fff8fafaa7c -[NSRunLoop(NSRunLoop) runMode:beforeDate:] (in Foundation)
    42  0x00007fff8946af06 -[NSAnimation(NSInternal) _runBlocking] (in AppKit)
    43  0x000000010f148523 -[DVTSplitView toggleVisibilityOfItemUsingAnimation:] (in DVTKit)
    44  0x000000010f94650f -[IDEWorkspaceTabController toggleUtilitiesVisibility:] (in IDEKit)
    45  0x00007fff893d93d0 -[NSApplication sendAction:to:from:] (in AppKit)
    46  0x000000010f0a0f60 -[DVTApplication sendAction:to:from:] (in DVTKit)
    47  0x00007fff893d924e -[NSControl sendAction:to:] (in AppKit)
    48  0x00007fff89425d7d -[NSCell _sendActionFrom:] (in AppKit)
    49  0x00007fff8945784c -[NSSegmentedCell _sendActionFrom:] (in AppKit)
    50  0x00007fff8943f715 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] (in AppKit)
    51  0x00007fff894571bd -[NSSegmentedCell trackMouse:inRect:ofView:untilMouseUp:] (in AppKit)
    52  0x00007fff8943e1fd -[NSControl mouseDown:] (in AppKit)
    53  0x00007fff893bfd08 -[NSWindow sendEvent:] (in AppKit)
    54  0x00007fff8935e744 -[NSApplication sendEvent:] (in AppKit)
    55  0x000000010f8c168e -[IDEApplication sendEvent:] (in IDEKit)
    56  0x00007fff891aea29 -[NSApplication run] (in AppKit)
    57  0x00007fff89199803 NSApplicationMain (in AppKit)
    58  0x000000010ec67b6f (in Xcode)
    59  0x000000010ec67b00 (in Xcode)
    60  0x0000000000000001
    objc[4962]: garbage collection is ON
    abort() called
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff87a25866 __pthread_kill + 10
    1   libsystem_pthread.dylib                 0x00007fff9049035c pthread_kill + 92
    2   libsystem_c.dylib                       0x00007fff871d4bba abort + 125
    3   com.apple.dt.IDEKit                     0x000000010fa484cf +[IDEAssertionHandler _handleAssertionWithLogString:reason:] + 578
    4   com.apple.dt.IDEKit                     0x000000010fa4910b -[IDEAssertionHandler handleUncaughtException:] + 527
    5   com.apple.AppKit                        0x00007fff891aead8 -[NSApplication run] + 821
    6   com.apple.AppKit                        0x00007fff89199803 NSApplicationMain + 940
    7   com.apple.dt.Xcode                      0x000000010ec67b6f 0x10ec66000 + 7023
    8   com.apple.dt.Xcode                      0x000000010ec67b00 0x10ec66000 + 6912
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff87a26662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff8a03743d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff8a037152 _dispatch_mgr_thread + 52
    Thread 2:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff87a21a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff87a20d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff907a4315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff907a3939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff907a3275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x00007fff8faf8907 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation                    0x00007fff8faf870b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib                 0x00007fff9048f899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9048f72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff90493fc9 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff87a21a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff87a20d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff907a4315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff907a3939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff907a3275 CFRunLoopRunSpecific + 309
    5   com.apple.DTDeviceKit                   0x0000000116b6c7a3 -[DTDKRemoteDeviceDataListener listenerThreadImplementation] + 229
    6   com.apple.Foundation                    0x00007fff8faf870b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib                 0x00007fff9048f899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9048f72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff90493fc9 thread_start + 13
    Thread 4:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff87a259aa __select + 10
    1   com.apple.CoreFoundation                0x00007fff907efd43 __CFSocketManager + 867
    2   libsystem_pthread.dylib                 0x00007fff9048f899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff9048f72a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff90493fc9 thread_start + 13
    Thread 5:: DYMobileDeviceManager
    0   libsystem_kernel.dylib                  0x00007fff87a21a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff87a20d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff907a4315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff907a3939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff907a3275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x00007fff8fafaa7c -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 253
    6   com.apple.Foundation                    0x00007fff8fbe370a -[NSRunLoop(NSRunLoop) run] + 74
    7   com.apple.Foundation                    0x00007fff8faf870b __NSThread__main__ + 1318
    8   libsystem_pthread.dylib                 0x00007fff9048f899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff9048f72a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff90493fc9 thread_start + 13
    Thread 6:: CVDisplayLink
    0   libsystem_kernel.dylib                  0x00007fff87a25716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff90491c3b _pthread_cond_wait + 727
    2   com.apple.CoreVideo                     0x00007fff8ed23a38 CVDisplayLink::runIOThread() + 656
    3   com.apple.CoreVideo                     0x00007fff8ed2378f startIOThread(void*) + 147
    4   libsystem_pthread.dylib                 0x00007fff9048f899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff9048f72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff90493fc9 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff87a21a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff87a20d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff907a4315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff907a3939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff907a3275 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit                        0x00007fff8935b1ce _NSEventThread + 144
    6   libsystem_pthread.dylib                 0x00007fff9048f899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff9048f72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff90493fc9 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff87a25716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff90491c3b _pthread_cond_wait + 727
    2   com.apple.Xcode.DevToolsCore            0x00000001130137e4 -[XCInvocationQueue _processInvocationsInThreadSlotNumber:] + 457
    3   com.apple.Foundation                    0x00007fff8faf870b __NSThread__main__ + 1318
    4   libsystem_pthread.dylib                 0x00007fff9048f899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff9048f72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff90493fc9 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff87a21a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff87a20d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff907a4315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff907a3939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff907a3275 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff908589d1 CFRunLoopRun + 97
    6   com.apple.DebugSymbols                  0x00007fff860c57e3 SpotlightQueryThread(void*) + 355
    7   libsystem_pthread.dylib                 0x00007fff9048f899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9048f72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff90493fc9 thread_start + 13
    Thread 10:: Dispatch queue: NSOperationQueue Serial Queue
    0   libsystem_kernel.dylib                  0x00007fff87a25716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff90491c77 _pthread_cond_wait + 787
    2   com.apple.Foundation                    0x00007fff8fac98d0 -[NSCondition waitUntilDate:] + 344
    3   com.apple.Foundation                    0x00007fff8fac0778 -[NSConditionLock lockWhenCondition:beforeDate:] + 232
    4   com.apple.dt.IDEFoundation              0x000000010f5786d2 __107-[IDEVersionedFileManager removeItemsAtFilePaths:moveToTrash:completionBlockDispatchQueue:completionBlock :]_block_invoke + 1934
    5   com.apple.Foundation                    0x00007fff8fa99591 -[__NSOperationInternal _start:] + 631
    6   com.apple.Foundation                    0x00007fff8fa9923b __NSOQSchedule_f + 64
    7   libdispatch.dylib                       0x00007fff8a0352ad _dispatch_client_callout + 8
    8   libdispatch.dylib                       0x00007fff8a03768f _dispatch_queue_drain + 451
    9   libdispatch.dylib                       0x00007fff8a0389dd _dispatch_queue_invoke + 110
    10  libdispatch.dylib                       0x00007fff8a036fa3 _dispatch_root_queue_drain + 75
    11  libdispatch.dylib                       0x00007fff8a038193 _dispatch_worker_thread2 + 40
    12  libsystem_pthread.dylib                 0x00007fff90490ef8 _pthread_wqthread + 314
    13  libsystem_pthread.dylib                 0x00007fff90493fb9 start_wqthread + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff87a25716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff90491c77 _pthread_cond_wait + 787
    2   com.apple.Foundation                    0x00007fff8fac98d0 -[NSCondition waitUntilDate:] + 344
    3   com.apple.Foundation                    0x00007fff8fac0778 -[NSConditionLock lockWhenCondition:beforeDate:] + 232
    4   com.apple.dt.IDE.IDEInterfaceBuilderCocoaTouchIntegration          0x00000001171776b2 0x117153000 + 149170
    5   com.apple.dt.IDE.IDEInterfaceBuilderCocoaTouchIntegration          0x000000011718f2e0 0x117153000 + 246496
    6   com.apple.Foundation                    0x00007fff8faf870b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib                 0x00007fff9048f899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9048f72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff90493fc9 thread_start + 13
    Thread 12:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib                  0x00007fff87a21a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff87a20d18 mach_msg + 64
    2   com.apple.QuartzCore                    0x00007fff8d7ef3b7 CA::Render::Server::server_thread(void*) + 195
    3   com.apple.QuartzCore                    0x00007fff8d7ef2ed thread_fun + 25
    4   libsystem_pthread.dylib                 0x00007fff9048f899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff9048f72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff90493fc9 thread_start + 13
    Thread 13:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff87a25746 __psynch_mutexwait + 10
    1   libsystem_pthread.dylib                 0x00007fff90492779 _pthread_mutex_lock + 372
    2   com.apple.Foundation                    0x00007fff8fa950ae -[NSRecursiveLock lock] + 22
    3   com.apple.dt.IDEKit                     0x000000010fa9a41e __73+[IDEContainerItemStructureEditingTarget _acceptDropAtIndex:withContext:]_block_invoke241 + 35
    4   com.apple.dt.DVTFoundation              0x000000010ed145d0 __DVTDispatchAsync_block_invoke + 16
    5   libdispatch.dylib                       0x00007fff8a0381d7 _dispatch_call_block_and_release + 12
    6   libdispatch.dylib                       0x00007fff8a0352ad _dispatch_client_callout + 8
    7   libdispatch.dylib                       0x00007fff8a03709e _dispatch_root_queue_drain + 326
    8   libdispatch.dylib                       0x00007fff8a038193 _dispatch_worker_thread2 + 40
    9   libsystem_pthread.dylib                 0x00007fff90490ef8 _pthread_wqthread + 314
    10  libsystem_pthread.dylib                 0x00007fff90493fb9 start_wqthread + 13
    Thread 14:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff87a25746 __psynch_mutexwait + 10
    1   libsystem_pthread.dylib                 0x00007fff90492779 _pthread_mutex_lock + 372
    2   com.apple.Foundation                    0x00007fff8fa950ae -[NSRecursiveLock lock] + 22
    3   com.apple.dt.IDEKit                     0x000000010fa9a41e __73+[IDEContainerItemStructureEditingTarget _acceptDropAtIndex:withContext:]_block_invoke241 + 35
    4   com.apple.dt.DVTFoundation              0x000000010ed145d0 __DVTDispatchAsync_block_invoke + 16
    5   libdispatch.dylib                       0x00007fff8a0381d7 _dispatch_call_block_and_release + 12
    6   libdispatch.dylib                       0x00007fff8a0352ad _dispatch_client_callout + 8
    7   libdispatch.dylib                       0x00007fff8a03709e _dispatch_root_queue_drain + 326
    8   libdispatch.dylib                       0x00007fff8a038193 _dispatch_worker_thread2 + 40
    9   libsystem_pthread.dylib                 0x00007fff90490ef8 _pthread_wqthread + 314
    10  libsystem_pthread.dylib                 0x00007fff90493fb9 start_wqthread + 13
    Thread 15:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff87a25746 __psynch_mutexwait + 10
    1   libsystem_pthread.dylib                 0x00007fff90492779 _pthread_mutex_lock + 372
    2   com.apple.Foundation                    0x00007fff8fa950ae -[NSRecursiveLock lock] + 22
    3   com.apple.dt.IDEKit                     0x000000010fa9a41e __73+[IDEContainerItemStructureEditingTarget _acceptDropAtIndex:withContext:]_block_invoke241 + 35
    4   com.apple.dt.DVTFoundation              0x000000010ed145d0 __DVTDispatchAsync_block_invoke + 16
    5   libdispatch.dylib                       0x00007fff8a0381d7 _dispatch_call_block_and_release + 12
    6   libdispatch.dylib                       0x00007fff8a0352ad _dispatch_client_callout + 8
    7   libdispatch.dylib                       0x00007fff8a03709e _dispatch_root_queue_drain + 326
    8   libdispatch.dylib                       0x00007fff8a038193 _dispatch_worker_thread2 + 40
    9   libsystem_pthread.dylib                 0x00007fff90490ef8 _pthread_wqthread + 314
    10  libsystem_pthread.dylib                 0x00007fff90493fb9 start_wqthread + 13
    Thread 16:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff87a25746 __psynch_mutexwait + 10
    1   libsystem_pthread.dylib                 0x00007fff90492779 _pthread_mutex_lock + 372
    2   com.apple.Foundation                    0x00007fff8fa950ae -[NSRecursiveLock lock] + 22
    3   com.apple.dt.IDEKit                     0x000000010fa9a41e __73+[IDEContainerItemStructureEditingTarget _acceptDropAtIndex:withContext:]_block_invoke241 + 35
    4   com.apple.dt.DVTFoundation              0x000000010ed145d0 __DVTDispatchAsync_block_invoke + 16
    5   libdispatch.dylib                       0x00007fff8a0381d7 _dispatch_call_block_and_release + 12
    6   libdispatch.dylib                       0x00007fff8a0352ad _dispatch_client_callout + 8
    7   libdispatch.dylib                       0x00007fff8a03709e _dispatch_root_queue_drain + 326
    8   libdispatch.dylib                       0x00007fff8a038193 _dispatch_worker_thread2 + 40
    9   libsystem_pthread.dylib                 0x00007fff90490ef8 _pthread_wqthread + 314
    10  libsystem_pthread.dylib                 0x00007fff90493fb9 start_wqthread + 13
    Thread 17:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x00007fff87a25716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff90491c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x00007fff8d32f145 JSC::BlockAllocator::blockFreeingThreadMain() + 261
    3   com.apple.JavaScriptCore                0x00007fff8d32444f ***::wtfThreadEntryPoint(void*) + 15
    4   libsystem_pthread.dylib                 0x00007fff9048f899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff9048f72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff90493fc9 thread_start + 13
    Thread 18:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff87a25716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff90491c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x00007fff8d32fbb7 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x00007fff8d32fa48 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x00007fff8d32444f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x00007fff9048f899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff9048f72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff90493fc9 thread_start + 13
    Thread 19:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff87a25716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff90491c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x00007fff8d32fbb7 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x00007fff8d32fa48 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x00007fff8d32444f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x00007fff9048f899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff9048f72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff90493fc9 thread_start + 13
    Thread 20:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff87a25716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff90491c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x00007fff8d32fbb7 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x00007fff8d32fa48 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x00007fff8d32444f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x00007fff9048f899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff9048f72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff90493fc9 thread_start + 13
    Thread 21:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff87a25746 __psynch_mutexwait + 10
    1   libsystem_pthread.dylib                 0x00007fff90492779 _pthread_mutex_lock + 372
    2   com.apple.Foundation                    0x00007fff8fa950ae -[NSRecursiveLock lock] + 22
    3   com.apple.dt.IDEKit                     0x000000010fa9a41e __73+[IDEContainerItemStructureEditingTarget _acceptDropAtIndex:withContext:]_block_invoke241 + 35
    4   com.apple.dt.DVTFoundation              0x000000010ed145d0 __DVTDispatchAsync_block_invoke + 16
    5   libdispatch.dylib                       0x00007fff8a0381d7 _dispatch_call_block_and_release + 12
    6   libdispatch.dylib                       0x00007fff8a0352ad _dispatch_client_callout + 8
    7   libdispatch.dylib                       0x00007fff8a03709e _dispatch_root_queue_drain + 326
    8   libdispatch.dylib                       0x00007fff8a038193 _dispatch_worker_thread2 + 40
    9   libsystem_pthread.dylib                 0x00007fff90490ef8 _pthread_wqthread + 314
    10  libsystem_pthread.dylib                 0x00007fff90493fb9 start_wqthread + 13
    Thread 22:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff87a25746 __psynch_mutexwait + 10
    1   libsystem_pthread.dylib                 0x00007fff90492779 _pthread_mutex_lock + 372
    2   com.apple.Foundation                    0x00007fff8fa950ae -[NSRecursiveLock lock] + 22
    3   com.apple.dt.IDEKit                     0x000000010fa9a41e __73+[IDEContainerItemStructureEditingTarget _acceptDropAtIndex:withContext:]_block_invoke241 + 35
    4   com.apple.dt.DVTFoundation              0x000000010ed145d0 __DVTDispatchAsync_block_invoke + 16
    5   libdispatch.dylib                       0x00007fff8a0381d7 _dispatch_call_block_and_release + 12
    6   libdispatch.dylib                       0x00007fff8a0352ad _dispatch_client_callout + 8
    7   libdispatch.dylib                       0x00007fff8a03709e _dispatch_root_queue_drain + 326
    8   libdispatch.dylib                       0x00007fff8a038193 _dispatch_worker_thread2 + 40
    9   libsystem_pthread.dylib                 0x00007fff90490ef8 _pthread_wqthread + 314
    10  libsystem_pthread.dylib                 0x00007fff90493fb9 start_wqthread + 13
    Thread 23:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff87a25746 __psynch_mutexwait + 10
    1   libsystem_pthread.dylib                 0x00007fff90492779 _pthread_mutex_lock + 372
    2   com.apple.Foundation                    0x00007fff8fa950ae -[NSRecursiveLock lock] + 22
    3   com.apple.dt.IDEKit                     0x000000010fa9a41e __73+[IDEContainerItemStructureEditingTarget _acceptDropAtIndex:withContext:]_block_invoke241 + 35
    4   com.apple.dt.DVTFoundation              0x000000010ed145d0 __DVTDispatchAsync_block_invoke + 16
    5   libdispatch.dylib                       0x00007fff8a0381d7 _dispatch_call_block_and_release + 12
    6   libdispatch.dylib                       0x00007fff8a0352ad _dispatch_client_callout + 8
    7   libdispatch.dylib                       0x00007fff8a03709e _dispatch_root_queue_drain + 326
    8   libdispatch.dylib                       0x00007fff8a038193 _dispatch_worker_thread2 + 40
    9   libsystem_pthread.dylib                 0x00007fff90490ef8 _pthread_wqthread + 314
    10  libsystem_pthread.dylib                 0x00007fff90493fb9 start_wqthread + 13
    Thread 24:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff87a25746 __psynch_mutexwait + 10
    1   libsystem_pthread.dylib                 0x00007fff90492779 _pthread_mutex_lock + 372
    2   com.apple.Foundation                    0x00007fff8fa950ae -[NSRecursiveLock lock] + 22
    3   com.apple.dt.IDEKit                     0x000000010fa9a41e __73+[IDEContainerItemStructureEditingTarget _acceptDropAtIndex:withContext:]_block_invoke241 + 35
    4   com.apple.dt.DVTFoundation              0x000000010ed145d0 __DVTDispatchAsync_block_invoke + 16
    5   libdispatch.dylib                       0x00007fff8a0381d7 _dispatch_call_block_and_release + 12
    6   libdispatch.dylib                       0x00007fff8a0352ad _dispatch_client_callout + 8
    7   libdispatch.dylib                       0x00007fff8a03709e _dispatch_root_queue_drain + 326
    8   libdispatch.dylib                       0x00007fff8a038193 _dispatch_worker_thread2 + 40
    9   libsystem_pthread.dylib                 0x00007fff90490ef8 _pthread_wqthread + 314
    10  libsystem_pthread.dylib                 0x00007fff90493fb9 start_wqthread + 13
    Thread 25:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff87a25746 __psynch_mutexwait + 10
    1   libsystem_pthread.dylib                 0x00007fff90492779 _pthread_mutex_lock + 372
    2   com.apple.Foundation                    0x00007fff8fa950ae -[NSRecursiveLock lock] + 22
    3   com.apple.dt.IDEKit                     0x000000010fa9a41e __73+[IDEContainerItemStructureEditingTarget _acceptDropAtIndex:withContext:]_block_invoke241 + 35
    4   com.apple.dt.DVTFoundation              0x000000010ed145d0 __DVTDispatchAsync_block_invoke + 16
    5   libdispatch.dylib                       0x00007fff8a0381d7 _dispatch_call_block_and_release + 12
    6   libdispatch.dylib                       0x00007fff8a0352ad _dispatch_client_callout + 8
    7   libdispatch.dylib                       0x00007fff8a03709e _dispatch_root_queue_drain + 326
    8   libdispatch.dylib                       0x00007fff8a038193 _dispatch_worker_thread2 + 40
    9   libsystem_pthread.dylib                 0x00007fff90490ef8 _pthread_wqthread + 314
    10  libsystem_pthread.dylib                 0x00007fff90493fb9 start_wqthread + 13
    Thread 26:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff87a25746 __psynch_mutexwait + 10
    1   libsystem_pthread.dylib                 0x00007fff90492779 _pthread_mutex_lock + 372
    2   com.apple.Foundation                    0x00007fff8fa950ae -[NSRecursiveLock lock] + 22
    3   com.apple.dt.IDEKit                     0x000000010fa9a41e __73+[IDEContainerItemStructureEditingTarget _acceptDropAtIndex:withContext:]_block_invoke241 + 35
    4   com.apple.dt.DVTFoundation              0x000000010ed145d0 __DVTDispatchAsync_block_invoke + 16
    5   libdispatch.dylib                       0x00007fff8a0381d7 _dispatch_call_block_and_release + 12
    6   libdispatch.dylib                       0x00007fff8a0352ad _dispatch_client_callout + 8
    7   libdispatch.dylib                       0x00007fff8a03709e _dispatch_root_queue_drain + 326
    8   libdispatch.dylib                       0x00007fff8a038193 _dispatch_worker_thread2 + 40
    9   libsystem_pthread.dylib                 0x00007fff90490ef8 _pthread_wqthread + 314
    10  libsystem_pthread.dylib                 0x00007fff90493fb9 start_wqthread + 13
    Thread 27:
    0   libsystem_kernel.dylib                  0x00007fff87a25e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff90490f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff90493fb9 start_wqthread + 13
    Thread 28:
    0   libsystem_kernel.dylib                  0x00007fff87a25e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff90490f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff90493fb9 start_wqthread + 13
    Thread 29:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff87a269f2 read + 10
    1   com.apple.Foundation                    0x00007fff8faa518a _NSReadFromFileDescriptorWithProgress + 255
    2   com.apple.Foundation                    0x00007fff8fb02c8a -[NSConcreteFileHandle readDataOfLength:] + 487
    3   com.apple.dt.DVTFoundation              0x000000010ed3092e __72-[DVTTask runReturningStandardOutput:standardError:standardInput:error:]_block_invoke_3 + 44
    4   com.apple.dt.DVTFoundation              0x000000010ecf0f78 DVTInvokeWithFailureHintObject + 59
    5   com.apple.dt.DVTFoundation              0x000000010ed308f9 __72-[DVTTask runReturningStandardOutput:standardError:standardInput:error:]_block_invoke_2 + 106
    6   com.apple.dt.DVTFoundation              0x000000010ed145d0 __DVTDispatchAsync_block_invoke + 16
    7   libdispatch.dylib                       0x00007fff8a0381d7 _dispatch_call_block_and_release + 12
    8   libdispatch.dylib                       0x00007fff8a0352ad _dispatch_client_callout + 8
    9   libdispatch.dylib                       0x00007fff8a03709e _dispatch_root_queue_drain + 326
    10  libdispatch.dylib                       0x00007fff8a038193 _dispatch_worker_thread2 + 40
    11  libsystem_pthread.dylib                 0x00007fff90490ef8 _pthread_wqthread + 314
    12  libsystem_pthread.dylib                 0x00007fff90493fb9 start_wqthread + 13
    Thread 30:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff87a269f2 read + 10
    1   com.apple.Foundation                    0x00007fff8faa518a _NSReadFromFileDescriptorWithProgress + 255
    2   com.apple.Foundation                    0x00007fff8fb02c8a -[NSConcreteFileHandle readDataOfLength:] + 487
    3   com.apple.dt.DVTFoundation              0x000000010ed30ae8 __72-[DVTTask runReturningStandardOutput:standardError:standardInput:error:]_block_invoke_218 3 + 44
    4   com.apple.dt.DVTFoundation              0x000000010ecf0f78 DVTInvokeWithFailureHintObject + 59
    5   com.apple.dt.DVTFoundation              0x000000010ed30ab3 __72-[DVTTask runReturningStandardOutput:standardError:standardInput:error:]_block_invoke182 + 106
    6   com.apple.dt.DVTFoundation              0x000000010ed145d0 __DVTDispatchAsync_block_invoke + 16
    7   libdispatch.dylib                       0x00007fff8a0381d7 _dispatch_call_block_and_release + 12
    8   libdispatch.dylib                       0x00007fff8a0352ad _dispatch_client_callout + 8
    9   libdispatch.dylib                       0x00007fff8a03709e _dispatch_root_queue_drain + 326
    10  libdispatch.dylib                       0x00007fff8a038193 _dispatch_worker_thread2 + 40
    11  libsystem_pthread.dylib                 0x00007fff90490ef8 _pthread_wqthread + 314
    12  libsystem_pthread.dylib                 0x00007fff90493fb9 start_wqthread + 13
    Thread 31:
    0   libsystem_kernel.dylib                  0x00007fff87a25e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff90490f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff90493fb9 start_wqthread + 13
    Thread 32:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff87a269f2 read + 10
    1   com.apple.Foundation                    0x00007fff8faa518a _NSReadFromFileDescriptorWithProgress + 255
    2   com.apple.Foundation                    0x00007fff8fb02c8a -[NSConcreteFileHandle readDataOfLength:] + 487
    3   com.apple.dt.DVTFoundation              0x000000010ed30ae8 __72-[DVTTask runReturningStandardOutput:standardError:standardInput:error:]_block_invoke_218 3 + 44
    4   com.apple.dt.DVTFoundation              0x000000010ecf0f78 DVTInvokeWithFailureHintObject + 59
    5   com.apple.dt.DVTFoundation              0x000000010ed30ab3 __72-[DVTTask runReturningStandardOutput:standardError:standardInput:error:]_block_invoke182 + 106
    6   com.apple.dt.DVTFoundation              0x000000010ed145d0 __DVTDispatchAsync_block_invoke + 16
    7   libdispatch.dylib                       0x00007fff8a0381d7 _dispatch_call_block_and_release + 12
    8   libdispatch.dylib                       0x00007fff8a0352ad _dispatch_client_callout + 8
    9   libdispatch.dylib                       0x00007fff8a03709e _dispatch_root_queue_drain + 326
    10  libdispatch.dylib                       0x00007fff8a038193 _dispatch_worker_thread2 + 40
    11  libsystem_pthread.dylib                 0x00007fff90490ef8 _pthread_wqthread + 314
    12  libsystem_pthread.dylib                 0x00007fff90493fb9 start_wqthread + 13
    Thread 33:
    0   libsystem_kernel.dylib                  0x00007fff87a25e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff90490f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff90493fb9 start_wqthread + 13
    Thread 34:
    0   libsystem_kernel.dylib                  0x00007fff87a25e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff90490f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff90493fb9 start_wqthread + 13
    Thread 35:
    0   libsystem_kernel.dylib                  0x00007fff87a25e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff90490f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff90493fb9 start_wqthread + 13
    Thread 36:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff87a269f2 read + 10
    1   com.apple.Foundation                    0x00007fff8faa518a _NSReadFromFileDescriptorWithProgress + 255
    2   com.apple.Foundation                    0x00007fff8fb02c8a -[NSConcreteFileHandle readDataOfLength:] + 487
    3   com.apple.dt.DVTFoundation              0x000000010ed3092e __72-[DVTTask runReturningStandardOutput:standardError:standardInput:error:]_block_invoke_3 + 44
    4   com.apple.dt.DVTFoundation              0x000000010ecf0f78 DVTInvokeWithFailureHintObject + 59
    5   com.apple.dt.DVTFoundation              0x000000010ed308f9 __72-[DVTTask runReturningStandardOutput:standardError:standardInput:error:]_block_invoke_2 + 106
    6   com.apple.dt.DVTFoundation              0x000000010ed145d0 __DVTDispatchAsync_block_invoke + 16
    7   libdispatch.dylib                       0x00007fff8a0381d7 _dispatch_call_block_and_release + 12
    8   libdispatch.dylib                       0x00007fff8a0352ad _dispatch_client_callout + 8
    9   libdispatch.dylib                       0x00007fff8a03709e _dispatch_root_queue_drain + 326
    10  libdispatch.dylib                       0x00007fff8a038193 _dispatch_worker_thread2 + 40
    11  libsystem_pthread.dylib                 0x00007fff90490ef8 _pthread_wqthread + 314
    12  libsystem_pthread.dylib                 0x00007fff90493fb9 start_wqthread + 13
    Thread 37:
    0   libsystem_kernel.dylib                  0x00007fff87a25e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff90490f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff90493fb9 start_wqthread + 13
    Thread 38:
    0   libsystem_kernel.dylib                  0x00007fff87a25e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff90490f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff90493fb9 start_wqthread + 13
    Thread 39:: Dispatch queue: com.apple.root.low-priority
    0   libsystem_kernel.dylib                  0x00007fff87a21a56 semaphore_wait_trap + 10
    1   libdispatch.dylib                       0x00007fff8a039a15 _dispatch_semaphore_wait_slow + 206
    2   com.apple.dt.DVTFoundation              0x000000010ed3074c -[DVTTask runReturningStandardOutput:standardError:standardInput:error:] + 1397
    3   com.apple.dt.DVTFoundation              0x000000010ecb08f1 -[DVTTask runReturningStandardOutput:standardError:error:] + 26
    4   com.apple.dt.IDE.IDEInterfaceBuilderKit          0x00000001129ecae8 +[IBToolCommandManager ibtoolOutputFromArguments:launchError:] + 280
    5   com.apple.dt.IDE.IDEInterfaceBuilderKit          0x0000000112ae99b6 +[IBToolCommandManager nibContentsOfFileWithArguments:error:] + 80
    6   com.apple.dt.IDE.IDEInterfaceBuilderKit          0x0000000112ae8bf7 -[IBIndexDataSource generateDataForJob:] + 380
    7   com.apple.dt.IDEFoundation              0x000000010f4b9e61 -[IDEIndexDataSource processJob:] + 104
    8   com.apple.dt.IDEFoundation              0x000000010f4b9b02 +[IDEIndexingEngine runFileJob:] + 359
    9   com.apple.dt.IDEFoundation              0x000000010f4b954f -[IDEIndexingJob run] + 99
    10  com.apple.dt.IDEFoundation              0x000000010f5e67fc __40-[IDEIndexingJobScheduler _scheduleJobs]_block_invoke + 31
    11  com.apple.dt.DVTFoundation              0x000000010ed145d0 __DVTDispatchAsync_block_invoke + 16
    12  libdispatch.dylib                       0x00007fff8a0381d7 _dispatch_call_block_and_release + 12
    13  libdispatch.dylib                       0x00007fff8a0352ad _dispatch_client_callout + 8
    14  libdispatch.dylib                       0x00007fff8a03709e _dispatch_root_queue_drain + 326
    15  libdispatch.dylib                       0x00007fff8a038193 _dispatch_worker_thread2 + 40
    16  libsystem_pthread.dylib                 0x00007fff90490ef8 _pthread_wqthread + 314
    17  libsystem_pthread.dylib                 0x00007fff90493fb9 start_wqthread + 13
    Thread 40:: Dispatch queue: com.apple.root.low-priority
    0   libsystem_kernel.dylib                  0x00007fff87a21a56 semaphore_wait_trap + 10
    1   libdispatch.dylib                       0x00007fff8a039a15 _dispatch_semaphore_wait_slow + 206
    2   com.apple.dt.DVTFoundation              0x000000010ed3074c -[DVTTask runReturningStandardOutput:standardError:standardInput:error:] + 1397
    3   com.apple.dt.DVTFoundation              0x000000010ecb08f1 -[DVTTask runReturningStandardOutput:standardError:error:] + 26
    4   com.apple.dt.IDE.IDEInterfaceBuilderKit          0x00000001129ecae8 +[IBToolCommandManager ibtoolOutputFromArguments:launchError:] + 280
    5   com.apple.dt.IDE.IDEInterfaceBuilderKit          0x0000000112ae99b6 +[IBToolCommandManager nibContentsOfFileWithArguments:error:] + 80
    6   com.apple.dt.IDE.IDEInterfaceBuilderKit          0x0000000112ae8bf7 -[IBIndexDataSource generateDataForJob:] + 380
    7   com.apple.dt.IDEFoundation              0x000000010f4b9e61 -[IDEIndexDataSource processJob:] + 104
    8   com.apple.dt.IDEFoundation              0x000000010f4b9b02 +[IDEIndexingEngine runFileJob:] + 359
    9   com.apple.dt.IDEFoundation              0x000000010f4b954f -[IDEIndexingJob run] + 99
    10  com.apple.dt.IDEFoundation              0x000000010f5e67fc __40-[IDEIndexingJobScheduler _scheduleJobs]_block_invoke + 31
    11  com.apple.dt.DVTFoundation              0x000000010ed145d0 __DVTDispatchAsync_block_invoke + 16
    12  libdispatch.dylib                       0x00007fff8a0381d7 _dispatch_call_block_and_release + 12
    13  libdispatch.dylib                       0x00007fff8a0352ad _dispatch_client_callout + 8
    14  libdispatch.dylib                       0x00007fff8a03709e _dispatch_root_queue_drain + 326
    15  libdispatch.dylib                       0x00007fff8a038193 _dispatch_worker_thread2 + 40
    16  libsystem_pthread.dylib                 0x00007fff90490ef8 _pthread_wqthread + 314
    17  libsystem_pthread.dylib                 0x00007fff90493fb9 start_wqthread + 13
    Thread 41:: Dispatch queue: com.apple.root.low-priority
    0   libsystem_kernel.dylib                  0x00007fff87a25a3a __semwait_signal + 10
    1   libsystem_pthread.dylib                 0x00007fff904937f3 pthread_join + 433
    2   libclang.dylib                          0x00000001102015de 0x1100cb000 + 1271262
    3   libclang.dylib                          0x00000001100e4cdb clang_indexSourceFile + 235
    4   com.apple.dt.IDEFoundation              0x000000010f4bb472 -[IDEIndexClangTranslationUnit indexUsingDataSource:] + 485
    5   com.apple.dt.IDEFoundation              0x000000010f4ba5c8 -[IDEIndexClangDataSource generateDataForJob:] + 1633
    6   com.apple.dt.IDEFoundation              0x000000010f4b9e61 -[IDEIndexDataSource processJob:] + 104
    7   com.apple.dt.IDEFoundation              0x000000010f4b9b02 +[IDEIndexingEngine runFileJob:] + 359
    8   com.apple.dt.IDEFoundation              0x000000010f4b954f -[IDEIndexingJob run] + 99
    9   com.apple.dt.IDEFoundation              0x000000010f5e67fc __40-[IDEIndexingJobScheduler _scheduleJobs]_block_invoke + 31
    10  com.apple.dt.DVTFoundation              0x000000010ed145d0 __DVTDispatchAsync_block_invoke + 16
    11  libdispatch.dylib                       0x00007fff8a0381d7 _dispatch_call_block_and_release + 12
    12  libdispatch.dylib                       0x00007fff8a0352ad _dispatch_client_callout + 8
    13  libdispatch.dylib                       0x00007fff8a03709e _dispatch_root_queue_drain + 326
    14  libdispatch.dylib                       0x00007fff8a038193 _dispatch_worker_thread2 + 40
    15  libsystem_pthread.dylib                 0x00007fff90490ef8 _pthread_wqthread + 314
    16  libsystem_pthread.dylib                 0x00007fff90493fb9 start_wqthread + 13
    Thread 42:
    0   libclang.dylib                          0x00000001101b1632 0x1100cb000 + 943666
    1   libclang.dylib                          0x000000011024a2eb 0x1100cb000 + 1569515
    2   libclang.dylib                          0x000000011024c15d 0x1100cb000 + 1577309
    3   libclang.dylib                          0x0000000110253fad 0x1100cb000 + 1609645
    4   libclang.dylib                          0x000000011025415b 0x1100cb000 + 1610075
    5   libclang.dylib                          0x00000001105be725 0x1100cb000 + 5191461
    6   libclang.dylib                          0x00000001107ed867 0x1100cb000 + 7481447
    7   libclang.dylib                          0x00000001107ecdec 0x1100cb000 + 7478764
    8   libclang.dylib                          0x00000001107fabae 0x1100cb000 + 7535534
    9   libclang.dylib                          0x00000001107f761d 0x1100cb000 + 7521821
    10  libclang.dylib                          0x00000001107f6683 0x1100cb000 + 7517827
    11  libclang.dylib                          0x00000001107d4d1c 0x1100cb000 + 7380252
    12  libclang.dylib                          0x00000001107d4162 0x1100cb000 + 7377250
    13  libclang.dylib                          0x00000001107d6dd1 0x1100cb000 + 7388625
    14  libclang.dylib                          0x00000001107d4934 0x1100cb000 + 7379252
    15  libclang.dylib                          0x00000001107dca15 0x1100cb000 + 7412245
    16  libclang.dylib                          0x00000001107d3d10 0x1100cb000 + 7376144
    17  libclang.dylib                          0x00000001107d5798 0x1100cb000 + 7382936
    18  libclang.dylib                          0x00000001107d48a4 0x1100cb000 + 7379108
    19  libclang.dylib                          0x00000001107dca15 0x1100cb000 + 7412245
    20  libclang.dylib                          0x00000001107d3d10 0x1100cb000 + 7376144
    21  libclang.dylib                          0x00000001107d87be 0x1100cb000 + 7395262
    22  libclang.dylib                          0x00000001107d3fd0 0x1100cb000 + 7376848
    23  libclang.dylib                          0x00000001107dca15 0x1100cb000 + 7412245
    24  libclang.dylib                          0x00000001107ddc6f 0x1100cb000 + 7416943
    25  libclang.dylib                          0x00000001107e8bf3 0x1100cb000 + 7461875
    26  libclang.dylib                          0x00000001107e3830 0x1100cb000 + 7440432
    27  libclang.dylib                          0x00000001107e3532 0x1100cb000 + 7439666
    28  libclang.dylib                          0x000000011073f81e 0x1100cb000 + 6768670
    29  libclang.dylib                          0x00000001107e2cfb 0x1100cb000 + 7437563
    30  libclang.dylib                          0x000000011073f835 0x1100cb000 + 6768693
    31  libclang.dylib                          0x000000011073ca01 0x1100cb000 + 6756865
    32  libclang.dylib                          0x00000001104cbcf6 0x1100cb000 + 4197622
    33  libclang.dylib        

    There have been a few reports of the same behaviour with other customers - specifically with the handling of the encoding of "+" characters to " ". It relates to how cookie encoding/decoding is performed (as you have already observed).
    The solution for these customers was the following:
    => AM server/client side:
    Ensure that com.iplanet.am.cookie.encode=false in AMConfig.properties and AMAgent.properties on all systems.
    => AM client (UWC) side:
    - Set <property name="encodeCookies" value="false"/> in /var/opt/SUNWuwc/WEB-INF/sun-web.xml. This will prevent UWC from trying to urldecode the cookie it receives and therefore stops it turning the + into a space e.g.
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE sun-web-app PUBLIC '-//Sun Microsystems, Inc.//DTD Sun ONE Application Server 7.0 Servlet 2.3//EN' 'file:///net/wajra.india.sun.com/export/share/dtd/sun-web-app_2_3-1.dtd'>
    <sun-web-app>
       <property name="encodeCookies" value="false"/>
       <session-config>
          <session-manager/>
       </session-config>
       <jsp-config/>
    <property name="allowLinking" value="true" />
    </sun-web-app>Regards,
    Shane.

  • Allowing clear-text logins for multiple users

    I'm not sure if this is the correct section to place this question in, so Mods, please move if needed.
    As many know, Apple changed the AFP Client defaults in 10.5.x so that clear-text logins to servers are disallowed by default. You can edit the afpcleartextallow option in ~/Library/Preferences/com.apple.AppleShareClient.plist to enable it on a per user basis.
    What I wish to know is wether it's possible to allow clear-text logins on a global basis. I've looked at /Library/Preferences/com.apple.AppleShareClient.plist and it does not contain the afpcleartextallow option, and adding the option and setting it to "yes" (without editing the file in the user's preference folder) does not allow clear-text logins.
    Is there some global preference file that this option could be added to that would preclude me from having to edit the preference file for every user? Part of the reason it's a problem is if you have multiple user accounts on multiple machines, or network based home folders stored on an AFP server that only supports clear text, for example, a Netware 6.5 server running NFA for Mac.
    One problem I've seen is that until the user is actually at the desktop (well I think it's specifically when the Finder loads and reads the per-user preferences) the OS will prevent clear-text logins, regardless of the setting in the pref file, thus you cannot automatically mount volumes at login if the server only supports clear-text.
    Any suggestions or advice greatly welcomed.

    If you are familiar with the exchange man shell, use the new-mailboxsearch powershell cmdlet in your code.  You can pass it a list of -SourceMailboxes(use get-content to pass your .txt to a variable, you'll want to place each name on a new line) to
    search on/set the in place hold.. Here is the technet material on new-mailboxsearch. 
    http://technet.microsoft.com/en-us/library/dd298064(v=exchg.150).aspx

  • Trace files generated for every session in 11g

    Hi
    I have two databases - both 11.1.0.7, both on RHEL5
    Database A runs on Server A
    Database B runs on Server B
    Both installation of 11g and each database are new installations.
    On Database A a trace file is being created for every session in ADR_HOME.../trace.
    On Database B - this is not happening
    The problem I have is Database A. As every session connection creates a trace file (or 2 - being *.trc and *trm), at the end of the day we have 1000's of unnecessry trace files.  
    A trace file is created for every user - SYS, SYSTEM, application users, etc... It's being created immediately - even if no SQL statements are run in the session.
    I've compared the init.ora parameters running in each database - and can find no differences. btw - SQL_TRACE is set to FALSE.
    Any ideas why a trace file is being generated for every session on Database A? And how to switch this off?
    TIA
    Regards
    Paul

    What type of content is in generated trace files? Is it SQL trace or something different?
    Have you any AFTER LOGON trigger? It can be checked with:
    col text format a100
    select name, text
      from dba_source
    where name in (select trigger_name from dba_triggers where triggering_event like 'LOGON%')
    order by name, line

  • Web browser for running locally saved html file with Marquee Text

    I have a html file contain Marquee text.
    I want to display that html file in oracle forms(10g).
    I already use simple html browser but it does not support marquee text.
    I already tried to convert the html file into Gif file but Marquee text not appear in gif file.
    Is there any browser which support the locally saved html file with marquee text and also it can be embedded in oracle form.
    Or is there any way for display that html file within the oracle forms.
    Remember I don't want to display that file in separate window.I want to display that html file within the form.
    Regards

    Actually that is what I was doing last night and got a bad flash and bricked my router..so its on its way back to Linksys...

  • How to identify which trace file is your backup controlfile trace in udump

    I have a 10.2.0.3 database on unix.
    I want to setup a job to run a script every night to backup the controlfile as text format.
    such as "alter database backup controlfile to trace".
    How my script can identify which trace file is the one just created for backup controlfile and copy the file to a backup disk?
    Thanks a lot!

    I thought it's
    alter database backup controlfile to trace as 'absolute path of any file where you want the control file in clear text format ';
    for ex. in Windows..
    alter database backup controlfile to trace as *'c:\temp\create_ORCL_control.sql'*;
    This way you will know where your job is going to backup controlfile to trace

  • Explain plan not displayed in sql trace file

    Hello,
    I don't understand why in sql trace file, after tkprof transformation, for several queries the explain plan is displayed and for several queries, no explain plan is displayed.
    How can I have the explain plan for all queries?
    Thanks for your help.

    Was this a trace started on an already running task? Was the trace stopped before the task completed? Did the trace file reach its set size limit before the task compled?
    In all three cases above you would have cursors that were not closed and stats information not written to the trace file resulting in incomplete data for some SQL.
    HTH -- Mark D Powell --

  • SQL Developer generates strange trace files on server

    Hello out there,
    I observed the generation of some strange trace files on the database server (Oracle 11.0.2.0.2 64bit on Win 2008R2).
    Whenever I start SQL Developer (3.2.20.09.87 64bit with JDK 1.7.0_17 64bit on Win7 64bit) for each connection I defined one trace file like this is generated:
    Trace file C:\ORACLE\diag\rdbms\ora\ora\trace\ora_ora_8500.trc
    Oracle Database 11g Release 11.2.0.2.0 - 64bit Production
    Windows NT Version V6.1 Service Pack 1
    CPU                 : 2 - type 8664, 2 Physical Cores
    Process Affinity    : 0x0x0000000000000000
    Memory (Avail/Total): Ph:990M/3959M, Ph+PgF:3743M/7918M
    Instance name: ora
    Redo thread mounted by this instance: 1
    Oracle process number: 23
    Windows thread id: 8500, image: ORACLE.EXE (SHAD)
    *** 2013-03-06 08:04:13.842
    *** CLIENT ID:() 2013-03-06 08:04:13.842
    *** SERVICE NAME:() 2013-03-06 08:04:13.842
    *** MODULE NAME:() 2013-03-06 08:04:13.842
    *** ACTION NAME:() 2013-03-06 08:04:13.842
    Breaking the connection before proto/dty negotiation, error raised 3113I enabled listener log to find out the origin of this and it contains lines like the following:
    06-MRZ-2013 08:04:13 * (CONNECT_DATA=(CID=(PROGRAM=null)(HOST=__jdbc__)(USER=null))(SERVICE_NAME=ora.vu)(CID=(PROGRAM=null)(HOST=__jdbc__)(USER=null))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.168.36.143)(PORT=49320)) * establish * ora.vu * 0
    06-MRZ-2013 08:04:13 * (CONNECT_DATA=(CID=(PROGRAM=null)(HOST=__jdbc__)(USER=null))(SERVICE_NAME=ora.vu)(CID=(PROGRAM=null)(HOST=__jdbc__)(USER=null))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.168.36.143)(PORT=49322)) * establish * ora.vu * 0
    06-MRZ-2013 08:04:13 * (CONNECT_DATA=(CID=(PROGRAM=null)(HOST=__jdbc__)(USER=null))(SERVICE_NAME=ora.vu)(CID=(PROGRAM=null)(HOST=__jdbc__)(USER=null))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.168.36.143)(PORT=49323)) * establish * ora.vu * 0
    06-MRZ-2013 08:04:13 * (CONNECT_DATA=(CID=(PROGRAM=null)(HOST=__jdbc__)(USER=null))(SERVICE_NAME=ora.vu)(CID=(PROGRAM=null)(HOST=__jdbc__)(USER=null))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.168.36.143)(PORT=49325)) * establish * ora.vu * 0
    06-MRZ-2013 08:04:14 * (CONNECT_DATA=(CID=(PROGRAM=null)(HOST=__jdbc__)(USER=null))(SERVICE_NAME=ora.vu)(CID=(PROGRAM=null)(HOST=__jdbc__)(USER=null))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.168.36.143)(PORT=49329)) * establish * ora.vu * 0
    06-MRZ-2013 08:04:14 * (CONNECT_DATA=(CID=(PROGRAM=null)(HOST=__jdbc__)(USER=null))(SERVICE_NAME=ora.vu)(CID=(PROGRAM=null)(HOST=__jdbc__)(USER=null))) * (ADDRESS=(PROTOCOL=tcp)(HOST=192.168.36.143)(PORT=49331)) * establish * ora.vu * 0The IP address is mine and I have excatly 6 connections defined for that server. On other servers, similar trace files are generated, one for each connection in my SQL Developer.
    This also occurred with JDK 1.6 so I don't think it's a Java issue.
    Besides the generation of the trace files there seem to be no other problems.
    Any ideas?

    Hi,
    I think Srini is probably correct. The noted bug applies to 11.2.0.1 and up, is fixed in 12c, and included in an 11.2.0.3 patch. However the version of SQL Developer also affects the creation of trace files on product startup (prior to any user initiated db connect attempts).
    For example,
    A. SQL Developer 3.1.07.42 - no such trace files created.
    B. SQL Developer 3.2.20.09.87 - such trace files created for 11.2.0.1 connections, but not 10g XE or 12c connections.
    So I presume an OCIServerAttach call got added in 3.2.2, not sure in support of which feature, but the bug will only impact users of 11.2.0.1, 11.2.0.2, and unpatched 11.2.0.3 DB releases.
    Regards,
    Gary
    SQL Developer Team

  • Clearing text items

    hi
    I have some text items, user enters data into these text item and presses ok button.
    After that the data is inserted into the database, but the text items are not cleared.
    What should I do to clear text items after an insert?

    Ricardinho wrote:
    one last question:
    During insert, I runinto an error message:
    INSERT INTO DRV(DRIVER_NO,DRIVER_NAME,VEHICLE_REGISTER,DRIVER_CERTIFICATE,DRIVER_ABN,ADDRESS,PHONE,*DRIVER_NUMBER*,*VEHICLE*,*VOUCHER*) VALUES (:1,:2,:3,:4,:5,:6,:7,:8,:9,:10)
    ORA-00904: Voucher invalid identifier
    Eventhough I delete DRIVER_NUMBER,VEHICLE,VOUCHER items from the database and from the datablock, I still got this error message?
    Any idea?ORA-00904 is the error code for invalid identifiers, your SQL clearly showing that the block still has the three columns as database items in your block.
    make sure you don't have in any block the items set as database items.
    Tony

  • Interpreting Trace File.

    Hi i am using 10.2.0.4.0 version of oracle.
    I am having trace file info as below, for one of the query. So how should i interpret the trace file? What is the issue in the query, and the scope of improvement in the query? please note that , i have removed the query and its plans from the trace file, i have only posted the wait sections.
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.14       0.13          0          0          1           0
    Execute      1      6.63     162.12      33540      72921        383           0
    Fetch    17272    178.89    1933.95     274835    3147603         20      259063
    total    17274    185.66    2096.21     308375    3220524        404      259063
    Misses in library cache during parse: 1
    Optimizer mode: CHOOSE
    Parsing user id: 36 
    Elapsed times include waiting on following events:
      Event waited on                             Times   Max. Wait  Total Waited
      ----------------------------------------   Waited  ----------  ------------
      control file sequential read                    4        0.00          0.00
      db file sequential read                    302812        0.62       1913.89
      latch: cache buffers chains                     3        0.04          0.04
      direct path write temp                        501        0.01          0.30
      SQL*Net message to client                   17272        0.00          0.04
      db file scattered read                        120        0.02          0.63
      direct path read temp                         608        0.14          1.71
      SQL*Net message from client                 17272       44.81      31865.74
      SQL*Net more data to client                    15        0.00          0.00
      latch: object queue header operation            1        0.00          0.00
      latch: library cache                            3        0.03          0.04
      latch: library cache pin                        1        0.00          0.00
      latch: cache buffer handles                     1        0.00          0.00
    OVERALL TOTALS FOR ALL NON-RECURSIVE STATEMENTS
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.14       0.13          0          0          1           0
    Execute      1      6.63     162.12      33540      72921        383           0
    Fetch    17272    178.89    1933.95     274835    3147603         20      259063
    total    17274    185.66    2096.21     308375    3220524        404      259063
    Misses in library cache during parse: 1
    Elapsed times include waiting on following events:
      Event waited on                             Times   Max. Wait  Total Waited
      ----------------------------------------   Waited  ----------  ------------
      SQL*Net message to client                   17275        0.00          0.04
      SQL*Net message from client                 17274       75.57      31941.39
      SQL*Net more data from client                   2        0.00          0.01
      db file sequential read                    302812        0.62       1913.89
      control file sequential read                    4        0.00          0.00
      latch: cache buffers chains                     3        0.04          0.04
      direct path write temp                        501        0.01          0.30
      db file scattered read                        120        0.02          0.63
      direct path read temp                         608        0.14          1.71
      SQL*Net more data to client                    15        0.00          0.00
      latch: object queue header operation            1        0.00          0.00
      latch: library cache                            3        0.03          0.04
      latch: library cache pin                        1        0.00          0.00
      latch: cache buffer handles                     1        0.00          0.00
    OVERALL TOTALS FOR ALL RECURSIVE STATEMENTS
    call     count       cpu    elapsed       disk      query    current        rows
    Parse       11      0.02       0.01          0          0          0           0
    Execute    348      0.20       0.17          0          0          1           0
    Fetch      367      0.06       0.37         59       1187          0        3806
    total      726      0.28       0.56         59       1187          1        3806
    Misses in library cache during parse: 11
    Misses in library cache during execute: 10
    Elapsed times include waiting on following events:
      Event waited on                             Times   Max. Wait  Total Waited
      ----------------------------------------   Waited  ----------  ------------
      db file sequential read                        59        0.01          0.32
        1  user  SQL statements in session.
      348  internal SQL statements in session.
      349  SQL statements in session.
    ********************************************************************************

    below is the estimate and actual results.
    | Id  | Operation                              | Name                        | Starts | E-Rows | A-Rows |   A-Time   | Buffers | Reads  | Writes |  OMem |  1Mem | Us
    ed-Mem | Used-Tmp|
    |*  1 |  COUNT STOPKEY                         |                             |  13475 |        |  13475 |00:01:32.33 |     134K|  11357 |      0 |       |       |
        |         |
    |   2 |   NESTED LOOPS                         |                             |  13475 |      2 |  13475 |00:01:31.66 |     134K|  11357 |      0 |       |       |
        |         |
    |   3 |    NESTED LOOPS                        |                             |  13475 |      1 |  13475 |00:01:29.22 |   94325 |  11357 |      0 |       |       |
        |         |
    |*  4 |     INDEX RANGE SCAN                   |                |  13475 |      1 |  13475 |00:00:26.63 |   40425 |   4014 |      0 |       |       |
        |         |
    |   5 |     TABLE ACCESS BY INDEX ROWID        | |  13475 |      1 |  13475 |00:01:02.46 |   53900 |   7343 |      0 |       |       |
        |         |
    |*  6 |      INDEX RANGE SCAN                  ||  13475 |      1 |  13475 |00:00:16.80 |   40425 |   2056 |      0 |       |       |
        |         |
    |*  7 |    TABLE ACCESS FULL                   | |  13475 |      2 |  13475 |00:00:02.26 |   40425 |      0 |      0 |       |       |
        |         |
    |   8 |  TABLE ACCESS BY INDEX ROWID           ||  94399 |      1 |  94399 |00:06:17.09 |     389K|  32207 |      0 |       |       |
        |         |
    |*  9 |   INDEX UNIQUE SCAN                    | |  94399 |      1 |  94399 |00:02:59.79 |     294K|  15488 |      0 |       |       |
        |         |
    |  10 |  TEMP TABLE TRANSFORMATION             |                             |      1 |        |    170K|00:35:11.08 |    1575K|    195K|   6158 |       |       |
        |         |
    |  11 |   LOAD AS SELECT                       |                             |      1 |        |      1 |00:04:49.06 |   53704 |  28653 |    264 |   525K|   525K|  5
    25K (0)|              |
    |  12 |    PARTITION RANGE ALL                 |                             |      1 |  55430 |  16097 |00:06:26.06 |   53433 |  28651 |      0 |       |       |
        |         |
    |  13 |     PARTITION HASH ALL                 |                             |     54 |  55430 |  16097 |00:09:20.69 |   53433 |  28651 |      0 |       |       |
        |         |
    |* 14 |      TABLE ACCESS BY LOCAL INDEX ROWID | INV                         |    432 |  55430 |  16097 |00:06:11.42 |   53433 |  28651 |      0 |       |       |
        |         |
    |* 15 |       INDEX SKIP SCAN                  | |    432 |    125K|  16097 |00:00:39.90 |    4642 |   4508 |      0 |       |       |
        |         |
    |  16 |   TABLE ACCESS BY INDEX ROWID          | |      1 |      2 |    170K|00:30:21.66 |    1522K|    166K|   5894 |       |       |
        |         |
    |  17 |    NESTED LOOPS                        |                             |      1 |     97 |    276K|34:55:49.92 |    1470K|    150K|   5894 |       |       |
        |         |
    |  18 |     NESTED LOOPS                       |                             |      1 |     55 |    105K|00:22:14.57 |    1128K|    134K|   5894 |       |       |
        |         |
    |  19 |      NESTED LOOPS OUTER                |                             |      1 |     52 |    105K|00:16:32.91 |     694K|    105K|   5894 |       |       |
        |         |
    |* 20 |       HASH JOIN                        |                             |      1 |     52 |    105K|00:16:19.68 |     402K|    102K|   5894 |  9641K|  2205K| 16
    27K (1)|        10240 |
    |  21 |        VIEW                            |                             |      1 |  65234 |    105K|00:16:16.46 |     402K|    101K|   4655 |       |       |
        |         |
    |  22 |         SORT UNIQUE                    |                             |      1 |  65234 |    105K|00:16:16.46 |     402K|    101K|   4655 |  8724K|  1161K| 61
    8K (48)|         9216 |
    |  23 |          UNION-ALL                     |                             |      1 |        |    105K|00:14:59.93 |     402K|  97342 |    252 |       |       |
        |         |
    |  24 |           NESTED LOOPS OUTER           |                             |      1 |  19975 |    105K|00:14:10.24 |     395K|  94655 |      0 |       |       |
        |         |
    |  25 |            NESTED LOOPS                |                             |      1 |  19975 |    105K|00:13:58.47 |     140K|  93616 |      0 |       |       |
        |         |
    |  26 |             VIEW                       |                             |      1 |  55430 |  16097 |00:00:00.43 |     270 |    531 |      0 |       |       |
        |         |
    |  27 |              TABLE ACCESS FULL         | |      1 |  55430 |  16097 |00:00:00.19 |     270 |    531 |      0 |       |       |
        |         |
    |* 28 |             TABLE ACCESS BY INDEX ROWID| |  16097 |      1 |    105K|00:13:59.70 |     140K|  93085 |      0 |       |       |
        |         |
    |* 29 |              INDEX RANGE SCAN          |     |  16097 |     10 |    145K|00:00:40.42 |   32685 |   8237 |      0 |       |       |
        |         |
    |  30 |            TABLE ACCESS BY INDEX ROWID | |    105K|      1 |  84716 |00:00:16.78 |     254K|   1039 |      0 |       |       |
        |         |
    |* 31 |             INDEX UNIQUE SCAN          | |    105K|      1 |  84716 |00:00:13.05 |     169K|    982 |      0 |       |       |
        |         |
    |  32 |           NESTED LOOPS                 |                             |      1 |  45259 |      0 |00:00:17.19 |    7336 |   2687 |    252 |       |       |
        |         |
    |* 33 |            HASH JOIN RIGHT OUTER       |                             |      1 |  45259 |      0 |00:00:17.19 |    7336 |   2687 |    252 |   884K|   884K|  3
    09K (0)|              |
    |  34 |             TABLE ACCESS FULL          | |      1 |   1673 |   1677 |00:00:00.01 |      24 |      8 |      0 |       |       |
        |         |
    |* 35 |             HASH JOIN                  |                             |      1 |  45259 |      0 |00:00:17.13 |    7310 |   2678 |    252 |  3318K|  1235K|  4
    47K (1)|         2048 |
    |* 36 |              TABLE ACCESS FULL         | |      1 |  45259 |  49043 |00:00:07.41 |    7043 |   2170 |      0 |       |       |
        |         |
    |  37 |              VIEW                      |                             |      1 |  55430 |  16097 |00:00:00.14 |     267 |    256 |      0 |       |       |
        |         |
    |  38 |               TABLE ACCESS FULL        ||      1 |  55430 |  16097 |00:00:00.12 |     267 |    256 |      0 |       |       |
        |         |
    |  39 |            TABLE ACCESS BY INDEX ROWID | |      0 |      1 |      0 |00:00:00.01 |       0 |      0 |      0 |       |       |
        |         |
    |* 40 |             INDEX UNIQUE SCAN          | |      0 |      1 |      0 |00:00:00.01 |       0 |      0 |      0 |       |       |
        |         |
    |  41 |        VIEW                            |                             |      1 |  55430 |  16097 |00:00:00.02 |     267 |      0 |      0 |       |       |
        |         |
    |  42 |         TABLE ACCESS FULL              | |      1 |  55430 |  16097 |00:00:00.01 |     267 |      0 |      0 |       |       |
        |         |
    |  43 |       TABLE ACCESS BY INDEX ROWID      | |    105K|      1 |  93385 |00:00:24.90 |     291K|   2104 |      0 |       |       |
        |         |
    |* 44 |        INDEX UNIQUE SCAN               | |    105K|      1 |  93385 |00:00:16.45 |     196K|   1405 |      0 |       |       |
        |         |
    |  45 |      TABLE ACCESS BY INDEX ROWID       | |    105K|      1 |    105K|00:05:49.82 |     434K|  29495 |      0 |       |       |
        |         |
    |* 46 |       INDEX UNIQUE SCAN                ||    105K|      1 |    105K|00:02:54.37 |     328K|  14644 |      0 |       |       |
        |         |
    |* 47 |     INDEX RANGE SCAN                   | |    105K|      2 |    170K|00:03:01.14 |     342K|  15690 |      0 |       |       |
        |         |
    Predicate Information (identified by operation id):
       1 - filter(1>=ROWNUM)
       4 - access("XS"."SITEPK"=:B1)
       6 - access("XS"."VENDORPK"="XB"."VENDORPK")
       7 - filter(("XB"."BUYERCOMPANYPK"="CC"."PARENTCOMPANYPK" OR "XB"."BUYERCOMPANYPK"="CC"."CHILDCOMPANYPK"))
       9 - access("INVOICEPK"=:B1 AND "LINENUM"=:B2)
      14 - filter(("IH"."INVOICEORIGIN"='APP' AND "IH"."PO_PK" IS NULL AND "IH"."ISPOSTED"='Y'))
      15 - access("IH"."PAYPK"=3914297352 AND "IH"."POSTDATE">=1338508800000 AND "IH"."POSTDATE"<1341014400000)
           filter(("IH"."POSTDATE">=1338508800000 AND "IH"."PAYPK"=3914297352 AND "IH"."POSTDATE"<1341014400000))
      20 - access("NEWVIEW"."PRIMARYKEY"="TAB"."INVOICEPK")
      28 - filter(TO_NUMBER("RAT"."AUDITTYPE")<2)
      29 - access("INNERTAB1"."INVOICEPK"="RAT"."INVOICEPK")
           filter("RAT"."INVOICEPK" IS NOT NULL)
      31 - access("RAT"."USERPK"="UR"."USERPK")
      33 - access("RA"."QUEUEPK"="Q"."QUEUEPK")
      35 - access("INNERTAB2"."INVOICEPK"="RA"."INVOICEPK")
      36 - filter(("RA"."INVOICEPK" IS NOT NULL AND "RA"."RECEIVERPK" IS NOT NULL))
      40 - access("RA"."RECEIVERPK"="UR"."USERPK")
      44 - access("TAB"."ENTEREDBY"="UR"."USERPK")
      46 - access("TAB"."INVOICEPK"="ISUM"."INVOICEPK")
      47 - access("IDD"."INVOICEPK"="TAB"."INVOICEPK")
    87 rows selected.
    Elapsed: 00:00:04.10
    SQL>Edited by: 930254 on Aug 7, 2012 9:33 AM

Maybe you are looking for

  • DBMS_AQADM error ora 00406

    Hi, Im running 9.2.0 on OS X and trying to set up a queue table. Any idea what I'm doing wrong? 9.2 docs say you can only use 8.0 or 8.1 as compatibility parameters. I've tried all options from 8.0-9.2 and tried deleting the compatible argument altog

  • Last posting run terminated (Restart in period 2010 001)

    HI, There is the challenge issue for Depreciation run in AFAB, While running the depreciation for the month of jan month system never allowing to post. After the upload of assets through BDC, this is the first time we are trying to run  the depreciat

  • I can't open settings on my MacBook Pro 2013

    I can't open settings.

  • Screen isn't being detected

    MacBook Pro 15"   Mac OS X (10.4.8)   When I start up my computer the screen comes up with a black on the sides and with the default apple background. I then have to go into system preferences and click on detect display for it to change back to the

  • Iplanet 4.16 and windows service pack 4

    Is anyone aware of any issues I might encounter by installing service pack 4 to the server? Thanks!