Re: expdp restart doubt

Hi Dean,
Thanks for the detailed explanation. Saw this thread and I have a related query on using stop/resume a DP job
Can I stop/resume a job non-interactively?
Here is my use case.
- I'm launching an expdp/impdp job through a perl script
- There is a daemon monitoring the DB load
- I need to stop(not kill) the job when load goes high and later resume it. All these need be taken care by the script (without any human intervention)
Appreciate the help.
Thanks,
Joju

I opened another thread so as not to highjack it...
I don't have any perl script to do it, but I think this can be done... If you are attached to the job, then just pass a ctrl-c to the job and then issue a stop or stop immediate. If you are not attached, then
expdp or impdp user/password attach=schema.job_name
This will bring you to a datapump prompt, you can just pass in the stop or stop immediate command here.
Dean

Similar Messages

  • Expdp restart doubt

    Hi,
    I am running expdp to export a huge table and impdp to import it to other DB. Incase if the job fails for some reason and if I restart will it start export/import from the beginning or from the row it haas failed. I believe it should start from the place it has failed, but just wated to confirm.
    Thanks for your help.

    edited: hate typing in here with an ipod. Too difficult to see the complete post.
    I can say, you are missing actual point here.
    My comments
    If in case impdp job failed and terminated , Lets suppose process already imported 100 rows, Some how its terminated, Now your question is if you start job again it should start import after 100 >rows, i.e. from 101 rows. Of course this is not possible, You have to use options TABLE exists action as Replace/Append/Truncate.
    Again, Pause & Continue Client is different, For example proactively you find some problem either from alert log file(Ex: Temp file) or at log file of Import, You can give pause Ctrl + C, again after >taking proper action you can use continue client, so that by using master table it can start import from that point.
    Did you read what i mentioned here? May be understanding problem with my english.
    I said, if job is paused by manually then if you resume it can continue that job from that point of time after giving continue client
    If job is completely failed, i said it will start from scratch.
    Maybe what I should have realized is that you think you can pause a job by typing ctl-c. This does not pause the job. All it does is pause the client. The Data Pump code that is doing the work is still happily plugging along. It is still exporting if you are running expdp, and still importing if you ran impdp. If you want to verify this, export a single table that has data and a couple of indexes. Then run an import job and remap the the schema to a schema that has nothing in it and type ctl-c after you see the table created. Make sure that you have indexes on the table. Let the job sit like this forever after typing ctl-c. In another window, run sqlplus and query the table. You will see rows in it. This is because the data pump processes are still running. Dont touch the the other window and soon enough you will see that the indexes ate created. If you want to do this with export, run a job and specify a log file. Type ctl-c after the estimate phase is complete. you will see nothing happening on the screen. In another window, tail -f the log file. You will see the log file is being written to. You will also see the dump file getting bigger.
    Did you read what i mentioned here? May be understanding problem with my english.
    I said, if job is paused by manually then if you resume it can continue that job from that point of time >after giving continue client
    If job is completely failed, i said it will start from scratch. This is not true. Again, you can't pause a job. If you are running export and someone does a shutdown of your database or computer then all of the data pump processes are gone and your dump file is 1/2 written. If you attach to that old job and issue a continue_client, the job will continue where it left off. If you were running import when this happened and If it was importing your payroll table data and imported everything but 1 row, when the system and database are back up, the payroll table will be empty. If you attach to the job and issue continue_client, all of the data will be loaded at that time.
    Its a background job, Once you scheduled either by Crontab/Nohup, AFAIK you cant process pause in >impdp job. There would be no control with you.
    ONCE AGAIN... THIS IS WRONG INFORMATION!!!!
    Again - you can never pause a job. You can either stop it by
    ctl-c
    export> stop
    or kill a job
    ctl-c
    export> kill
    If you started the job using some script then:
    expdp user/password attach=you_job_name_here
    export> stop or kill
    I know how to continue that job when i ran in foreground, What happens when i run by crontab or by >nohup ? get the job name. Either by know what the script will do or by querying user_datapump_jobs or dba_datapump_jobs and then
    expdp user/password attach=your_jobname_here
    Can you please justify how its wrong information? I know that job can be paused and we have full >control when we run from our session(foreground). Your job cant' be paused, and your job can be restarted even if you didn't use the client to start the job. That is why it is wrong. You have full control over a datapump job no matter how /where it was started
    I'm saying when job is scheduled then you do not have control. If you have any other way please do >mention, Please note when it ran in background. Again, if the data pump job is running, you have full control over it. You can have 20 different sessions attached to the job and all 20 dba can control it. You could change the parallel to be 20 while another dba connected to the job could add data files, while a 3rd dba attached to the job could bump the parallel value to 50.
    Your understanding of what ctl-c does is what is confusing you and what makes your statements wrong. Like i said above, it does not pause the job. It just disconnects the client from the server processes. The server processes are running and exporting/importing just as they would be if there was a client attached. Typing continue will reattach it. So, that is why what you said is wrong.
    If you want more tests to run, run your favorite expdp command ant type ctl-c after estimate is complete. Then at the Export> prompt, type exit. Your job will continue. If you specified a log file, it will be updated and you can tail -f it out.
    Hope this clears it up for you.
    Dean
    Edited by: Dean Gagne on Jan 27, 2012 5:41 PM

  • AXI DMA velocity and DCache doubts

    This is a 2 question in one thread.
    I'm basing my model on the matrix multiplication example,
    First set of questions:
    After some optimizations I have now a MM2S velocity of 1009 Mbytes/s and a S2MM velocity of 383 Mbytes/s.
    1.1- Why is S2MM so slow when comparing to MM2S?
    1.2- Are these the maximum velocities that you think I can get? Currently I'm not using interrupts and just waiting for each transfer to end before continuing. If I use interrupts will it be faster?
    Second set of questions:
    Following some advices I am going to divide my 512x512 matrices in 32x32 ones and treat each of them separately, since the Zedboard resources are not that big.
    I already tested my design and the first 32x32 matrix is properly normalized. Input and output values are correct. However if I try and do a for cycle for all the matrices, the results are not correct and I think this is related to the cache flush and invalidate.
    Here's my code:
    #define DIM 32
    //Start my IP block and enable auto-restart (doubts about this..)
    XMm2s_Start(&BRAM_func);
    XMm2s_EnableAutoRestart(&BRAM_func);
    for(i=0;i<LIMIT;i++){
    mm2s_bufferPtr=(u32 *)(SLOPE_ADDR+i*DIM*DIM*4);
    result_Ptr =(u32 *)(FINAL_ADDR+i*DIM*DIM*4);
    Xil_DCacheFlushRange((u32)mm2s_bufferPtr,DIM*DIM*4);
    Xil_DCacheFlushRange((u32)result_Ptr,DIM*DIM*4);
    Status = XAxiDma_SimpleTransfer(&axi_dma, (u32)mm2s_bufferPtr, DIM*DIM*4, XAXIDMA_DMA_TO_DEVICE);
    if (Status != XST_SUCCESS)
    xil_printf("ERROR! Failed to kick off MM2S transfer!\n\r");
    return XST_FAILURE;
    while (XAxiDma_Busy(&axi_dma,XAXIDMA_DMA_TO_DEVICE));
    // Kick off DMA S2MM transfer
    Status = XAxiDma_SimpleTransfer(&axi_dma, (u32)result_Ptr, DIM*DIM*4, XAXIDMA_DEVICE_TO_DMA);
    if (Status != XST_SUCCESS)
    xil_printf("ERROR! DMA transfer from Vivado HLS block failed!\n\r");
    return XST_FAILURE;
    while (XAxiDma_Busy(&axi_dma,XAXIDMA_DEVICE_TO_DMA));
    print_matrix(result_Ptr,DIM,DIM);
    Xil_DCacheFlushRange((u32)result_Ptr,DIM*DIM*4);
    I already read this carefully about DCacheFlush and DCacheInvalidate but I still clearly have not understood very well.
    Note: In the linker script I changed the heap and stack sizes to 10Kbytes instead of 1Kbyte.
    Ty very much in advance for the help.

    Hello jmales,
    Right now my main IP (designed with Vivado HLS) is receiving a 32x32 matrix of floats. So, everytime I call my IP block within SDK I transfer 4096 bytes with the MM2S and then 4096 back with the S2MM transfer. So is 4096 my bandwidth ?
    Oh okay, I see what you mean. The remaining question to answer first is:
    - How often do you need to transfer a new 32x32 matrix? Or probably more useful question is how often do you need to transfer the 512x512 matrices? In other words, how fast are you acquiring new 512x512 matrices. What is your sample rate. This will tell you how much bandwidth you need.
    If you only take in a new matrix every 10 seconds, then we only need to move data at a rate of 512 * 512 * 4 (bytes) / 10 = ~105KB/s in which case we don't really care about DMA efficiency because data is coming in so slowly. All we need to do is clock the DMA in the MHz range and you'll easily be able to keep up. The DMA will be sitting idle while we wait for new matrix for a while anyway, so any overhead associated with setting up the next transfer will be completely eclipsed and inconsequential. However, if you're taking in a new matrix every 10 milliseconds, we need to move data at 512*512*4/10e-3 = ~105MB/s which becomes a more difficult problem to solve and DMA efficiency may become a larger factor.
    Another thing to think about is latency. Do you care about the absolute time (in milliseoncs) from when you acquire your matrix until it arrives at it's final destination? This will affect the rate that you clock your accelerator hardware (including DMAs, interconnects, etc). Take our 10 second matrix acquisition rate example. Even though the data rate is slow, if we need to pass data from DDR to accelerator, perform the matrix multiplication, then send data back to DDR all under 10 milliseconds, then you'll need to run your DMA operations faster. For minimal latency, every clock cycle counts so DMA configuration overhead might not be acceptable.
    I was looking into this and actually posted a new thread regarding that meanwhile. So if I set the frequency of the MM2S and S2MM ports to 200MHz and the frequency of my custom IP block to 100Mhz, a FIFO ow 2 FIFOS will make sure everything runs smoothly?
    Reading the other thread, I want to be clear about which problem this will solve. Doing this will ensure that your 100MHz clock domain will receive a continuous stream of data (i.e. no bubble cycles where the accelerator is not taking in new data). This is because the FIFO will have data in it which the accelerator can be processing while the DMA is being configured for the next transfer.
    From a raw bandwidth (MB/s) perspective, this won't be as high as just running everything at 200MHz and allowing for those handful of buble cycles where the DMA is being reconfigured.
    Maybe running some number will help to show the distinction:
    1) FIFO case where you run processing at 150MHz with no buble cycles (in the processing clock domain) due to DMA downtime. 150MHz * 4 bytes per clock * 100% efficiency = 600MB/s
    2) No FIFO, everything runs at 200MHz, DMA transfer length is 32*32 = 1024 cycles (or 4096 bytes), and say it takes 20 cycles to reconfigure the DMA for each transfer. The efficiency is 1024/(1024+20) = ~98%. So total bandwidth is 200MHz * 4 bytes per clock * 98% = 784MB/s
    2) Again, no FIFO and everything runs at 200MHz with 20 cycles to reconfigure the DMA, but this time lets say we transfer the data one row at a time so our transfer length is 32 cycles (or 128 bytes). Now our efficiency is only 32/(32+20) = ~61.5%. So total bandwidth is 200MHz * 4 bytes per clock * 61.5% = 492MB/s
    So if we figure out the number of matrices you need to process per second and the input-to-output latency requirements, then we can start deciding on architectural stuff about how best to move the data around.

  • Expdp and impdp  doubt

    hello frnds ,
    I have a expdp dumpfile of a schema from linux ES4 server ,oracle 10 g
    can I use above server dumpfile and impdp in solaris 10 ,oracle 10 g database ..is it possible ?
    thanks

    A corrupted dump file would almost certainly generate a different error message. Either the import utility will blow up when it encountered an invalid header or it will abort in the middle of the import when corruption is found. The error message you're receiving does not indicate that your dump file is corrupt.
    There is no way to validate a dump file short of trying to import it.
    I hope that you are doing a daily export as a supplement to a proper backup not as a replacement for a physical backup. If you're not doing a physical backup, you really want to do so-- export is no replacement for taking a proper backup.
    I'm confused about where the dump file resides now. Have you placed the dump file in the DUMP_FILE_DIR on the destination server? Or are you stating that you cannot put the dump file on the destination server at all? Or something else?
    Justin

  • If in doubt...restart!

    Well i did type a big thing about the problem i was having with apple works, a stuck dvd and software restore not working but...Never mind! Alls it needed was a good restart and it fixed itself. Magic restart button never fails!
    Message was edited by: Anthony Scott2

    Hi Anthony,
    Here's a link just incase you might have done something else on how to restore Applications. If you have tried ejecting the CD by dragging it to the trash, File Eject, and pressing the F12 button, there are a couple of other ways that might help. I would try ejecting it by starting up your computer holding down the track pad button. I can't help you that much with Apple Works, I am a huge supporter of iWork. Here is one of my posts about iWork
    I hope that helps,
    Jon
    G4 1.33Ghz iBook, G4 iMac 1Ghz, G3 500Mhz iBook, Macintosh 128K, eMate...   Mac OS X (10.4.2)   Airport Express, Palm Zire 72, Minolta Dimage X31, iSight, and more

  • Mid 2010 MacBook Pro randomly restarting

    Hello,
    I wanted to drop Apple an email regarding this issue, but they seem careless about customers living in countries with Apple resellers only and don't think they might need to get expert help via email. Better buy a PC next time. I hope I will at least find some help here. I also think my problem might apply to this: http://support.apple.com/kb/TS4088
    Here is the letter:
    Dear Sir/Madam,
    I have a Mid 2010 15-inch MacBook Pro, on which I have been running Snow Leopard, Lion and Mountain Lion with no problems. But recently I have been working with my computer when suddenly screen turned black and the computer restarted. (Actually, when it restarted for first time it shut down before the startup sound, but booted up without problems after I turned it on via the power button.) Since it was the first time I didn't pay attention.
    Then after a few days it happened again, but this time the computer didn't seem like booting up again. When I finally got to the grey screen I tried safe booting with verbose mode, which sadly ended with the same restart after “DSMOS has arrived” line. From this I assume the problem won't lie in non-stock kernel extensions. I also tried resetting NVRAM with no success.
    I had a flash drive with stock Mountain Lion installer, succesfuly booted it up and let it run for a while, after about 15 minutes it shut down with the same black screen. From this I assume that the problem dosen't lie in my current Mountain Lion installation.
    From report logs I can tell two kernel extensions common to all the restarts: com.apple.NVDAResman, com.apple.nvidia.nv50hal; and four appearing only in some cases: com.apple.driver.AGPM, com.apple.GeForce, com.apple.iokit.IONDRVSupport, com.apple.iokit.IOGraphicsFamily.
    This made me suspicious about the dedicated Nvidia graphic card. I installed an utility called gfxCardStatus, which not only shows which card is currently in use, but also allows for force using of specific card. I also installed NovaBench to have some GPU-heavy benchmark available. When I run NovaBench, the computer switched from integrated to dedicated card with no problems, and the benchmark succesfuly finished. But when I tried forcing switch to any of the cards the computer restarted with the black screen. This made me suspicious about the logic board instead of specific graphics card.
    The problems also occurs when waking up form sleep. Sometimes it would wake up normally, but sometimes it would immidiately restart to a grey screen saying “Your computer restarted because of a problem. Wait a few seconds or press a key to continue starting up.”
    To summarize the problem, the computer restarts randomly and fails to wake up from sleep sometimes. I got it as a gift from my father, who lives in Slovakia and have bought it from local reseller. The problem is that I live in Czech Republic and I have some doubts regarding the quality of support at resellers. (Namely I am afraid they will say “See, it runs. There's no problem.”) Also I need to constantly work on a project for school competition, which is mostly done in Photoshop, and longer time without my computer would severely threaten the deadline. I would be very grateful to first have an opinion from Apple empolyee, who really has an in-depth knowledge of MacBooks and Mac OS X.
    Update: After writing this I tried resetting SMC, again with no success.
    Thanks in advance.
    Yours faithfully
    Samuel Novák

    I had already given my MacBook to dad, but in Slovakia they have horrible laws towards customers. The reseller has taken 2 weeks just to make a statement, which is ridiculous since I had sent the MacBook along with a detailed description of the problem and printed Apple article. It seems they have found the machine to be faulty and took another 30 days to fix it.
    I am more than happy to hear that Apple in this case promises to replace the logic board free of charge. It is a powerful machine and I don't want to replace it yet, but if I were about to pay for a new logic board I would consider buying a new laptop.
    Next time I would want to buy anything from Apple I would to one of official Apple stores in Austria, although it seem that not all the employees can diagnose certain issues the quality of service must be incomparable. These almost two months without MacBook, or Photoshop, have ruined my chances to participate in a countrywide student's projects competition, I must wait for the next year and that would be the last chance since I would be leaving high school.

  • MacBook Air (Mid 2013/Mavericks) - Freezes, requires hard restart

    11-inch, Mid 2013 MacBook Air.
    Upgraded to OS X Mavericks in December 2013 - have downloaded every fix/patch as prompted by the App Store.
    Relatively simple use pattern - word processing and web work. No bootcamp or 3rd party software, out side of Mozila products (that I am aware of).
    Aproximately once every 12 hours (regardless of continuous use), the entire computer freezes. It does not take input from any input devices/including external keyboard and mouse (which I normally do not use). The only way to fix this is a hard-restart.
    I have previously suffered from sleep/wake crashes, this is a new sympton of purpose the same problem?
    Getting anxious as I approach my final exams - which are written on computers.  Apple - which specifically targets students and technologically unsavvy customers - has created a faulty product, unfit for the purpose for which it was sold.
    Any suggestions on fixing or mitigating this problem?
    My only thoughts have been a link to RAM use? I don't usually browse flash-websites or keep more than one word processing window open at once.!
    Many Thanks!

    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve the problem.
    2. If you don't already have a current backup, back up all data before doing anything else. The backup is necessary on general principle, not because of anything in the test procedure. Backup is always a must, and when you're having any kind of trouble with the computer, you may be at higher than usual risk of losing data, whether you follow these instructions or not.
    There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    3. Below are instructions to run a UNIX shell script, a type of program. All it does is to collect information about the state of the computer. That information goes nowhere unless you choose to share it. However, you should be cautious about running any kind of program (not just a shell script) on the advice of a stranger. If you have doubts, search this site for other discussions in which this procedure has been followed without any report of ill effects. If you can't satisfy yourself that the instructions are safe, don't follow them. Ask for other options.
    Here's a summary of what you need to do, if you choose to proceed:
    ☞ Copy a line of text in this window to the Clipboard.
    ☞ Paste into the window of another application.
    ☞ Wait for the test to run. It usually takes a few minutes.
    ☞ Paste the results, which will have been copied automatically, back into a reply on this page.
    The sequence is: copy, paste, wait, paste again. You don't need to copy a second time. Details follow.
    4. You may have started the computer in "safe" mode. Preferably, these steps should be taken in “normal” mode. If the system is now in safe mode and works well enough in normal mode to run the test, restart as usual. If you can only test in safe mode, do that.
    5. If you have more than one user, and the one affected by the problem is not an administrator, then please run the test twice: once while logged in as the affected user, and once as an administrator. The results may be different. The user that is created automatically on a new computer when you start it for the first time is an administrator. If you can't log in as an administrator, test as the affected user. Most personal Macs have only one user, and in that case this section doesn’t apply. Don't log in as root.
    6. The script is a single long line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, though you may not see all of it in the browser window, and you can then copy it. If you try to select the line by dragging across the part you can see, you won't get all of it.
    Triple-click anywhere in the line of text below on this page to select it:
    PATH=/usr/bin:/bin:/usr/sbin:/sbin; clear; Fb='%s\n\t(%s)\n'; Fm='\n%s\n\n%s\n'; Fr='\nRAM details\n%s\n'; Fs='\n%s: %s\n'; Fu='user %s%%, system %s%%'; AC="com.autodesk.AutoCAD  com.evenflow.dropbox com.google.GoogleDrive"; H='^[[:space:]]*((127\.0\.0\.1|::1|fe80::1%lo0)[[:space:]]+local|(255\.){3}255[[:space:]]*broadcast)host[[:space:]]*$'; NS=networksetup; PB="/usr/libexec/PlistBuddy -c Print"; A () { [[ a -eq 0 ]]; }; M () { find -L "$d" -type f | while read f; do file -b "$f" | egrep -lq XML\|exec && echo $f; done; }; AT () { o=`file -b "$1" | egrep -v '^(A.{16}t$|cann)'`; Ps "${1##*/} format"; }; Pc () { o=`grep -v '^ *#' "$2"`; l=`wc -l <<< "$o"`; [[ l -gt 25 ]] && o=`head -n25 <<< "$o"`$'\n'"[$((l-25)) more line(s)]"; Pm "$1"; AT "$1"; }; Pm () { [[ "$o" ]] && o=`sed -E '/^ *$/d;s/^ */   /;s/[-0-9A-Fa-f]{22,}/UUID/g;s/(ochat)\.[^.]+(\..+)/\1\2/;/Shared/!s/(\/Users\/)[^/]+/\1-/g' <<< "$o"` && printf "$Fm" "$1" "$o"; }; Pp () { o=`$PB "$2" | awk -F'= ' \/$3'/{print $2}'`; Pm "$1"; }; Ps () { o=`echo $o`; [[ ! "$o" =~ ^0?$ ]] && printf "$Fs" "$1" "$o"; }; R () { o=; [[ r -eq 0 ]]; }; SP () { system_profiler SP${1}DataType; }; id -G | grep -qw 80; a=$?; A && sudo true; r=$?; t=`date +%s`; clear; { A || echo $'No admin access\n'; A && ! R && echo $'No root access\n'; SP Software | sed -n 's/^ *//;5p;6p;8p'; h=(`SP Hardware | awk '/ Id/{print $3}; /Mem/{print $2}'`); o=$h; Ps Model; o=$((h[1]<4?h[1]:0)); Ps "Total RAM (GB)"; o=`SP Memory | sed '1,5d;/[my].*:/d'`; [[ "$o" =~ s:\ [^EO]|x([^8]|8[^0]) ]] && printf "$Fr" "$o"; o=`SP Diagnostics | sed '5,6!d'`; [[ "$o" =~ Pass ]] || Pm POST; p=`SP Power`; o=`awk '/Cy/{print $NF}' <<< "$p"`; o=$((o>=300?o:0)); Ps "Battery cycles"; o=`sed -n '/Cond.*: [^N]/s/^.*://p' <<< "$p"`; Ps "Battery condition"; for b in FireWire Thunderbolt USB; do o=`SP $b | sed -En '/:$/{s/ *:$//;x;s/\n//;/Apple|Intel|SMSC/d;s/\n.*//;/\)/p;};/^ *(V.+ [0N]|Man).+ /{s/ 0x.... //;s/[()]//g;s/(.+: )(.+)/ (\2)/;H;}'`; Pm $b; done; o=`pmset -g therm | sed 's/^.*C/C/'`; [[ "$o" =~ No\ th|pms ]] && o=; Pm Heat; o=`pmset -g sysload | grep -v :`; [[ "$o" =~ =\ [^GO] ]] || o=; Pm "System load"; o=`nvram boot-args | awk '{$1=""; print}'`; Ps "boot-args"; o=; fdesetup status | grep -q On && o=On; Ps FileVault; a=(/ ""); A=(System User); for i in 0 1; do o=`cd ${a[$i]}L*/Lo*/Diag* || continue; for f in *.{cr,h,pa,s}*; do [[ -f "$f" ]] || continue; d=$(stat -f%Sc -t%F "$f"); [[ "$f" =~ h$ ]] && grep -lq "^Thread c" "$f" && f="$f *"; echo "$d ${f%%_2*} ${f##*.}"; done | sort | tail`; Pm "${A[$i]} diagnostics"; done; grep -lq '*$' <<< "$o" && printf $'\n\t* Code injection\n'; o=`syslog -F bsd -k Sender kernel -k Message CReq 'caug|GPU |hfs: Ru|last value [1-9]|n Cause: -|NVDA\(|pagin|proc: t|Roamed|rror|ssert|Thrott|timed? ?o|WARN' -k Message Ane 'SMC:' | tail -n25 | awk '/:/{$4=""; $5=""};1'`; Pm "Kernel log"; o=`df -m / | awk 'NR==2 {print $4}'`; o=$((o<5120?o:0)); Ps "Free space (MiB)"; o=$(($(vm_stat | awk '/eo/{sub("\\.",""); print $2}')/256)); o=$((o>=1024?o:0)); Ps "Pageouts (MiB)"; s=( `sar -u 1 10 | sed '$!d'` ); [[ s[4] -lt 85 ]] && o=`printf "$Fu" ${s[1]} ${s[3]}` || o=; Ps "Total CPU usage" && { s=(`ps acrx -o comm,ruid,%cpu | sed '2!d'`); n=$((${#s[*]}-1)); c="${s[*]}"; o=${s[$n]}%; Ps "CPU usage by process \"${c% ${s[$((n-1))]}*}\" with UID ${s[$((n-1))]}"; }; s=(`top -R -l1 -n1 -o prt -stats command,uid,prt | sed '$!d'`); n=$((${#s[*]}-1)); s[$n]=${s[$n]%[+-]}; c="${s[*]}"; o=$((s[$n]>=25000?s[$n]:0)); Ps "Mach ports used by process \"${c% ${s[$((n-1))]}*}\" with UID ${s[$((n-1))]}"; o=`kextstat -kl | grep -v com\\.apple | cut -c53- | cut -d\< -f1`; Pm "Loaded kernel extensions"; R && o=`sudo launchctl list | awk 'NR>1 && !/0x|com\.(apple|openssh|vix\.cron)|org\.(amav|apac|calendarse|cups|dove|isc|ntp|openld|post[fg]|x)/{print $3}'`; Pm Daemons; o=`launchctl list | awk 'NR>1 && !/0x|com\.apple|org\.(x|openbsd)|\.[0-9]+$/{print $3}'`; Pm Agents; o=`for d in {/,}L*/Lau*; do M; done | egrep -v 'com\.apple\.(CSConfig|server)' | while read f; do ID=$($PB\ :Label "$f") || ID="No job label"; printf "$Fb" "$f" "$ID"; done`; Pm "launchd items"; o=`for d in /{S*/,}L*/StartupItems; do M; done`; Pm "Startup items"; sys=`pkgutil --regexp --only-files --files com.apple.pkg.* | sort | uniq | sed 's:^:/:'`; b=`sed -E '/^.+Lib.+\/Contents\/Info.plist$/!d;s/\/Info.plist$//;/Contents\/./d' <<< "$sys"`; l=`egrep '^/usr/lib/.+dylib$' <<< "$sys"`; [[ "$b" && "$l" ]] && { o=`find -L /S*/L*/{C*/Sec*A,E}* {/,}L*/{A*d,Compon,Ex,In,iTu,Keyb,Mail/B,P*P,Qu*T,Scripti,Sec,Servi,Spo}* -type d -name Contents -prune | grep -Fv "$b" | while read d; do test -f "$d/Info.plist" || continue; ID=$($PB\ :CFBundleIdentifier "$_") || ID="No bundle ID"; printf "$Fb" "${d%/Contents}" "$ID"; done`; Pm "Loadable bundles"; o=`find /usr/lib -type f -name *.dylib | grep -Fv "$l"`; Pm "Shared libraries"; :; } || echo $'\nReceipts missing'; o=`for e in INSERT_LIBRARIES LIBRARY_PATH; do launchctl getenv DYLD_$e; done`; Pm "Inserted dylibs"; o=`find -L {,/u*/lo*}/e*/periodic -type f -mtime -10d`; Pm "Modified periodic scripts"; o=; defaults read /Library/Preferences/com.apple.alf globalstate | grep -q 0 || o=On; Ps Firewall; o=`scutil --proxy | grep Prox`; Pm Proxies; o=`scutil --dns | awk '/r\[0\] /{if ($NF !~ /^1(0|72\.(1[6-9]|2[0-9]|3[0-1])|92\.168)\./) print $NF; exit}'`; i=`route -n get default | awk '/e:/{print $2}'`; I=`$NS -listnetworkserviceorder | sed -En '/ '$i'\)$/{x;s/^\(.+\) //p;q;};x'`; n=`$NS -getdnsservers "$I" | awk '!/^T/{printf "not "; exit}'`; Ps "DNS (${n}from DHCP)"; o=`$NS -getinfo "$I" | awk '/k:/{if ($3 !~ "(255\.){3}0") print}; /v6:/{if ($2 !~ "A") print}'`; Pm TCP/IP; [[ "$I" =~ [AW]i ]] && { o=`/S*/*/P*/*/*/*/*/airport -I | awk '/lR/{print $2}'`; o=$((o<=-87?o:0)); Ps RSSI; }; R && o=`sudo profiles -P | grep : | wc -l`; Ps Profiles; f=auto_master; [[ `md5 -q /etc/$f` =~ ^b166 ]] || Pc $f /etc/$f; for f in fstab sysctl.conf crontab launchd.conf; do Pc $f /etc/$f; done; f=/etc/hosts; Pc hosts <(egrep -v "$H" $f ); AT $f; Pc "User launchd" ~/.launchd*; R && Pc "Root crontab" <(sudo crontab -l); Pc "User crontab" <(crontab -l); R && o=`sudo defaults read com.apple.loginwindow LoginHook`; Pm "Login hook"; LD="$(`find /S*/*/F* -type f -name lsregister | head -n1` -dump)"; o=`for ID in $AC; do [[ "$LD" =~ $ID ]] && echo $ID; done`; Pm "App check"; Pp "Global login items" /L*/P*/loginw* Path; Pp "User login items" L*/P*/*loginit* Name; Pp "Safari extensions" L*/Saf*/*/E*.plist Bundle | sed -E 's/(\..*$|-[1-9])//g'; o=`find ~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \) | wc -l`; Ps "Restricted user files"; cd; o=`find .??* -path .Trash -prune -o -type d -name *.app -print -prune`; Pm "Hidden apps"; o=`SP Fonts | egrep 'id: N|te: Y' | wc -l`; Ps "Font issues"; o=`find L*/{Con,Pref}* -type f ! -size 0 -name *.plist | while read f; do plutil -s "$f" >&- || echo $f; done`; Pm "Bad plists"; d=(Desktop L*/Keyc*); n=(20 7); for i in 0 1; do o=`find "${d[$i]}" -type f -maxdepth 1 | wc -l`; o=$((o<=n[$i]?0:o)); Ps "${d[$i]##*/} file count"; done; o=; [[ UID -eq 0 ]] && o=root; Ps UID; o=$((`date +%s`-t)); Ps "Elapsed time (s)"; } 2>/dev/null | pbcopy; exit 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    7. Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Click anywhere in the Terminal window and paste (command-V). The text you pasted should vanish immediately. If it doesn't, press the return key.
    8. If you see an error message in the Terminal window such as "syntax error," enter
    exec bash
    and press return. Then paste the script again.
    9. If you're logged in as an administrator, you'll be prompted for your login password. Nothing will be displayed when you type it. You will not see the usual dots in place of typed characters. Make sure caps lock is off. Type carefully and then press return. You may get a one-time warning to be careful. If you make three failed attempts to enter the password, the test will run anyway, but it will produce less information. In most cases, the difference is not important. If you don't know the password, or if you prefer not to enter it, press the key combination control-C or just press return three times at the password prompt. Again, the script will still run.
    If you're not logged in as an administrator, you won't be prompted for a password. The test will still run. It just won't do anything that requires administrator privileges.
    10. The test may take a few minutes to run, depending on how many files you have and the speed of the computer. A computer that's abnormally slow may take longer to run the test. While it's running, there will be nothing in the Terminal window and no indication of progress. Wait for the line
    [Process completed]
    to appear. If you don't see it within half an hour or so, the test probably won't complete in a reasonable time. In that case, close the Terminal window and report the results. No harm will be done.
    11. When the test is complete, quit Terminal. The results will have been copied to the Clipboard automatically. They are not shown in the Terminal window. Please don't copy anything from there. All you have to do is start a reply to this comment and then paste by pressing command-V again.
    If any private information, such as your name or email address, appears in the results, anonymize it before posting. Usually that won't be necessary.
    12. When you post the results, you might see the message, "You have included content in your post that is not permitted." It means that the forum software has misidentified something in the post as a violation of the rules. If that happens, please post the test results on Pastebin, then post a link here to the page you created.
    Note: This is a public forum, and others may give you advice based on the results of the test. They speak only for themselves, and I don't necessarily agree with them.
    Copyright © 2014 by Linc Davis. As the sole author of this work, I reserve all rights to it except as provided in the Terms of Use of the Apple Support Communities website ("ASC"). Readers of ASC may copy it for their own personal use. Neither the whole nor any part may be redistributed.

  • Why does my small rainbow wheel spin endlessly when I choose a story from Yahoo that happens to have a video attached?  I have to manually shut my Mac down and manually restart.

    Yahoo is my homepage and I also have just moved and have a new internet provider.  I doubt this has anything to do with my issue but thought just in case, I'd provide that information.  When I select an article to read from the yahoo news section, it goes directly to the article. However, if there is a video attached, the small rainbow wheel appears and turns endlessly.  I can't get out of the cycle.  I can't select restart.  I eventually must manually close down the Mac and then must manually restart.  This happens EVERY time I select an article with a video attached to the text of the article. Anybody have a clue what is going on and how to stop the insanity?
    Thanks,
    Sheri

    Sheri
    It sounds like your ISP is slow and this is causing the video to take a long time to download.
    Go to http://www.speedtest.net and click Start Test.
    Whatever you do don't click anything on the rightside of the screen for MacKeeper. That is scamware and all it will do is hose your computer up royally.
    My numbers were Ping 11ms     Download Speed 25.44 Mbps     Upload Speed 3.49 Mbps
    Which aren't bad.
    Let us know what you get.
    Allan

  • Random restarts and unable to make/receive calls o...

    Okay...has anyone else experienced this problem before.
    No problems with all the regular app functions, speed, sound and everything all normal. Except that no calls can come in or out. When calling out, it will show the whole dialing screen, but there will be no dial tone and sometimes the call duration timer will start but i wont be able to hear anything. When someone tries to call in they get the same tone as if the phone is off, and I won't receive any message of a missed call or anything of that sort. I check cell reception, full bars, My Maxis In my case, all seems to be normal.
    Only way to solve this is to restart the phone. Then everything returns to normal, calls in and out fine.
    Happens to me maybe once a month...
    also random self restarts...I might be listening to music while travelling on the LRT and then it will just vibrate and restart. Or at work its just on the table and then it just short vibrate and restart itself...
    one more issue is that some of the tiles on my homescreen don't load immediately and lag for 1-2 seconds before the image shows. This happens when I am scrolling up or down and all I see instead of the live tiles are blank tiles of the color I set it to. This only started happening after the tango update. i doubt this is caused by the phone and instead by the software. it does not affect the respective apps or anything else.
    Just informing Nokia of these issues with my lumia 710... I will try a hard reset soon to see if this will solve the problems for good.

    What phone?
    What zip code?
    What have you tried to troubleshoot the problem?
    Have you powered it down and restarted?
    More information would be helpful.

  • "You Need To Restart Your Computer" Message every time I try to boot up

    I recently installed Mac OS X 10.4 onto my Mac Mini after a licence became available in my home. All was working fine and I updated to 10.4.11 updated safari, flash all that kinda stuff I was missing with 10.3. There was a mega (20.4GB) log file called ARDAgent.crash.log that was clogging up my 80GB Hard Drive leaving it with very little free. This file was there in 10.3.9 but I didn't delete it there and then. After installing 10.4 (I thought maybe it would sort it out - it didn't) it was still there so I tried deleting it. "In use". So I restarted with it moved and as another help topic said I deleted it using terminal. Computer seemed to be running normally and after updating Sockwave Player and a few other things I decided it was time for a restart.
    I restarted and 75% the way thru the blue OS X launch sequence I got the "You Must Restart Your Computer" message. Oh Dear thought me. Ah well, do as I'm told. Next time I didn't get as far. It got to just before it loaded OS X bar and then did the same. So, try launch from the 10.4 DVD - worth a try. Did so and for some bizar reason gave me a blue screen. Ok. So what next? I tried the 10.3 restore CDs that came with the Mini and it looked great. It got to the stage of clicking continue to do tests / install OS X and it crashed giving me the restart the computer.
    I've reset the PRAM and PMU.
    It now crashes with the Grey Screen and Apple logo with the loading sign at the bottom after about 15 seconds after bootup.
    I've got a backup but for some crazy reason it's not bootable :'(. I've got other backups but they're of 10.5 and 10.6 so I doubt the mini will even boot into them so I can have a look at the HD to diagnose any further.
    Any help would be really appreciated as taking it into a Mac Store is near impossible.

    Yes, you are getting kernel panics. A leading cause is memory, however, there are other causes. If you haven't read this, it may help: http://www.thexlab.com/faqs/kernelpanics.html

  • I restore my iPhone 4S on iTunes and then when restarted it is asking for valid SIM card and I don't have SIM card for that, I was just using the iPhone with wifi, any one can help? Please.

    I restore my iPhone 4S on iTunes after the restore was completed the iPhone was restarted and now asking for valid SIM card which I didn't,t have and I was using the iPhone with wifi, and now can't use it because the screen is locked for SIM card. Can anyone help me please.
    Thanks,
    David

    wjosten wrote:
    Phil0124 wrote:
    I doubt the phone is locked to GCI in any way
    Well, you're wrong, & in fact not only is it locked, GCI does not offer unlocking for iPhones.
    Fact is your post won't help the OP.
    And you are 100% sure its locked to them? How can you know this? While GCI does not offer unlocking that does not mean the phone is actually locked to it. Get off your high horse.
    Its possible the original owner had an unlocked phone. he was using with GCI. Or that GCI doesn't actually have locked phones. Seeing as they don't even have their own infrastructure but instead use AT&T's I doubt they'd have iPhones specifically locked to them and that would be the reason they do not offer unlocking (because there's nothing for them to unlock). And just to clarify, I'm not saying for a fact its not locked to them. It very well maybe be, but without knowing more about the phone and going by the fact GCI uses AT&T infrastrucure its possible its not locked. But here's no way to say for sure either way.
    Trying a Sim card from AT&T or another carrier might just help the OP if its actually unlocked or locked to AT&T rather than GCI.

  • Error handling in process chain-doubts

    Hi ,
    I have some doubts in error handling of process chains.
    1) I have  aprocess load infopackeage and subsequent process is update fromPSA.
    process load infopackage got failed  , so i loaded  the IP manually and repeated the next i.e process update from PSA .
    How to correct the process chain from now?
    2) I have  aprocess load infopackeage and subsequent process is Delete request in infocube .process load infopackage got failed  , so i loaded  the IP manually and repeated the next process i.e Delete request in infocube. Chain continued by deleting the right request . How this is possible ?
    Plz  help me  as this is urgent and daily i have to deal with this  issues. If any documents on error handling is greatly appreciated.
    My mail id is [email protected]
    Regards,
    Pavan

    Hi Pavan,
    Hope the following links will give u a clear idea about process chains and clear ur doubts.
    Business Intelligence Old Forum (Read Only Archive)
    http://help.sap.com/saphelp_nw2004s/helpdata/en/8f/c08b3baaa59649e10000000a11402f/frameset.htm
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/8da0cd90-0201-0010-2d9a-abab69f10045
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/19683495-0501-0010-4381-b31db6ece1e9
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/36693695-0501-0010-698a-a015c6aac9e1
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/9936e790-0201-0010-f185-89d0377639db
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/3507aa90-0201-0010-6891-d7df8c4722f7
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/263de690-0201-0010-bc9f-b65b3e7ba11c
    /people/siegfried.szameitat/blog/2006/02/26/restarting-processchains
    Errors in monitoring of process chains can be categorized into 4 different sections...
    Master data - Full Update
    Master data - Delta Update
    Transaction data - Full Update
    Transaction data - Delta Update.. in terms of loading of data which can be due to server shut down or system maintenance... errors due to incorrect entries in the OLTP system in which case you'll have to fix the errors in the PSA and manually load the data...
    Otherwise it can have errors on Attribute change run being locked by some other job... Aggregate Roll up failing because of attribute change run being run at the same time... Problem with hierarchies and save hierarchies...
    There can be problems with the data store activation if the ODS object contains any incorrect request sitting inside it... then, you need to delete the incorrect request and reload the data again...
    In case of Transaction Delta failure, you'll have to request for a repeat either manually in the infopackage or using the repeat option if available on right clicking the load event...
    For Master Data Delta failures, you need to do an Re-init by deleteing the previous initalization condition in the "initalization option for source systems" in the menu scheduler or reschedule the enitre chain... because, master data generally do not support repeat of last delta ...
    U can even look into these links:
    /people/siegfried.szameitat/blog/2006/02/26/restarting-processchains
    For common data load errors check this link:
    /people/siegfried.szameitat/blog/2005/07/28/data-load-errors--basic-checks
    ****Assign Points if Helpful****
    Regards,
    Ravikanth.

  • My ipod nano 6th gen is not recognized by any computers, I've tried restarting it, resetting it, restarting the computer, any number of stuff it says on here, but it is still unrecognized by either my computer or my roommate's computer.

    Hi all!
    I have a 6th gen ipod nano. I wanted to sync it to get some new music onto it, but my computer won't recognize it. I've tried restarting it and resetting it numerous times, both plugged into the computer and not. I've confirmed that both the Apple Mobile Device service and iPod services are running. I've updated my itunes, I've updated my virus software (I highly doubt that is the problem, it's the same software I've always used and my iPod worked fine before) and I've tried any multitude of ******** "fixes" you can find in this forum or anywhere else on the web.
    The ipod does charge when I plug it in, and I've tried 2 of my roommate's cords, so that isn't it either. My USB drivers are also up to date and work just find with anything else, including my printer, my cellphone, etc.
    so... anyone have any suggestions?
    Oh, I'm also running a Dell Studio 15 laptop with Windows 7.

    Universal Serial Bus controllers
         Intel(R) ICH9 Family USB Universal Host Controller - 2934
         Intel(R) ICH9 Family USB Universal Host Controller - 2935
         Intel(R) ICH9 Family USB Universal Host Controller - 2936
         Intel(R) ICH9 Family USB Universal Host Controller - 2937
         Intel(R) ICH9 Family USB Universal Host Controller - 2938
         Intel(R) ICH9 Family USB Universal Host Controller - 2939
         Intel(R) ICH9 Family USB Universal Host Controller - 293A
         Intel(R) ICH9 Family USB Universal Host Controller - 293C
         USB Composite Device
         USB Root Hub
         USB Root Hub
         USB Root Hub
         USB Root Hub
         USB Root Hub
         USB Root Hub
         USB Root Hub
         USB Root Hub
    I'm not sure if it charged when I hooked it up to my roommate's computer, but it definately didn't register either. If I put it on the dock it plays so the port is fine, but that still doesn't help me sync it to my computer.

  • My Mac Mini (late 2012) keeps restarting.

    I bought this almost a year back and recently it just suddenly shows the noise / black screen repeatedly (had to force shutdown). The only hardware i bought was a usb keyboard but i doubt that's the reason. The other change is playing Football Manager via Steam.
    I verified disk, repaired permissions, went into safe mode, got rid of unnec start at login programs, but i still get the restarts. I was on two screens but now im just using one screen without the hdmi.
    Any help is much appreciated before i send it to the store. Thanks.

    —— The .crash data ----
    Process:         mds_stores [96]
    Path:            /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Support/mds_stores
    Identifier:      mds_stores
    Version:         800.12.2
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [1]
    Responsible:     mds_stores [96]
    User ID:         0
    Date/Time:       2013-12-28 04:45:00.996 +0800
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  11
    Anonymous UUID:  —————
    Crashed Thread:  4  Dispatch queue: com.apple.metadata.spotlightindex
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000016f39185c
    VM Regions Near 0x16f39185c:
        Memory Tag 247         000000012ec82000-0000000132c82000 [ 64.0M] rw-/rwx SM=PRV 
    -->
        MALLOC_TINY            00007fafa0c00000-00007fafa0e00000 [ 2048K] rw-/rwx SM=COW 
    Application Specific Information:
    Initializing
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x000000010a31da1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x000000010a31cd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x0000000108514315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x0000000108513939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x0000000108513275 CFRunLoopRunSpecific + 309
    5   mds_stores                              0x000000010782346a 0x10781f000 + 17514
    6   libdyld.dylib                           0x000000010a18a5fd start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x000000010a322662 kevent64 + 10
    1   libdispatch.dylib                       0x000000010a15343d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x000000010a153152 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib                  0x000000010a321e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x000000010a433f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x000000010a436fb9 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x000000010a31da6e semaphore_timedwait_trap + 10
    1   libdispatch.dylib                       0x000000010a1559da _dispatch_semaphore_wait_slow + 147
    2   libdispatch.dylib                       0x000000010a152f08 _dispatch_worker_thread + 145
    3   libsystem_pthread.dylib                 0x000000010a432899 _pthread_body + 138
    4   libsystem_pthread.dylib                 0x000000010a43272a _pthread_start + 137
    5   libsystem_pthread.dylib                 0x000000010a436fc9 thread_start + 13
    Thread 4 Crashed:: Dispatch queue: com.apple.metadata.spotlightindex
    0   com.apple.spotlight.index               0x00000001079c1eec pushContentTermData + 108
    1   com.apple.spotlight.index               0x00000001079c1a0c getContentTokensCallback + 1212
    2   com.apple.spotlight.index               0x00000001079dfa6d _CITokenizerGetTokens + 2461
    3   com.apple.spotlight.index               0x00000001079dfcd1 CITokenizerGetTokens + 81
    4   com.apple.spotlight.index               0x00000001079c080f invertValueToUpdateSet + 895
    5   com.apple.spotlight.index               0x00000001079bffe1 termUpdateSetProcessFields + 929
    6   com.apple.spotlight.index               0x00000001079c03cb TermUpdateSetAddDocumentInfo + 251
    7   com.apple.spotlight.index               0x00000001079aee08 setDocumentAttributes + 3368
    8   com.apple.spotlight.index               0x000000010799b3cc _CIUpdateContent + 736
    9   com.apple.spotlight.index               0x0000000107a2dcce ContentIndexUpdateContent + 127
    10  com.apple.spotlight.index               0x0000000107a17100 si_writeBackAndIndex + 2778
    11  com.apple.spotlight.index               0x0000000107968bd2 setAttributes + 8042
    12  com.apple.spotlight.index               0x0000000107950fb3 runLoop + 51
    13  com.apple.spotlight.index               0x000000010797e40f work_fun + 739
    14  libdispatch.dylib                       0x000000010a1512ad _dispatch_client_callout + 8
    15  libdispatch.dylib                       0x000000010a15368f _dispatch_queue_drain + 451
    16  libdispatch.dylib                       0x000000010a1549dd _dispatch_queue_invoke + 110
    17  libdispatch.dylib                       0x000000010a153633 _dispatch_queue_drain + 359
    18  libdispatch.dylib                       0x000000010a1549dd _dispatch_queue_invoke + 110
    19  libdispatch.dylib                       0x000000010a153633 _dispatch_queue_drain + 359
    20  libdispatch.dylib                       0x000000010a1549dd _dispatch_queue_invoke + 110
    21  libdispatch.dylib                       0x000000010a152fa3 _dispatch_root_queue_drain + 75
    22  libdispatch.dylib                       0x000000010a152eee _dispatch_worker_thread + 119
    23  libsystem_pthread.dylib                 0x000000010a432899 _pthread_body + 138
    24  libsystem_pthread.dylib                 0x000000010a43272a _pthread_start + 137
    25  libsystem_pthread.dylib                 0x000000010a436fc9 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x000000010a321e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x000000010a433f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x000000010a436fb9 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x000000010a321e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x000000010a433f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x000000010a436fb9 start_wqthread + 13
    Thread 4 crashed with X86 Thread State (64-bit):
      rax: 0x000000012ec82000  rbx: 0x00000000000054a9  rcx: 0x0000000000000000  rdx: 0x00000000000054a9
      rdi: 0x00000001266d8240  rsi: 0x0000000000000240  rbp: 0x00000001249598b0  rsp: 0x0000000124959800
       r8: 0x000000000008616f   r9: 0x0000000000000000  r10: 0x0000000066222b3f  r11: 0x00000001266d8000
      r12: 0x0000000111691000  r13: 0x000000000008616f  r14: 0x000000011171382c  r15: 0x00000000080e1f0b
      rip: 0x00000001079c1eec  rfl: 0x0000000000010202  cr2: 0x000000016f39185c
    Logical CPU:     5
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x10781f000 -        0x10785cff7  mds_stores (800.12.2) <CB980674-57D7-3D48-A3E2-206E56C2B7D6> /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework /Versions/A/Support/mds_stores
           0x10787d000 -        0x107881fff  com.apple.ServerInformation (2.0 - 1) <E628F08A-0F6F-384B-AFD5-1BC1BBF56F1F> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information
           0x107889000 -        0x107889fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
           0x10788e000 -        0x107891fff  com.apple.AppleSystemInfo (3.0 - 3.0) <4D032152-AA40-350E-BB96-44BC55C5C69C> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
           0x10789c000 -        0x107906ff7  com.apple.framework.IOKit (2.0.1 - 907.1.13) <C1E95F5C-B79B-31BE-9F2A-1B25163C1F16> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
           0x10793a000 -        0x107b0effe  com.apple.spotlight.index (10.7.0 - 800.12.2) <9DA86B7E-7F1E-392A-80FD-2BCD2BD4C300> /System/Library/PrivateFrameworks/SpotlightIndex.framework/Versions/A/Spotlight Index
           0x107b7a000 -        0x107dd2ff1  com.apple.security (7.0 - 55471) <233831C5-C457-3AD5-AFE7-E3E2DE6929C9> /System/Library/Frameworks/Security.framework/Versions/A/Security
           0x107f20000 -        0x107f30fff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
           0x107f40000 -        0x107f45fff  com.apple.DiskArbitration (2.6 - 2.6) <F8A47F61-83D1-3F92-B7A8-A169E0D187C0> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
           0x107f51000 -        0x108250fff  com.apple.Foundation (6.9 - 1056) <D608EDFD-9634-3573-9B7E-081C7D085F7A> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
           0x108492000 -        0x108492fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
           0x108498000 -        0x10849bfff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
           0x1084a3000 -        0x108688ff7  com.apple.CoreFoundation (6.9 - 855.11) <E22C6A1F-8996-349C-905E-96C3BBE07C2F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
           0x1087fc000 -        0x1089a9f27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
           0x1089ca000 -        0x108a1cfff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
           0x108a7a000 -        0x108a7bff7  libSystem.B.dylib (1197.1.1) <BFC0DC97-46C6-3BE0-9983-54A98734897A> /usr/lib/libSystem.B.dylib
           0x108a87000 -        0x1095fbff7  com.apple.AppKit (6.9 - 1265) <0E9FC8BF-DA3C-34C5-91CC-12BC922B5F01> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
           0x109d86000 -        0x109dc8ff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
           0x109de6000 -        0x109de7ff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
           0x109def000 -        0x109fa7ff3  libicucore.A.dylib (511.27) <003B6C21-CBD1-3486-9A1D-030ADF5FA061> /usr/lib/libicucore.A.dylib
           0x10a052000 -        0x10a063ff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
           0x10a069000 -        0x10a092ff7  libc++abi.dylib (48) <8C16158F-CBF8-3BD7-BEF4-022704B2A326> /usr/lib/libc++abi.dylib
           0x10a0a2000 -        0x10a0a6ff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
           0x10a0ad000 -        0x10a0b7fff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
           0x10a0c5000 -        0x10a0ccfff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
           0x10a0dd000 -        0x10a0e4ff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
           0x10a0ee000 -        0x10a13cfff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
           0x10a150000 -        0x10a16afff  libdispatch.dylib (339.1.9) <46878A5B-4248-3057-962C-6D4A235EEF31> /usr/lib/system/libdispatch.dylib
           0x10a187000 -        0x10a18aff7  libdyld.dylib (239.3) <62F4D752-4089-31A8-8B73-B95A68893B3C> /usr/lib/system/libdyld.dylib
           0x10a196000 -        0x10a196ff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
           0x10a19c000 -        0x10a1a3ff7  liblaunch.dylib (842.1.4) <FCBF0A02-0B06-3F97-9248-5062A9DEB32C> /usr/lib/system/liblaunch.dylib
           0x10a1ad000 -        0x10a1b2fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
           0x10a1bd000 -        0x10a1bfff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
           0x10a1c5000 -        0x10a1c6ffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
           0x10a1d3000 -        0x10a1e4ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
           0x10a1ef000 -        0x10a1f0ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
           0x10a1f6000 -        0x10a27fff7  libsystem_c.dylib (997.1.1) <61833FAA-7281-3FF9-937F-686B6F20427C> /usr/lib/system/libsystem_c.dylib
           0x10a2ab000 -        0x10a2adff3  libsystem_configuration.dylib (596.12) <C4F633D9-94C8-35D9-BB2D-84C5122533C7> /usr/lib/system/libsystem_configuration.dylib
           0x10a2b9000 -        0x10a2c1fff  libsystem_dnssd.dylib (522.1.11) <270DCF6C-502D-389A-AA9F-DE4624A36FF7> /usr/lib/system/libsystem_dnssd.dylib
           0x10a2cf000 -        0x10a2f6ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
           0x10a30c000 -        0x10a328ff7  libsystem_kernel.dylib (2422.1.72) <D14913DB-47F1-3591-8DAF-D4B4EF5F8818> /usr/lib/system/libsystem_kernel.dylib
           0x10a34f000 -        0x10a37efd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
           0x10a390000 -        0x10a3abff7  libsystem_malloc.dylib (23.1.10) <FFE5C472-B23A-318A-85BF-77CDE61900D1> /usr/lib/system/libsystem_malloc.dylib
           0x10a3bb000 -        0x10a3e2ff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
           0x10a405000 -        0x10a40eff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
           0x10a417000 -        0x10a41dff7  libsystem_platform.dylib (24.1.4) <331BA4A5-55CE-3B95-99EB-44E0C89D7FB8> /usr/lib/system/libsystem_platform.dylib
           0x10a431000 -        0x10a438ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
           0x10a446000 -        0x10a447ff7  libsystem_sandbox.dylib (278.10) <A47E7E11-3C76-318E-B67D-98972B86F094> /usr/lib/system/libsystem_sandbox.dylib
           0x10a44c000 -        0x10a450fff  libsystem_stats.dylib (93.1.26) <B9E26A9E-FBBC-3938-B8B7-6CF7CA8C99AD> /usr/lib/system/libsystem_stats.dylib
           0x10a457000 -        0x10a458fff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
           0x10a460000 -        0x10a465ff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
           0x10a473000 -        0x10a497fff  libxpc.dylib (300.1.17) <4554927A-9467-365C-91F1-5A116989DD7F> /usr/lib/system/libxpc.dylib
           0x10a4b8000 -        0x10a4c3fff  libkxld.dylib (2422.1.72) <C88EF3E6-B31F-3E12-BE9B-562D912BA733> /usr/lib/system/libkxld.dylib
           0x10a4cb000 -        0x10a63bff6  com.apple.CFNetwork (673.0.3 - 673.0.3) <42CFC3DB-35C8-3652-AF37-4BCC73D8BDEF> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
           0x10a742000 -        0x10aa2cfff  com.apple.CoreServices.CarbonCore (1077.14 - 1077.14) <B00BEB34-A9F5-381F-99FD-11E405768A9A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
           0x10aaab000 -        0x10ab3afff  com.apple.Metadata (10.7.0 - 800.12.2) <A9F5D471-8732-3F95-A4A2-33864B92A181> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
           0x10aba4000 -        0x10ac1bfff  com.apple.CoreServices.OSServices (600.4 - 600.4) <36B2B009-C35E-3F21-824E-E0D00E7808C7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
           0x10acc5000 -        0x10ad32fff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
           0x10ad7a000 -        0x10add5ffb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
           0x10ae05000 -        0x10aecefff  com.apple.LaunchServices (572.23 - 572.23) <8D955BDE-2C4C-3DD4-B4D7-2D916174FE1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
           0x10af43000 -        0x10af6cfff  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
           0x10af8f000 -        0x10aff2ff7  com.apple.SystemConfiguration (1.13 - 1.13) <F05F4149-981B-380B-8F50-51CE804BBB89> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
           0x10b030000 -        0x10b11afff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
           0x10b138000 -        0x10b21fff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
           0x10b25b000 -        0x10b268ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
           0x10b273000 -        0x10b277fff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
           0x10b27c000 -        0x10b27cffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
           0x10b281000 -        0x10b28eff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
           0x10b296000 -        0x10b29dfff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
           0x10b2ac000 -        0x10b2b7ff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
           0x10b2ca000 -        0x10b2cbfff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
           0x10b2d5000 -        0x10b2f0ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
           0x10b300000 -        0x10b364ff3  com.apple.datadetectorscore (5.0 - 354.0) <9ACF24B8-3268-3134-A5BC-D72C9371A195> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
           0x10b3a8000 -        0x10b3bffff  com.apple.CFOpenDirectory (10.9 - 173.1.1) <3FB4D5FE-860B-3BDE-BAE2-3531D919EF10> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
           0x10b3de000 -        0x10b3e8ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
           0x10b3f8000 -        0x10b420ffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
           0x10b432000 -        0x10b46aff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
           0x10b4a3000 -        0x10b5f6ff7  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <A0B7B007-9BD8-30E2-B644-47856DA29FEE> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
           0x10b691000 -        0x10b691ffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <6E89F3CB-CC41-3728-9F9A-FDFC151E8261> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
           0x10b698000 -        0x10b8e0fff  com.apple.CoreData (107 - 481) <E5AFBA07-F73E-3B3F-9099-F51224EE8EAD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
           0x10ba0c000 -        0x10bb3cff7  com.apple.desktopservices (1.8 - 1.8) <09DC9BB8-432F-3C7A-BB08-956A2DDFC2DE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
           0x10bbbc000 -        0x10be66ffd  com.apple.HIToolbox (2.1 - 696) <1CFFF37B-C392-3088-B0A4-C08C55B2AF8F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
           0x10bfbe000 -        0x10c15aff7  com.apple.QuartzCore (1.8 - 332.0) <994D1E0A-64B6-398C-B9A2-C362F02DE943> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
           0x10c236000 -        0x10c23eff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
           0x10c24e000 -        0x10c332fff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
           0x10c3f4000 -        0x10c445ff3  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <BF4C2FE3-8BC8-30D1-8347-2A7221268794> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
           0x10c470000 -        0x10c482ff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <D5E7416D-45AB-3690-86C6-CC4B5FCEA2D2> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
           0x10c496000 -        0x10c4d7fff  com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
           0x10cd2a000 -        0x10cd42ff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
           0x10cd56000 -        0x10cd64fff  com.apple.opengl (9.0.83 - 9.0.83) <AF467644-7B1D-327A-AC47-CECFCAF61990> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
           0x10cd72000 -        0x10cd7ffff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
           0x10cd92000 -        0x10ce97fff  com.apple.ImageIO.framework (3.3.0 - 1038) <2C058216-C6D8-3380-A7EA-92A3F04520C1> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
           0x10cf00000 -        0x10cfc2ff1  com.apple.CoreText (352.0 - 367.15) <E5C70FC8-C861-39B8-A491-595E5B55CFC8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
           0x10d033000 -        0x10d94f05f  com.apple.CoreGraphics (1.600.0 - 599.7) <7D0FD5A7-A061-39BA-8E00-723825D2C4DD> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
           0x10da82000 -        0x10db45ff7  com.apple.backup.framework (1.5.1 - 1.5.1) <FC4E949B-B41A-3F21-8AF8-AEDB13146FEA> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
           0x10dbd1000 -        0x10dc5dff7  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
           0x10dc95000 -        0x10dd04ff1  com.apple.ApplicationServices.ATS (360 - 363.1) <88976B22-A9B8-3E7B-9AE6-0B8E09A968FC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
           0x10dd30000 -        0x10ddb9fff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
           0x10de01000 -        0x10de46ff6  com.apple.HIServices (1.22 - 466) <21807AF8-3BC7-32BB-AB96-7C35CB59D7F6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
           0x10de7d000 -        0x10de8cff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
           0x10de9c000 -        0x10dee9ff2  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
           0x10df1c000 -        0x10df55ff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
           0x10df77000 -        0x10df80fff  com.apple.speech.synthesis.framework (4.6.2 - 4.6.2) <0AAE45F0-FC6E-36B6-A6A7-73E6950A74AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
           0x10df99000 -        0x10df9cffc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
           0x10dfab000 -        0x10dfabfff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
           0x10dfb1000 -        0x10e285fc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
           0x10e2cd000 -        0x10e2cdfff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
           0x10e2d1000 -        0x10e39cfff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
           0x10e3ac000 -        0x10e45cff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
           0x10e46e000 -        0x10e84fffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
           0x10e8b6000 -        0x10ea24ff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
           0x10ea50000 -        0x10eb3ffff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
           0x10ebb9000 -        0x10ec00fff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
           0x10ec29000 -        0x10ec4dff7  libJPEG.dylib (1038) <86F349A8-882D-3326-A0B0-63257F68B1A7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
           0x10ec5b000 -        0x10ecb4fff  libTIFF.dylib (1038) <5CBFE0C2-9DD8-340B-BA63-A94CE2E476F2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
           0x10ecc4000 -        0x10ecdfff7  libPng.dylib (1038) <EF781AF8-C2E6-3179-B8A1-A584783070F1> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
           0x10ecea000 -        0x10eceeff7  libGIF.dylib (1038) <C29B4323-1B9E-36B9-96C2-7CEDBAA124F0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
           0x10ecf7000 -        0x10ede5fff  libJP2.dylib (1038) <6C8179F5-8063-3ED6-A7C2-D5603DECDF28> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
           0x10ee16000 -        0x10ee18fff  libRadiance.dylib (1038) <55F99274-5074-3C73-BAC5-AF234E71CF38> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
           0x10ee1c000 -        0x10ee63ff7  libcups.2.dylib (372) <348EED62-6C20-35D6-8EFB-E80943965100> /usr/lib/libcups.2.dylib
           0x10ee7f000 -        0x10ee98ff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
           0x10eeb7000 -        0x10eee6ff5  com.apple.GSS (4.0 - 2.0) <ED98D992-CC14-39F3-9ABC-8D7F986487CC> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
           0x10ef0c000 -        0x10ef28fff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
           0x10ef33000 -        0x10f024ff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
           0x10f038000 -        0x10f09cff9  com.apple.Heimdal (4.0 - 2.0) <E7D20A4D-4674-37E1-A949-635FFF7C439A> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
           0x10f0c8000 -        0x10f0c9fff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
           0x10f0d0000 -        0x10f0d4ff7  libheimdal-asn1.dylib (323.12) <063A01C2-E547-39D9-BB42-4CC8E64ADE70> /usr/lib/libheimdal-asn1.dylib
           0x10f0e1000 -        0x10f0edff7  com.apple.OpenDirectory (10.9 - 173.1.1) <6B78BD7B-5622-38E6-8FC6-86A117E3ACCA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
           0x10f108000 -        0x10f111fff  com.apple.CommonAuth (4.0 - 2.0) <1D263127-5F27-3128-996D-7397660D0C6E> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
           0x10f118000 -        0x10f18bffb  com.apple.securityfoundation (6.0 - 55122) <119D1C53-B292-3378-AEE1-A3B1FB02F43F> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
           0x10f1d1000 -        0x10f20bff3  com.apple.bom (12.0 - 192) <989690DB-B9CC-3DB5-89AE-B5D33EDC474E> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
           0x10f223000 -        0x10f248ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
           0x10f265000 -        0x10f533ff4  com.apple.CoreImage (9.0.54) <74BB8685-69A9-3A45-8DED-EA26BD39D710> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
           0x10f629000 -        0x10f67cfff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
           0x10f6a4000 -        0x10f6e3fff  libGLU.dylib (9.0.83) <8B457205-513B-3477-AE9C-3AD979D5FE11> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
           0x10f6f3000 -        0x10f6fbffc  libGFXShared.dylib (9.0.83) <11A621C3-37A0-39CE-A69B-8739021BD79D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
           0x10f709000 -        0x10f714fff  libGL.dylib (9.0.83) <984A960A-C159-3AE5-8B40-E2B451F6C712> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
           0x10f72b000 -        0x10f769ff7  libGLImage.dylib (9.0.83) <C08048A7-03CC-3E40-BCDC-7791D87AC8E4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
           0x10f777000 -        0x10f779fff  libCVMSPluginSupport.dylib (9.0.83) <E2AED858-6EEB-36C6-8C06-C3CF649A3CD5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
           0x10f785000 -        0x10f788fff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
           0x10f78f000 -        0x10fbc2ffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
           0x10fdda000 -        0x10fde4ff7  com.apple.CrashReporterSupport (10.9 - 538) <B487466B-3AA1-3854-A808-A61F049FA794> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
           0x10fdf3000 -        0x10fe41fff  com.apple.opencl (2.3.57 - 2.3.57) <FC03A80D-543A-3448-83FF-D399C3A240D9> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
           0x10fe5c000 -        0x10fe68ff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
           0x10fe71000 -        0x10fe8aff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
           0x10fea4000 -        0x10fed4fff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
           0x10ff00000 -        0x10ff25ff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
           0x10ff37000 -        0x10ffb7fff  com.apple.CoreSymbolication (3.0 - 141) <B018335C-698B-3F87-AF1C-6115C4FA8954> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
           0x10ffd7000 -        0x11002fff7  com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
           0x110078000 -        0x1100a7fff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
           0x11148d000 -        0x11149aff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Librarian
           0x113778000 -        0x11377cff7  libgermantok.dylib (14) <33B11365-E59E-38C1-952E-AFFFEFEE427F> /usr/lib/libgermantok.dylib
           0x115e78000 -        0x115f8cfff  libmecab.dylib (599.8) <EEAA8294-D459-313E-B0A2-BA2D37722AD7> /usr/lib/libmecab.dylib
        0x7fff6c916000 -     0x7fff6c949817  dyld (239.3) <D1DFCF3F-0B0C-332A-BCC0-87A851B570FF> /usr/lib/dyld
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 2
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 381
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=116.2M resident=90.0M(77%) swapped_out_or_unallocated=26.2M(23%)
    Writable regions: Total=451.2M written=152.8M(34%) resident=155.9M(35%) swapped_out=0K(0%) unallocated=295.3M(65%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    Dispatch continuations             16.0M
    Kernel Alloc Once                     4K
    MALLOC                            231.1M
    MALLOC (admin)                      112K
    Memory Tag 241                      216K
    Memory Tag 243                     60.0M
    Memory Tag 243 (reserved)          6144K        reserved VM address space (unallocated)
    Memory Tag 244                     27.2M
    Memory Tag 246                     10.0M
    Memory Tag 246 (reserved)          2048K        reserved VM address space (unallocated)
    Memory Tag 247                     68.0M
    Memory Tag 255                     7424K
    STACK GUARD                        56.0M
    Stack                              10.6M
    VM_ALLOCATE                          32K
    __DATA                             19.2M
    __IMAGE                             528K
    __LINKEDIT                         26.2M
    __TEXT                             90.1M
    __UNICODE                           544K
    mapped file                       250.8M
    shared memory                         4K
    ===========                      =======
    TOTAL                             882.0M
    TOTAL, minus reserved VM space    874.0M

  • How to find a dump file is taken using norma exp or expdp

    Hi All,
    How to find out whether a dump file is taken using the conventional exp or using the expdp utility?
    OS: HPUX
    DB: 10.2.0.4

    Hi ,
    I go with Helios's reply. We cannot just predict if it was taken my expdp or exp.
    Since your DB version is 10 , both could be possible.
    The simplest way would be : just run the imp , if it throws error , then its created through expdp.
    because dump from expdp cannot be used with imp and vice versa. So that could help you find..
    else , try to get the syntax by which the dump was created.
    If you have any doubts , wait for experts to reply.
    HTH
    Kk

Maybe you are looking for