Case statement to find if 3rd character is lower case

Hi,
Im trying to write a query that checks if the value's 3rd character in not a capital print Y if it is print N.
Select Name, (Case 3rd charter of Name is lower case then 'Y' else then 'N'), age from persons table;
Results:
John Y 50
Mary Y 40
TED N 30
Any ideas?
Thanks,
Sean

WITH PERSONS AS (
                 SELECT 'John' name,50 age from dual union all
                 SELECT 'Mary' name,40 age from dual union all
                 SELECT 'TED' name,30 age from dual
SELECT  NAME,
        CASE SUBSTR(NAME,3,1) WHEN LOWER(SUBSTR(NAME,3,1)) THEN 'Y' ELSE 'N' END X,
        AGE
  FROM  PERSONS
NAME X        AGE
John Y         50
Mary Y         40
TED  N         30
SQL> SY.

Similar Messages

  • Find character in lower case

    Hi,
    I've this table TAB_ID:
    ID.....................NAME
    1......................AbCCCC
    2.....................ABBBBB
    3.....................ZxxxZZZZ
    4.....................aaaaaaaB
    5.....................CCCCCC
    8.....................DDDDDD
    0.....................AAAAAb
    I'd like to find any string NAME with at least one character in lower case.
    In my case I get:
    ID.....................NAME
    1......................AbCCCC
    3.....................ZxxxZZZZ
    4.....................aaaaaaaB
    0.....................AAAAAb
    How can I write my query to get this output?
    Thanks in advance!

    try this...
    SQL> with tab_id as
    2 (select 1 ID ,'AbCCCC' sname from dual union all
    3 select 2,'ABBBBB' from dual union all
    4 select 3,'ZxxxZZZZ' from dual union all
    5 select 4,'aaaaaaaB' from dual union all
    6 select 5,'CCCCCC' from dual union all
    7 select 6,'aaaaaaa' from dual union all
    8 select 8,'DDDDDD' from dual union all
    9 select 9,'AAAAAb' from dual)
    10 select * from tab_id
    11 where upper(sname) != sname;
    ID SNAME
    1 AbCCCC
    3 ZxxxZZZZ
    4 aaaaaaaB
    6 aaaaaaa
    9 AAAAAb

  • How to find every 3rd Friday?

    I have a column of consecutive dates that span multiple months.  A second column list the day name for the date.  How do I find every 3rd Friday of any month?  I'd like to have it display some text in a 3rd column next to the particular Friday.
    If the formula is generic enough, I'd like to find other types of days such as every 1st Friday, every 2nd Thursday, etc.

    I'm assuming that by "every 3rd Friday of any month" you mean "the third Friday of each month," and that your meaning for "every second Tuesday" and "every first Friday" is similar.
    The first occurrence of any particular weekday in a particular month will be on one of the first seven days in that month, the second occurrence in the second seven days, and the third occurrence in the third seven days.
    The day number within a month is returned by the DAY(date) function.
    First:      DAY(date)>0 AND DAY(date)<8
    Second: DAY(date)>7 AND DAY(date)<15
    Third:     DAY(date)>14 AND DAY(date)<22
    Fourth:   DAY(date)>21 AND DAY(date)<29
    A number corresponding to the day of the week is returned by the WEEKDAY(date) function. By default, the week starts on Sunday, which is assigned the WEEKDAY value 1.
    So for a date to be the third Friday of a month, three things must be TRUE:
    WEEKDAY(date) must be 6
    DAY(date) must be greater than 14
    DAY(date) must be less than 22.
    Expressed as a formula, placed in the same row as the date, and with the dates listed in column A,
    =IF(AND(WEEKDAY($A)=6,DAY($A)>14,DAY($A)<22),"Third Friday","")
    will place "Third Friday" beside the third Friday of each month, and a null string in the other rows.
    There should be enough information there to write the formulas for the other cases.
    Regards,
    Barry

  • Mail crashes every time I try to search while on TRUSH. As soon as I enter the 3rd character in crashes : Exception Type:  EXC_CRASH (SIGABRT) IOS 10.9.1

    Mail crashes every time I try to search while on TRUSH. As soon as I enter the 3rd character in crashes : Exception Type:  EXC_CRASH (SIGABRT) IOS 10.9.1

    Process:         Mail [32596]
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Identifier:      com.apple.mail
    Version:         7.1 (1827)
    Build Info:      Mail-1827000000000000~5
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [178]
    Responsible:     Mail [32596]
    User ID:         501
    Date/Time:       2014-01-02 20:11:17.383 -0800
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  11
    Anonymous UUID:  3B951437-E3FD-42AA-8878-20AF0D171B6E
    Sleep/Wake UUID: CAAFEE4F-1ECC-48CF-95E4-B4B5524633D7
    Crashed Thread:  20  Dispatch queue: com.apple.root.high-priority
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'MFSQLiteException', reason: 'checking for existence of object'
    abort() called
    terminating with uncaught exception of type NSException
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x00007fff83adf41c __exceptionPreprocess + 172
    1   libobjc.A.dylib                     0x00007fff8ef9ce75 objc_exception_throw + 43
    2   Mail                                0x00007fff8370044e mf_sqlite3_get_table_printf + 0
    3   Mail                                0x00007fff8362c91f databaseIsEmpty + 32
    4   Mail                                0x00007fff8362f34b +[MFLibrary executeBlock:isWriter:useTransaction:isPrivileged:] + 3670
    5   Mail                                0x00007fff83627fc8 spotlightNotificationCallback + 868
    6   CoreFoundation                      0x00007fff83aadfcc __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12
    7   CoreFoundation                      0x00007fff839a1c5d _CFXNotificationPost + 2893
    8   CoreFoundation                      0x00007fff839f175e CFNotificationCenterPostNotificationWithOptions + 110
    9   Metadata                            0x00007fff8548cbf6 ___pushNotification_block_invoke + 148
    10  libdispatch.dylib                   0x00007fff870471d7 _dispatch_call_block_and_release + 12
    11  libdispatch.dylib                   0x00007fff870442ad _dispatch_client_callout + 8
    12  libdispatch.dylib                   0x00007fff8704609e _dispatch_root_queue_drain + 326
    13  libdispatch.dylib                   0x00007fff87047193 _dispatch_worker_thread2 + 40
    14  libsystem_pthread.dylib             0x00007fff894e4ef8 _pthread_wqthread + 314
    15  libsystem_pthread.dylib             0x00007fff894e7fb9 start_wqthread + 13
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff8db08b16 syscall_thread_switch + 10
    1   libsystem_platform.dylib                0x00007fff8c18df30 _os_lock_handoff_lock_slow + 79
    2   libobjc.A.dylib                         0x00007fff8ef9896e _objc_rootRetain_slow + 25
    3   libobjc.A.dylib                         0x00007fff8efac36e -[NSObject retain] + 126
    4   com.apple.CoreText                      0x00007fff894fd437 TStorageRange::TStorageRange(_CTGlyphStorage*, CFRange) + 43
    5   com.apple.CoreText                      0x00007fff894fd37d TRun::TRun(_CTGlyphStorage*, CFRange, TAttributes const&) + 117
    6   com.apple.CoreText                      0x00007fff89515e01 TRunEncoder::Encode(_CTGlyphStorage*, CFRange, unsigned int, __CFDictionary const*) + 175
    7   com.apple.CoreText                      0x00007fff89515d48 CTRunCreateMutableRunsWithStorageAndOptions + 196
    8   com.apple.AppKit                        0x00007fff82581b6e -[NSATSGlyphStorage createCTTypesetter] + 700
    9   com.apple.AppKit                        0x00007fff8257d8d3 -[NSATSTypesetter _ctTypesetter] + 327
    10  com.apple.AppKit                        0x00007fff8257caf9 -[NSATSLineFragment layoutForStartingGlyphAtIndex:characterIndex:minPosition:maxPosition:lineFragme ntRect:] + 85
    11  com.apple.AppKit                        0x00007fff8257b64e -[NSATSTypesetter _layoutLineFragmentStartingWithGlyphAtIndex:characterIndex:atPoint:renderingCon text:] + 2777
    12  com.apple.AppKit                        0x00007fff825aec79 -[NSATSTypesetter layoutParagraphAtPoint:] + 149
    13  com.apple.AppKit                        0x00007fff82c27ce2 -[NSTypesetter _layoutGlyphsInLayoutManager:startingAtGlyphIndex:maxNumberOfLineFragments:maxC haracterIndex:nextGlyphIndex:nextCharacterIndex:] + 8552
    14  com.apple.AppKit                        0x00007fff825adc9d -[NSTypesetter layoutCharactersInRange:forLayoutManager:maximumNumberOfLineFragments:] + 202
    15  com.apple.AppKit                        0x00007fff825adb81 -[NSATSTypesetter layoutCharactersInRange:forLayoutManager:maximumNumberOfLineFragments:] + 1107
    16  com.apple.AppKit                        0x00007fff825ac219 -[NSLayoutManager(NSPrivate) _fillLayoutHoleForCharacterRange:desiredNumberOfLines:isSoft:] + 1306
    17  com.apple.AppKit                        0x00007fff825abac9 -[NSLayoutManager(NSPrivate) _fillLayoutHoleAtIndex:desiredNumberOfLines:] + 201
    18  com.apple.AppKit                        0x00007fff825aa868 _NSFastFillAllLayoutHolesUpToEndOfContainerForGlyphIndex + 907
    19  com.apple.AppKit                        0x00007fff825aa338 -[NSLayoutManager textContainerForGlyphAtIndex:effectiveRange:] + 137
    20  com.apple.AppKit                        0x00007fff825aa172 -[NSLayoutManager glyphRangeForTextContainer:] + 299
    21  com.apple.AppKit                        0x00007fff826505ad -[NSStringDrawingTextStorage drawTextContainer:withRect:graphicsContext:baselineMode:scrollable:padding:] + 312
    22  com.apple.AppKit                        0x00007fff8263e41b _NSStringDrawingCore + 3424
    23  com.apple.AppKit                        0x00007fff8263cc30 _NSDrawTextCell + 6400
    24  com.apple.AppKit                        0x00007fff826438bc -[NSTextFieldCell drawInteriorWithFrame:inView:] + 963
    25  com.apple.AppKit                        0x00007fff82642728 -[NSControl drawRect:] + 341
    26  com.apple.AppKit                        0x00007fff826378b0 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shoul dChangeFontReferenceColor:] + 1075
    27  com.apple.AppKit                        0x00007fff82637bb0 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shoul dChangeFontReferenceColor:] + 1843
    28  com.apple.AppKit                        0x00007fff82637bb0 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shoul dChangeFontReferenceColor:] + 1843
    29  com.apple.AppKit                        0x00007fff82637bb0 -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shoul dChangeFontReferenceColor:] + 1843
    30  com.apple.AppKit                        0x00007fff8263736d __46-[NSView(NSLayerKitGlue) drawLayer:inContext:]_block_invoke + 186
    31  com.apple.AppKit                        0x00007fff82637153 -[NSView(NSLayerKitGlue) _drawViewBackingLayer:inContext:drawingHandler:] + 2297
    32  com.apple.AppKit                        0x00007fff82636848 -[NSView(NSLayerKitGlue) drawLayer:inContext:] + 108
    33  com.apple.QuartzCore                    0x00007fff837ff852 CABackingStoreUpdate_ + 2220
    34  com.apple.QuartzCore                    0x00007fff837fefa0 ___ZN2CA5Layer8display_Ev_block_invoke + 59
    35  com.apple.QuartzCore                    0x00007fff837fef5c x_blame_allocations + 84
    36  com.apple.QuartzCore                    0x00007fff837fea6b CA::Layer::display_() + 1539
    37  com.apple.AppKit                        0x00007fff82636713 _NSBackingLayerDisplay + 235
    38  com.apple.AppKit                        0x00007fff8260daab -[_NSViewBackingLayer display] + 811
    39  com.apple.QuartzCore                    0x00007fff837fe1a2 CA::Layer::display_if_needed(CA::Transaction*) + 590
    40  com.apple.QuartzCore                    0x00007fff837fd8f1 CA::Layer::layout_and_display_if_needed(CA::Transaction*) + 35
    41  com.apple.QuartzCore                    0x00007fff837fd37c CA::Context::commit_transaction(CA::Transaction*) + 236
    42  com.apple.QuartzCore                    0x00007fff837fd016 CA::Transaction::commit() + 388
    43  com.apple.QuartzCore                    0x00007fff8380d7a1 CA::Transaction::observer_callback(__CFRunLoopObserver*, unsigned long, void*) + 71
    44  com.apple.CoreFoundation                0x00007fff83a100a7 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
    45  com.apple.CoreFoundation                0x00007fff83a10017 __CFRunLoopDoObservers + 391
    46  com.apple.CoreFoundation                0x00007fff83a01294 CFRunLoopRunSpecific + 340
    47  com.apple.HIToolbox                     0x00007fff8a2a9f0d RunCurrentEventLoopInMode + 226
    48  com.apple.HIToolbox                     0x00007fff8a2a9cb7 ReceiveNextEventCommon + 479
    49  com.apple.HIToolbox                     0x00007fff8a2a9abc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    50  com.apple.AppKit                        0x00007fff824d628e _DPSNextEvent + 1434
    51  com.apple.AppKit                        0x00007fff824d58db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    52  com.apple.AppKit                        0x00007fff824c99cc -[NSApplication run] + 553
    53  com.apple.AppKit                        0x00007fff824b4803 NSApplicationMain + 940
    54  libdyld.dylib                           0x00007fff8df605fd start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8db0d662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff8704643d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff87046152 _dispatch_mgr_thread + 52
    Thread 2:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff8db08a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8db07d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff83a02315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff83a01939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff83a01275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x00007fff8d2d9907 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation                    0x00007fff8d2d970b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib                 0x00007fff894e3899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff894e372a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff894e7fc9 thread_start + 13
    Thread 3:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff8db0c9aa __select + 10
    1   com.apple.CoreFoundation                0x00007fff83a4dd43 __CFSocketManager + 867
    2   libsystem_pthread.dylib                 0x00007fff894e3899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff894e372a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff894e7fc9 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff8db08a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8db07d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff83a02315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff83a01939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff83a01275 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit                        0x00007fff826761ce _NSEventThread + 144
    6   libsystem_pthread.dylib                 0x00007fff894e3899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff894e372a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff894e7fc9 thread_start + 13
    Thread 5:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib                  0x00007fff8db08a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8db07d18 mach_msg + 64
    2   com.apple.QuartzCore                    0x00007fff838113b7 CA::Render::Server::server_thread(void*) + 195
    3   com.apple.QuartzCore                    0x00007fff838112ed thread_fun + 25
    4   libsystem_pthread.dylib                 0x00007fff894e3899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff894e372a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff894e7fc9 thread_start + 13
    Thread 6:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x00007fff8db0c716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff894e5c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x00007fff87d37e15 JSC::BlockAllocator::blockFreeingThreadMain() + 261
    3   com.apple.JavaScriptCore                0x00007fff87d2d0af ***::wtfThreadEntryPoint(void*) + 15
    4   libsystem_pthread.dylib                 0x00007fff894e3899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff894e372a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff894e7fc9 thread_start + 13
    Thread 7:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff8db0c716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff894e5c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x00007fff87d38887 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x00007fff87d38718 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x00007fff87d2d0af ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x00007fff894e3899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff894e372a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff894e7fc9 thread_start + 13
    Thread 8:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x00007fff8db0c716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff894e5c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x00007fff87d37e15 JSC::BlockAllocator::blockFreeingThreadMain() + 261
    3   com.apple.JavaScriptCore                0x00007fff87d2d0af ***::wtfThreadEntryPoint(void*) + 15
    4   libsystem_pthread.dylib                 0x00007fff894e3899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff894e372a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff894e7fc9 thread_start + 13
    Thread 9:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff8db0c716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff894e5c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x00007fff87d38887 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x00007fff87d38718 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x00007fff87d2d0af ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x00007fff894e3899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff894e372a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff894e7fc9 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff8db0ce6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff894e4f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff894e7fb9 start_wqthread + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff8db0ce6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff894e4f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff894e7fb9 start_wqthread + 13
    Thread 12:: Dispatch queue: com.apple.root.high-priority
    0   libsystem_kernel.dylib                  0x00007fff8db0c746 __psynch_mutexwait + 10
    1   libsystem_pthread.dylib                 0x00007fff894e6779 _pthread_mutex_lock + 372
    2   com.apple.Mail.framework                0x00007fff8367e007 -[MFMailbox mutableCopyOfChildrenIncludingHiddenChildren:hidingGmail:] + 58
    3   com.apple.Mail.framework                0x00007fff8366d0c6 -[MFMailAccount allMailboxesEvenIfInactive:] + 165
    4   com.apple.Mail.framework                0x00007fff8361664d +[MFLibrary _getActiveAccountURLs:andActiveMailboxURLs:] + 656
    5   com.apple.Mail.framework                0x00007fff8362e752 +[MFLibrary executeBlock:isWriter:useTransaction:isPrivileged:] + 605
    6   com.apple.Mail.framework                0x00007fff83627fc8 spotlightNotificationCallback + 868
    7   com.apple.CoreFoundation                0x00007fff83aadfcc __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12
    8   com.apple.CoreFoundation                0x00007fff839a1c5d _CFXNotificationPost + 2893
    9   com.apple.CoreFoundation                0x00007fff839f175e CFNotificationCenterPostNotificationWithOptions + 110
    10  com.apple.Metadata                      0x00007fff8548cbf6 ___pushNotification_block_invoke + 148
    11  libdispatch.dylib                       0x00007fff870471d7 _dispatch_call_block_and_release + 12
    12  libdispatch.dylib                       0x00007fff870442ad _dispatch_client_callout + 8
    13  libdispatch.dylib                       0x00007fff8704609e _dispatch_root_queue_drain + 326
    14  libdispatch.dylib                       0x00007fff87047193 _dispatch_worker_thread2 + 40
    15  libsystem_pthread.dylib                 0x00007fff894e4ef8 _pthread_wqthread + 314
    16  libsystem_pthread.dylib                 0x00007fff894e7fb9 start_wqthread + 13
    Thread 13:: Dispatch queue: Query work queue
    0   libsystem_kernel.dylib                  0x00007fff8db0c716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff894e5c3b _pthread_cond_wait + 727
    2   com.apple.Metadata                      0x00007fff8548cb1f _pushNotification + 558
    3   com.apple.Metadata                      0x00007fff8548c73f processUpdatesLocked + 10255
    4   com.apple.Metadata                      0x00007fff854842ef tryProcessUpdates + 397
    5   com.apple.Metadata                      0x00007fff85489799 _MDQueryCallback + 186
    6   com.apple.Metadata                      0x00007fff854896b7 __doQueryResultsCallback_block_invoke + 72
    7   libdispatch.dylib                       0x00007fff870471d7 _dispatch_call_block_and_release + 12
    8   libdispatch.dylib                       0x00007fff870442ad _dispatch_client_callout + 8
    9   libdispatch.dylib                       0x00007fff8704668f _dispatch_queue_drain + 451
    10  libdispatch.dylib                       0x00007fff870479dd _dispatch_queue_invoke + 110
    11  libdispatch.dylib                       0x00007fff87045fa3 _dispatch_root_queue_drain + 75
    12  libdispatch.dylib                       0x00007fff87047193 _dispatch_worker_thread2 + 40
    13  libsystem_pthread.dylib                 0x00007fff894e4ef8 _pthread_wqthread + 314
    14  libsystem_pthread.dylib                 0x00007fff894e7fb9 start_wqthread + 13
    Thread 14:
    0   libsystem_kernel.dylib                  0x00007fff8db0ce6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff894e4f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff894e7fb9 start_wqthread + 13
    Thread 15:
    0   libsystem_kernel.dylib                  0x00007fff8db0ce6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff894e4f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff894e7fb9 start_wqthread + 13
    Thread 16:: -[MFSnippetManager _calculateSnippetForMessages]  Dispatch queue: NSOperationQueue Serial Queue
    0   libsystem_kernel.dylib                  0x00007fff8db0c72e __psynch_mutexdrop + 10
    1   libsystem_pthread.dylib                 0x00007fff894e6928 pthread_mutex_unlock + 113
    2   libobjc.A.dylib                         0x00007fff8ef968e2 objc_sync_exit + 43
    3   com.apple.Mail.framework                0x00007fff8367e1c9 -[MFMailbox mutableCopyOfChildrenIncludingHiddenChildren:hidingGmail:] + 508
    4   com.apple.Mail.framework                0x00007fff8366d0c6 -[MFMailAccount allMailboxesEvenIfInactive:] + 165
    5   com.apple.Mail.framework                0x00007fff8361664d +[MFLibrary _getActiveAccountURLs:andActiveMailboxURLs:] + 656
    6   com.apple.Mail.framework                0x00007fff8362e752 +[MFLibrary executeBlock:isWriter:useTransaction:isPrivileged:] + 605
    7   com.apple.Mail.framework                0x00007fff836027f7 +[MFLibrary setSnippetsForMessages:] + 83
    8   com.apple.Mail.framework                0x00007fff83646b3e -[MFLibraryStore saveSnippetsForMessages:] + 272
    9   com.apple.Mail.framework                0x00007fff836fc2fd __48-[MFSnippetManager _calculateSnippetForMessages]_block_invoke + 715
    10  com.apple.CoreFoundation                0x00007fff83a1ca1f __65-[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:]_block_invoke + 111
    11  com.apple.CoreFoundation                0x00007fff83a1c92e -[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:] + 222
    12  com.apple.Mail.framework                0x00007fff836fc012 -[MFSnippetManager _calculateSnippetForMessages] + 287
    13  com.apple.CoreFoundation                0x00007fff839cadec __invoking___ + 140
    14  com.apple.CoreFoundation                0x00007fff839cac54 -[NSInvocation invoke] + 308
    15  com.apple.MailCore                      0x00007fff8183c808 -[MCThrowingInvocationOperation main] + 40
    16  com.apple.MailCore                      0x00007fff817e0f08 -[_MCInvocationOperation main] + 332
    17  com.apple.Foundation                    0x00007fff8d27a591 -[__NSOperationInternal _start:] + 631
    18  com.apple.Foundation                    0x00007fff8d27a23b __NSOQSchedule_f + 64
    19  libdispatch.dylib                       0x00007fff870442ad _dispatch_client_callout + 8
    20  libdispatch.dylib                       0x00007fff8704668f _dispatch_queue_drain + 451
    21  libdispatch.dylib                       0x00007fff870479dd _dispatch_queue_invoke + 110
    22  libdispatch.dylib                       0x00007fff87045fa3 _dispatch_root_queue_drain + 75
    23  libdispatch.dylib                       0x00007fff87047193 _dispatch_worker_thread2 + 40
    24  libsystem_pthread.dylib                 0x00007fff894e4ef8 _pthread_wqthread + 314
    25  libsystem_pthread.dylib                 0x00007fff894e7fb9 start_wqthread + 13
    Thread 17:: Dispatch queue: com.apple.root.high-priority
    0   libsystem_kernel.dylib                  0x00007fff8db0c866 __pthread_kill + 10
    1   libsystem_pthread.dylib                 0x00007fff894e435c pthread_kill + 92
    2   libsystem_c.dylib                       0x00007fff834ddbba abort + 125
    3   libc++abi.dylib                         0x00007fff865a0141 abort_message + 257
    4   libc++abi.dylib                         0x00007fff865c5abc default_terminate_handler() + 264
    5   libobjc.A.dylib                         0x00007fff8ef9d30d _objc_terminate() + 103
    6   libc++abi.dylib                         0x00007fff865c33e1 std::__terminate(void (*)()) + 8
    7   libc++abi.dylib                         0x00007fff865c3456 std::terminate() + 54
    8   libobjc.A.dylib                         0x00007fff8ef9d0b0 objc_terminate + 9
    9   libdispatch.dylib                       0x00007fff870442c1 _dispatch_client_callout + 28
    10  libdispatch.dylib                       0x00007fff8704609e _dispatch_root_queue_drain + 326
    11  libdispatch.dylib                       0x00007fff87047193 _dispatch_worker_thread2 + 40
    12  libsystem_pthread.dylib                 0x00007fff894e4ef8 _pthread_wqthread + 314
    13  libsystem_pthread.dylib                 0x00007fff894e7fb9 start_wqthread + 13
    Thread 18:: Dispatch queue: com.apple.root.high-priority
    0   libsystem_kernel.dylib                  0x00007fff8db0ca3a __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff834fce60 nanosleep + 200
    2   com.apple.Foundation                    0x00007fff8d30360d +[NSThread sleepForTimeInterval:] + 156
    3   com.apple.Mail.framework                0x00007fff8362f31f +[MFLibrary executeBlock:isWriter:useTransaction:isPrivileged:] + 3626
    4   com.apple.Mail.framework                0x00007fff83627fc8 spotlightNotificationCallback + 868
    5   com.apple.CoreFoundation                0x00007fff83aadfcc __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12
    6   com.apple.CoreFoundation                0x00007fff839a1c5d _CFXNotificationPost + 2893
    7   com.apple.CoreFoundation                0x00007fff839f175e CFNotificationCenterPostNotificationWithOptions + 110
    8   com.apple.Metadata                      0x00007fff8548cbf6 ___pushNotification_block_invoke + 148
    9   libdispatch.dylib                       0x00007fff870471d7 _dispatch_call_block_and_release + 12
    10  libdispatch.dylib                       0x00007fff870442ad _dispatch_client_callout + 8
    11  libdispatch.dylib                       0x00007fff8704609e _dispatch_root_queue_drain + 326
    12  libdispatch.dylib                       0x00007fff87047193 _dispatch_worker_thread2 + 40
    13  libsystem_pthread.dylib                 0x00007fff894e4ef8 _pthread_wqthread + 314
    14  libsystem_pthread.dylib                 0x00007fff894e7fb9 start_wqthread + 13
    Thread 19:
    0   libsystem_kernel.dylib                  0x00007fff8db0ce6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff894e4f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff894e7fb9 start_wqthread + 13
    Thread 20 Crashed:: Dispatch queue: com.apple.root.high-priority
    0   libsystem_kernel.dylib                  0x00007fff8db0ca52 __semwait_signal_nocancel + 10
    1   libsystem_c.dylib                       0x00007fff83487a7c nanosleep$NOCANCEL + 189
    2   libsystem_c.dylib                       0x00007fff834b15fe usleep$NOCANCEL + 54
    3   libsystem_c.dylib                       0x00007fff834ddbc4 abort + 135
    4   libc++abi.dylib                         0x00007fff865a0141 abort_message + 257
    5   libc++abi.dylib                         0x00007fff865c5abc default_terminate_handler() + 264
    6   libobjc.A.dylib                         0x00007fff8ef9d30d _objc_terminate() + 103
    7   libc++abi.dylib                         0x00007fff865c33e1 std::__terminate(void (*)()) + 8
    8   libc++abi.dylib                         0x00007fff865c3456 std::terminate() + 54
    9   libobjc.A.dylib                         0x00007fff8ef9d0b0 objc_terminate + 9
    10  libdispatch.dylib                       0x00007fff870442c1 _dispatch_client_callout + 28
    11  libdispatch.dylib                       0x00007fff8704609e _dispatch_root_queue_drain + 326
    12  libdispatch.dylib                       0x00007fff87047193 _dispatch_worker_thread2 + 40
    13  libsystem_pthread.dylib                 0x00007fff894e4ef8 _pthread_wqthread + 314
    14  libsystem_pthread.dylib                 0x00007fff894e7fb9 start_wqthread + 13
    Thread 21:: -[MessageMiniMall _performFilterTask:seriesID:]  Dispatch queue: NSOperationQueue Serial Queue
    0   libsystem_kernel.dylib                  0x00007fff8db0c746 __psynch_mutexwait + 10
    1   libsystem_pthread.dylib                 0x00007fff894e6779 _pthread_mutex_lock + 372
    2   com.apple.Mail.framework                0x00007fff8367e007 -[MFMailbox mutableCopyOfChildrenIncludingHiddenChildren:hidingGmail:] + 58
    3   com.apple.Mail.framework                0x00007fff8366d0c6 -[MFMailAccount allMailboxesEvenIfInactive:] + 165
    4   com.apple.Mail.framework                0x00007fff8361664d +[MFLibrary _getActiveAccountURLs:andActiveMailboxURLs:] + 656
    5   com.apple.Mail.framework                0x00007fff8362e752 +[MFLibrary executeBlock:isWriter:useTransaction:isPrivileged:] + 605
    6   com.apple.Mail.framework                0x00007fff8361e490 +[MFLibrary snippetsForMessages:] + 151
    7   com.apple.Mail.framework                0x00007fff836fb7b1 __45-[MFSnippetManager fetchSnippetsForMessages:]_block_invoke + 94
    8   com.apple.CoreFoundation                0x00007fff83a1ca1f __65-[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:]_block_invoke + 111
    9   com.apple.CoreFoundation                0x00007fff83a1c92e -[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:] + 222
    10  com.apple.Mail.framework                0x00007fff836fb65a -[MFSnippetManager fetchSnippetsForMessages:] + 237
    11  com.apple.mail                          0x000000010483ca2d 0x1047f9000 + 277037
    12  com.apple.CoreFoundation                0x00007fff839cadec __invoking___ + 140
    13  com.apple.CoreFoundation                0x00007fff839cac54 -[NSInvocation invoke] + 308
    14  com.apple.mail                          0x000000010483c2d0 0x1047f9000 + 275152
    15  com.apple.CoreFoundation                0x00007fff839cadec __invoking___ + 140
    16  com.apple.CoreFoundation                0x00007fff839cac54 -[NSInvocation invoke] + 308
    17  com.apple.MailCore                      0x00007fff8183c808 -[MCThrowingInvocationOperation main] + 40
    18  com.apple.MailCore                      0x00007fff817e0f08 -[_MCInvocationOperation main] + 332
    19  com.apple.Foundation                    0x00007fff8d27a591 -[__NSOperationInternal _start:] + 631
    20  com.apple.Foundation                    0x00007fff8d27a23b __NSOQSchedule_f + 64
    21  libdispatch.dylib                       0x00007fff870442ad _dispatch_client_callout + 8
    22  libdispatch.dylib                       0x00007fff8704668f _dispatch_queue_drain + 451
    23  libdispatch.dylib                       0x00007fff870479dd _dispatch_queue_invoke + 110
    24  libdispatch.dylib                       0x00007fff87045fa3 _dispatch_root_queue_drain + 75
    25  libdispatch.dylib                       0x00007fff87047193 _dispatch_worker_thread2 + 40
    26  libsystem_pthread.dylib                 0x00007fff894e4ef8 _pthread_wqthread + 314
    27  libsystem_pthread.dylib                 0x00007fff894e7fb9 start_wqthread + 13
    Thread 22:
    0   libsystem_kernel.dylib                  0x00007fff8db0ce6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff894e4f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff894e7fb9 start_wqthread + 13
    Thread 23:: Dispatch queue: NSOperationQueue Serial Queue
    0   libsystem_kernel.dylib                  0x00007fff8db08a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8db07d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff83a02315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff83a01939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff83a01275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x00007fff8d2f500e -[NSConnection sendInvocation:internal:] + 1965
    6   com.apple.CoreFoundation                0x00007fff83a3d384 ___forwarding___ + 452
    7   com.apple.CoreFoundation                0x00007fff83a3d138 _CF_forwarding_prep_0 + 120
    8   com.apple.AppKit                        0x00007fff82b42c3c -[NSSpellChecker _checkSpellingAndGrammarInString:range:enclosingRange:offset:types:options:orth ography:inSpellDocumentWithTag:mutableResults:wordCount:] + 2071
    9   com.apple.AppKit                        0x00007fff826cc8a3 NSSpellCheckerCheckString + 8096
    10  com.apple.AppKit                        0x00007fff826ca894 -[NSTextCheckingOperation main] + 152
    11  com.apple.Foundation                    0x00007fff8d27a591 -[__NSOperationInternal _start:] + 631
    12  com.apple.Foundation                    0x00007fff8d27a23b __NSOQSchedule_f + 64
    13  libdispatch.dylib                       0x00007fff870442ad _dispatch_client_callout + 8
    14  libdispatch.dylib                       0x00007fff8704668f _dispatch_queue_drain + 451
    15  libdispatch.dylib                       0x00007fff870479dd _dispatch_queue_invoke + 110
    16  libdispatch.dylib                       0x00007fff87045fa3 _dispatch_root_queue_drain + 75
    17  libdispatch.dylib                       0x00007fff87047193 _dispatch_worker_thread2 + 40
    18  libsystem_pthread.dylib                 0x00007fff894e4ef8 _pthread_wqthread + 314
    19  libsystem_pthread.dylib                 0x00007fff894e7fb9 start_wqthread + 13
    Thread 20 crashed with X86 Thread State (64-bit):
      rax: 0x000000000000003c  rbx: 0x0000000000000000  rcx: 0x000000010cf54858  rdx: 0x0000000000000001
      rdi: 0x0000000000000b03  rsi: 0x0000000000000000  rbp: 0x000000010cf54890  rsp: 0x000000010cf54858
       r8: 0x0000000000000000   r9: 0x0000000000989680  r10: 0x0000000000000001  r11: 0x0000000000000246
      r12: 0x000000010cf54a10  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x000000010cf548a0
      rip: 0x00007fff8db0ca52  rfl: 0x0000000000000247  cr2: 0x00007fff865ae92e
    Logical CPU:     0
    Error Code:      0x02000148
    Trap Number:     133
    Binary Images:
           0x1047f9000 -        0x104ae8fff  com.apple.mail (7.1 - 1827) <B82D2EA4-7D7C-33E6-80FF-9D96E62880C2> /Applications/Mail.app/Contents/MacOS/Mail
           0x104ce1000 -        0x104ce8ff7  com.apple.SyncedDefaults (1.3 - 91.30) <FC5A4423-3D91-3A34-853A-C49971EEAE4E> /System/Library/PrivateFrameworks/SyncedDefaults.framework/SyncedDefaults
           0x104d28000 -        0x104d2bfff  libspindump.dylib (161) <588EDDE0-B20A-3649-92B7-C2226EB237E8> /usr/lib/libspindump.dylib
           0x104e17000 -        0x104e17ff7  libHebrewConverter.dylib (61) <4BA290B9-7A39-3B72-9B9C-1BCF81AB1511> /System/Library/CoreServices/Encodings/libHebrewConverter.dylib
           0x1065b9000 -        0x1065bbfff  apop.so (170) <79E840B4-6D30-3CBB-99D3-345D6C77D5DF> /usr/lib/sasl2/apop.so
           0x1065bf000 -        0x1065cffff  dhx.so (170) <A9EBA1D4-8ED8-37BB-BA1E-263091EAF96E> /usr/lib/sasl2/dhx.so
           0x1065db000 -        0x1065e3fff  digestmd5WebDAV.so (170) <9DBE65CE-9B5C-37A3-8112-40F39BE3B5F8> /usr/lib/sasl2/digestmd5WebDAV.so
           0x1065e8000 -        0x1065eafff  libanonymous.2.so (170) <D1297C21-A57B-311E-9006-C3FB8689849A> /usr/lib/sasl2/libanonymous.2.so
           0x1065ee000 -        0x1065f0fff  libcrammd5.2.so (170) <940A42FC-C634-354E-AD74-691CD90A1427> /usr/lib/sasl2/libcrammd5.2.so
           0x1065f5000 -        0x1065fdff7  libdigestmd5.2.so (170) <122C0383-F9B2-34D1-89AF-D317BC4D5164> /usr/lib/sasl2/libdigestmd5.2.so
           0x106602000 -        0x106606fff  libgssapiv2.2.so (170) <AA58D85E-916C-3B0B-959A-DCC58497D0F2> /usr/lib/sasl2/libgssapiv2.2.so
           0x10660b000 -        0x10660dfff  login.so (170) <7D801D4E-A1A4-32FC-BF2E-9F25DB902523> /usr/lib/sasl2/login.so
           0x106615000 -        0x10661afff  libntlm.so (170) <18693B29-154F-339C-A329-4C42A43F6428> /usr/lib/sasl2/libntlm.so
           0x10661f000 -        0x106626fff  libotp.2.so (170) <D1C70F92-1C75-340B-AD53-0C2CD79144FF> /usr/lib/sasl2/libotp.2.so
           0x10662f000 -        0x106631fff  libplain.2.so (170) <E9C3B22A-5958-3869-B778-55948D1EC2B7> /usr/lib/sasl2/libplain.2.so
           0x106635000 -        0x106639fff  libpps.so (170) <9BAB4F91-A2DF-3F11-A2E4-8E353562ECC8> /usr/lib/sasl2/libpps.so
           0x10663e000 -        0x106641ff7  mschapv2.so (170) <7B006E8A-BEB7-3004-9C16-134D37C077A5> /usr/lib/sasl2/mschapv2.so
           0x106646000 -        0x10666eff6  com.apple.DirectoryService.PasswordServerFramework (10.9 - 36) <C36B818F-C1FE-3F3F-A01C-F4613F570D4D> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
           0x106684000 -        0x106686fff  pwauxprop.so (400) <924056F9-D203-3DAD-B78D-61439A2E6BE8> /usr/lib/sasl2/pwauxprop.so
           0x1066d5000 -        0x1066d7fff  shadow_auxprop.so (170) <2E0153C3-9D36-3496-8885-DE8B91838036> /usr/lib/sasl2/shadow_auxprop.so
           0x1066dc000 -        0x1066defff  smb_nt.so (170) <903A6BA5-5B1F-305A-98EA-27BE757A7CFF> /usr/lib/sasl2/smb_nt.so
           0x1066e3000 -        0x1066e5fff  smb_ntlmv2.so (170) <15A0B3C1-DA72-3B4C-8234-EF24132FEB0B> /usr/lib/sasl2/smb_ntlmv2.so
           0x10687e000 -        0x10687ffff  com.apple.AddressBook.LocalSourceBundle (8.0 - 1365) <260EDDAA-A812-3097-BE14-A63EA4BEDD31> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
           0x1068e2000 -        0x1068e6ff7  com.apple.DirectoryServicesSource (8.0 - 1365) <2F2D5BAA-F006-3701-922C-37EF076DE3D1> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
           0x10690e000 -        0x10690fff4 +cl_kernels (???) <88A0B404-C4F2-46CB-AD54-6C26318BA9F7> cl_kernels
           0x10699c000 -        0x1069a0ffd  com.apple.audio.AppleHDAHALPlugIn (2.5.3 - 2.5.3fc1) <844CFCFD-F813-36F1-A5BF-FB9D7BD7040D> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x108499000 -        0x10849affa +cl_kernels (???) <4A20BB34-870B-4601-9730-2A755FE96976> cl_kernels
           0x1084a2000 -        0x1084a2ffd +cl_kernels (???) <57B7C3CF-9B18-4754-A773-1E40A0B7C117> cl_kernels
           0x1084fb000 -        0x1084fbfff +cl_kernels (???) <5FF9C0C1-5CD1-42F3-BA23-12F17DAF2A9A> cl_kernels
           0x108854000 -        0x108855ff6 +cl_kernels (???) <7EF35112-423F-4905-BE5D-C8C949BD8DA3> cl_kernels
           0x1088e3000 -        0x1088e7fff  com.apple.google.iaplugin (2.1 - 210) <F42AE5E6-0CD7-3EE3-B90E-CEDFD6085728> /System/Library/InternetAccounts/Google.iaplugin/Contents/MacOS/Google
           0x10899e000 -        0x10899eff9 +cl_kernels (???) <7ABFD6F6-F3EB-4C6C-9CDA-209E3064C607> cl_kernels
           0x108a2e000 -        0x108a7aff6  com.apple.AddressBook.CardDAVPlugin (10.9 - 424) <C5AC5902-39C2-3A08-9967-5EAA000228EE> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
           0x10a978000 -        0x10a978ffb +cl_kernels (???) <CF6CAD4C-2F58-4524-96F6-AAC9312A7E84> cl_kernels
           0x10aa9e000 -        0x10aa9effe +cl_kernels (???) <1A8E14BE-98A4-4C24-BFEC-7F874A31E614> cl_kernels
           0x10aad8000 -        0x10aad9ff2 +cl_kernels (???) <39E7B8B2-5DE3-4BFC-854C-3D8C717FDD44> cl_kernels
           0x10abdd000 -        0x10abddff7 +cl_kernels (???) <5351C070-2888-4A1A-AED5-CCF7B415A098> cl_kernels
           0x10abe6000 -        0x10abe6ff7 +cl_kernels (???) <6FE11E96-25E5-409E-BAA5-D5076747823D> cl_kernels
           0x10acd4000 -        0x10adbafef  unorm8_bgra.dylib (2.3.58) <9FF943D1-4EF7-36CA-852D-B61C2E554713> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x10adfc000 -        0x10aedcff7  unorm8_rgba.dylib (2.3.58) <DDD1AFEB-FD30-34D2-958A-823C3EFD649A> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_rgba.dylib
           0x10c60b000 -        0x10c62aff7  com.apple.icloud.iaplugin (426 - 455) <F0489D74-BA4D-3233-8DA0-10659660B46A> /System/Library/InternetAccounts/iCloud.iaplugin/Contents/MacOS/iCloud
           0x10d36f000 -        0x10d3f3ff7  com.apple.AOSUI (1.2 - 270) <B33570A8-00E2-3A0C-9ABB-E71D3F62A4BA> /System/Library/PrivateFrameworks/AOSUI.framework/Versions/A/AOSUI
           0x10dd30000 -        0x10df01fff  com.apple.audio.units.Components (1.9 - 1.9) <80991B19-4B07-3DBF-A4B3-597DA1AA65B2> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
        0x7fff63c28000 -     0x7fff63c5b817  dyld (239.3) <D1DFCF3F-0B0C-332A-BCC0-87A851B570FF> /usr/lib/dyld
        0x7fff817bb000 -     0x7fff81864ff7  com.apple.MailCore (7.1 - 1827) <7EB93CBF-910A-3EBB-A424-CFD8BF5A60B4> /System/Library/PrivateFrameworks/MailCore.framework/Versions/A/MailCore
        0x7fff81865000 -     0x7fff819a5fff  com.apple.QTKit (7.7.3 - 2826.0.1) <44109489-09C2-34C4-AB66-E52A505D7887> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff81d53000 -     0x7fff81f43ff5  com.apple.WebKit2 (9537 - 9537.73.11) <FE8D26BB-F8B7-37D6-94A0-D82161541F30> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
        0x7fff81f44000 -     0x7fff82074ff7  com.apple.desktopservices (1.8 - 1.8) <09DC9BB8-432F-3C7A-BB08-956A2DDFC2DE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff82075000 -     0x7fff8208dff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff820b3000 -     0x7fff820dffff  com.apple.CoreServicesInternal (184.8 - 184.8) <707E05AE-DDA8-36FD-B0FF-7F15A061B46A> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff820e0000 -     0x7fff821c7ff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
        0x7fff821ca000 -     0x7fff821cdfff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff821d1000 -     0x7fff82200ff7  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <404369C0-ED9F-3010-8D2F-BC55285F7808> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff82201000 -     0x7fff8225fff7  com.apple.corelocation (1486.17 - 1486.24) <9FBB29F0-E000-3190-A96C-9EAA5CCCA2A0> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff82260000 -     0x7fff82260fff  com.apple.quartzframework (1.5 - 1.5) <3B2A72DB-39FC-3C5B-98BE-605F37777F37> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff82261000 -     0x7fff822a7ff7  com.apple.DiskManagement (6.0 - 744) <FE9F0616-FFCA-31D2-A0B5-E6C943326543> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
        0x7fff822a8000 -     0x7fff822f5ff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff822f6000 -     0x7fff82303ff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff82304000 -     0x7fff82306fff  libRadiance.dylib (1038) <55F99274-5074-3C73-BAC5-AF234E71CF38> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff82307000 -     0x7fff82314ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
        0x7fff82315000 -     0x7fff82483ff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff82484000 -     0x7fff82486ff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
        0x7fff82487000 -     0x7fff824b1ff7  libsandbox.1.dylib (278.10) <B4183FA8-F7E2-3301-8BF9-0EEFB793A5D5> /usr/lib/libsandbox.1.dylib
        0x7fff824b2000 -     0x7fff83026ff7  com.apple.AppKit (6.9 - 1265) <0E9FC8BF-DA3C-34C5-91CC-12BC922B5F01> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8302d000 -     0x7fff83034ff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
        0x7fff83077000 -     0x7fff8307bfff  libsystem_stats.dylib (93.1.26) <B9E26A9E-FBBC-3938-B8B7-6CF7CA8C99AD> /usr/lib/system/libsystem_stats.dylib
        0x7fff8307c000 -     0x7fff830ceff7  com.apple.Suggestions (3.0 - 137.1) <B7E5B685-C6A4-35DB-BA0A-8DBA2BF4ADF6> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
        0x7fff830cf000 -     0x7fff830cffff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff830d0000 -     0x7fff830d5fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
        0x7fff830d6000 -     0x7fff830fcfff  com.apple.iCalendar (7.0 - 162) <2B270453-6FFD-3AD3-B40B-51715BE66B33> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
        0x7fff830fd000 -     0x7fff83100fff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff83101000 -     0x7fff83142fff  com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff83143000 -     0x7fff83182fff  libGLU.dylib (9.0.83) <8B457205-513B-3477-AE9C-3AD979D5FE11> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff83183000 -     0x7fff831c0ff7  com.apple.MailUI (7.1 - 1827) <1190E1DA-6476-3CB1-8609-EE74982F2D4E> /System/Library/PrivateFrameworks/MailUI.framework/Versions/A/MailUI
        0x7fff831c1000 -     0x7fff831c3ff7  com.apple.securityhi (9.0 - 55005) <405E2BC6-2B6F-3B6B-B48E-2FD39214F052> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff831c4000 -     0x7fff831fdff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff831fe000 -     0x7fff8345fff7  com.apple.imageKit (2.5 - 770) <33BCF627-EB1A-3CC1-98AB-2324B6DFB329> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff83465000 -     0x7fff83466ffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
        0x7fff83467000 -     0x7fff83480ff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff83481000 -     0x7fff8350aff7  libsystem_c.dylib (997.1.1) <61833FAA-7281-3FF9-937F-686B6F20427C> /usr/lib/system/libsystem_c.dylib
        0x7fff8350b000 -     0x7fff8356eff7  com.apple.SystemConfiguration (1.13 - 1.13) <F05F4149-981B-380B-8F50-51CE804BBB89> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8356f000 -     0x7fff83780fff  com.apple.Mail.framework (7.1 - 1827) <27546F7A-E050-3750-9515-9E5EF0FB8F41> /System/Library/PrivateFrameworks/Mail.framework/Versions/A/Mail
        0x7fff83781000 -     0x7fff8378bfff  com.apple.AppSandbox (3.0 - 1) <55717299-8164-3D79-918F-BD64706735CF> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff8378c000 -     0x7fff837a7fff  com.apple.CalendarStore (7.0 - 1363) <3B8C272C-D888-359B-B0E1-B842113F6603> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
        0x7fff837c1000 -     0x7fff837c4ff7  com.apple.LoginUICore (3.0 - 3.0) <1ECBDA90-D6ED-3333-83EB-9C8232DFAD7C> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
        0x7fff837d8000 -     0x7fff837e0ff7  com.apple.CloudServices (1.0 - 1) <D59A4139-B4E4-3097-A442-BA87928B355C> /System/Library/PrivateFrameworks/CloudServices.framework/Versions/A/CloudServi ces
        0x7fff837ea000 -     0x7fff83986ff7  com.apple.QuartzCore (1.8 - 332.0) <994D1E0A-64B6-398C-B9A2-C362F02DE943> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff83987000 -     0x7fff83990ff7  com.apple.MailService (7.1 - 1827) <2E55B00F-29F4-338B-BC60-7F66E0CE6660> /System/Library/PrivateFrameworks/MailService.framework/Versions/A/MailService
        0x7fff83991000 -     0x7fff83b76ff7  com.apple.CoreFoundation (6.9 - 855.11) <E22C6A1F-8996-349C-905E-96C3BBE07C2F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff83bb3000 -     0x7fff83c84ff1  com.apple.DiskImagesFramework (10.9 - 371.1) <D456ED08-4C1D-341F-BAB8-85E34A7275C5> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff83d03000 -     0x7fff83d1affa  libAVFAudio.dylib (32.2) <52DA516B-DE79-322C-9E1B-2658019289D7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff83d1b000 -     0x7fff83d2ffff  com.apple.aps.framework (4.0 - 4.0) <F529A05B-FB03-397E-B06A-3A60B808FA11> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff83d30000 -     0x7fff83d59fff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff83d5a000 -     0x7fff83d81ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
        0x7fff83d82000 -     0x7fff83de4ff7  com.apple.WhitePagesFramework (10.7.0 - 141.0) <F95E1174-37B7-300C-8ECE-E67A711B6721> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
        0x7fff83dea000 -     0x7fff83e46fff  com.apple.coredav (1.0.1 - 229.6) <6D2B49E8-E81D-36C7-BC24-FD54FA35E5BC> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
        0x7fff83e47000 -     0x7fff83fffff3  libicucore.A.dylib (511.27) <003B6C21-CBD1-3486-9A1D-030ADF5FA061> /usr/lib/libicucore.A.dylib
        0x7fff84000000 -     0x7fff84002fff  libCVMSPluginSupport.dylib (9.0.83) <E2AED858-6EEB-36C6-8C06-C3CF649A3CD5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff84003000 -     0x7fff8400dff7  com.apple.CrashReporterSupport (10.9 - 538) <B487466B-3AA1-3854-A808-A61F049FA794> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff84026000 -     0x7fff8406ffff  com.apple.CoreMedia (1.0 - 1273.29) <4ACD30BA-E9FE-3842-A8B7-E3BD63747867> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff84070000 -     0x7fff840fcff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff840fd000 -     0x7fff84f4affb  com.apple.WebCore (9537 - 9537.73.13) <A468175D-078A-3377-A883-0BC5C8A4339F> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff84f4b000 -     0x7fff84f50ff7  com.apple.MediaAc

  • Find a specific character in an input string and getting the string after if

    Hello,
    my requirement is as such, lets say we have an input string ABHISHEK #1234, or BOMBAY 123 #235,
    i need to find if the character string has # in it,, if yes pick all the numbers after # .
    in the above example, i need output as 1234 and 235
    and if any non numeric values after # set a flag
    please help me in this.
    regards
    Abhishek

    Hi Abhishek,
    This can be done in BODS using below settings in file format (only if your source is flat file):
    Below is the source file data :
    abcd#1234,Bombay#23456
    By using this file format setting, you should be able to get all the numbers in one column which you can use futher and you can verify this columns data by using "is_valid_int", not null function in BODS.
    I think it should give you solution.
    Thanks,
    Tanvi

  • Unable to find any national character set

    please check your oracle installation...
    and dbassist fails to load.... any idea?
    ps I installed two languages English and italian from the "languages" option
    Thanx for your help.
    Take care
    Renato Dall'Armi

    I ran into the same problem that you have. Did you have a solution for it?
    Regards
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Pui Endo ([email protected]):
    I tried to launch DBAssist and create new database instance
    after Oracle8i server installation. I was getting above the
    error and it says "Unable to find any National Character Set.
    Please check your Oracle installation.
    I am using default character set (US). Is something wrong
    happening in my server installation. Does Oracle prompt for
    choosing character set during installation? I am not a DBA and
    new to Oracle8i. I am try to setup Oracle since we don't have a
    DBA. Anyhelp will be greatly appreciated. The Oracle is
    running on Linux.
    Thanks.<HR></BLOCKQUOTE>
    null

  • Where can I find the 16 character HFC Mac ID number?

    Where can I find the 16 character HFC Mac ID number?
    Thanks,

    There is no 16 character HFC MAC ID number on an Apple product, if that is what you might be asking about.

  • Find the last character in an aplhanumreic string

    Hi guys first time poster long time hiding in the shadows,
    hopefully someone can help me
    I have set of username stored and I need to find the last
    character before the number for example
    abc123 I would want to find c
    ab123 I would want to find b
    any suggestions as to how I would do this?
    Thanks in advance

    Here's one way:
    <CFSET YourString = "abc123")>
    <CFSET LastChar = "">
    <CFSET Pos = 1>
    <CFSET CharLen = Len(YourString)>
    <CFLOOP from="1" to="#CharLen#" step="1">
    <CFSET Char = right(left(YourString,Pos),1)>
    <CFIF Not IsNumeric(Char)>
    <CFSET LastChar = Char>
    <CFSET Pos = Pos + 1>
    <CFELSE>
    <CFBREAK>
    <CFIF>
    </CFLOOP>

  • How we can find the last character in a string(Urgent Plz!)

    Gurus!
    How we can find the last character in a string.
    e.g i have a string say "Str" with value "10-01".
    Now i want to find the last character in "Str" i.e "ONE=1".
    i am using Oracle developer 6i with Oracle 8i(1.7).
    Plz help!
    Many thanks!

    Use the substr() and length() functions -
    x := '10-01';
    y := substr(x, length(x));

  • Hi! I do not find the option "Character Direction" in the palette "Paragraph"!

    I do not find the option “Character Direction” in the palette “Paragraph”! I use Yosemite for Mac and Indesign CS6, CC and CC2014.

    You have to install additionally a MENA version to your version. You have to change the application language in the CC app and install again.

  • How find the Special Character Table?

    Hi friends.
    i need table for special characters. how find the special character table.
    example : &,@<#<$ -- all are special characters.
    any body please reply immdly.
    regards
    pauldharma

    Hi Raj,
    Check this forum thread:
    Print Currency as symbols in SAPSCRIPT/Smartforms
    Hope this helps.
    Regards,
    Vivek Myadam

  • Drop Cap 2nd or 3rd character

    How can I make a drop Cap of the 2nd or 3rd character at the beginning of a paragraph?

    First, make a new paragraph style. Then apply Drop Cap to the first two or three characters:
    Then with the first two characters selected, adjust their size and baseline shift to return them to normal font size and position (you probably should use guides to make it as accurate as possible):
    When you've got it right, make a new Character Style using the selected characters as a model:
    Then go back to the Paragraph Styles Options dialog, and in "Drop Caps and Nested Styles" add a new Nested Style that applies the new Character Style to the first two characters:
    Finally, you can apply your paragraph style to new paragraphs as you see fit.

  • Can't find a "star" character

    I've searched the forums and have not found an answer to a little problem I've encountered. Perhaps someone out there knows how to do this:
    I need a classic 5-point "star" character that I can use in iWeb to indicated a rating, e.g. to indicate that so-and-so deserves a 5-star rating. Webdings does not have one that I can find and neither does Zapf Dingbats. Even if Zapf did, it's not a web font and would probably get substituted. Does anyone know of a web-compatible font family that has such a character?
    I'd hate to have to imbed a graphic, but maybe I'll have to in which case, in what non-Web font family can I find a decent-looking 5-point star (I've got hundreds of fonts and am exhausted after checking just a couple of dozen) that I can then take a screen shot of to create a graphic?
    Any advice would be GREATLY appreciated!

    in what non-Web font family can I find a decent-looking 5-point star
    Open Character Palette (Edit > Special Characters), View = Code Tables, Tab = Unicode, range = 00002600, and select 2605 or 2606. In the Font Variation panel below you will find all the fonts which have these.

  • How to get OEM 11.1.0.6 to find 2nd, 3rd and 4th instances on host?

    First off, I'm an OEM novice, so speak in 1 or 2 syllable words.
    I have 11g OEM installed on a server that has 3 RAC databases. OEM only shows info from the last database that was installed.
    1) How do I get it to display the other databases?
    I also have a 10g Grid Control on another server. I'd like it to find the databases on the 11g RAC. Do I need to install the 10g Agents on the 11g RAC server? If I do, will it destroy the 11g agents (just in case someone tells me how to do #1)?
    Thanks - JR

    Are you using grid control or are you mentioning about dbconsole?
    Agent concept is related with grid control. You install a grid control server and it monitors all the databases that has a grid control agent (one for a server) which points out the grid control server.
    dbconsole comes with the database installation and you can configure dbconsole to monitor only one database.

  • How to find the special character in a give string/sentance

    Hi All,
    I have one task to complete with in the give time. Since i am not very good in PL/SQL i need your your help.
    Requirement is :
    I have to come up with the SQL or PL/SQL code which should return and find the special or hidden character in the datafiles name in a database. There are nearly 400+ database are present in almost all the flavor of UNIX and i have to check the each and every database.
    As you know , Name of the data file will be like this :
    /u02/instance_name\oradata\datafile_01.dbf So it should avoid these things and find out only the special characters in the datafile name.
    a-z , A-Z , 0-9 and \ Please keep in mind that ...... I will be firing the Oracle script from Oracle 9i client which will access all the database from Oracle 9i to 11g in one short and give me the result.
    Please help me to resolve this issue and let me know if you need more information.

    Hi,
    Mukesh wrote:
    Hi Frank,
    This is excellent function. Thanks for you responce.
    I want to modify this query in such a way that .... i should get only those datafiles name which are holding special characters. I don't know how to put this in where condition. :( Here's one way:
    SELECT  file_name
    ,       ...     -- other expressions, if you want any
    FROM    dba_data_files
    WHERE   TRANSLATE ( file_name
                      , '?0123456789.ABCDEFGHIJKLMNOPQRSTUVWXYZ\_/abcdefghijklmnopqrstuvwxyz'
                      ) IS NOT NULL Among the other expressions you can put into the SELECT clause (if you want to) is a copy of the TRANSLATE function, as you had in your message. That would highlight exactly which character(s) made the file_name invalid.

Maybe you are looking for