Strange happenings with examples from Tom Kyte's book. 10 XE

Hi all,
I was twiddling my thumbs and decided to brush up on some of Oracle's fundamentals.
Tom Kyte's book - Effective Oracle by Design. Examples on pp. 141 - 142 (to do with
bind variables). Typed in the example and obtained a very strange system reaction.
It consists of a package "DEMO_141_PKG" with 1 procedure "parse_bind_execute_close"
which is called by the procedure QUICKFIX142.. The system then proceeds to go mental.
If anybody could explain to me what's going on, I would be grateful. I'm running 10 XE on
Ubuntu Linux.
On running the code (below) I get this in the "Run" window of SQLDeveloper.
Connecting to the database demo.
ORA-01000: maximum open cursors exceeded
ORA-06512: at "SYS.DBMS_SYS_SQL", line 884
ORA-06512: at "SYS.DBMS_SQL", line 9
ORA-06512: at "DEMO.DEMO_141_PKG", line 17
ORA-06512: at "DEMO.QUICKFIX142", line 8
ORA-06512: at line 2And the logging window of SQLDevloper just shows a continuous
stream of the text below - I have to kill the sessions as SYS from
within Oracle - the Terminate process from within SQLDeveloper
doesn't manage to kill this runaway process.
Logging output
SEVERE     2474100     1     oracle.dbtools.raptor.runner.DBStarterFactory     logDbmsOutput: ORA-01000: maximum open cursors exceeded
SEVERE     2474099     1     oracle.dbtools.raptor.runner.DBStarterFactory     logDbmsOutput: ORA-01000: maximum open cursors exceeded
SEVERE     2474098     0     oracle.dbtools.raptor.runner.DBStarterFactory     logDbmsOutput: ORA-01000: maximum open cursors exceeded
SEVERE     2474097     0     oracle.dbtools.raptor.runner.DBStarterFactory     logDbmsOutput: ORA-01000: maximum open cursors exceeded
SEVERE     2474096     1     oracle.dbtools.raptor.runner.DBStarterFactory     logDbmsOutput: ORA-01000: maximum open cursors exceeded
<Millions of lines snipped - it just keeps going>Now, the code is here for those who would like to help me get to the bottom of this phenomenon.
create or replace
PACKAGE DEMO_141_PKG AS
procedure parse_bind_execute_close(p_input in varchar2);
END DEMO_141_PKG;
create or replace
PACKAGE BODY DEMO_141_PKG AS
  g_first_time boolean := TRUE;
  g_cursor number;
procedure parse_bind_execute_close(p_input in varchar2)
AS
  l_cursor number;
  l_output varchar2(4000);
  l_status number;
BEGIN
  l_cursor := dbms_sql.open_cursor;
  dbms_sql.parse(l_cursor, 'SELECT * FROM Dual WHERE Dummy = :x', dbms_sql.native);
  dbms_sql.bind_variable(l_cursor, ':x', p_input);
  dbms_sql.define_column(l_cursor, 1, l_output, 4000);
  l_status := dbms_sql.execute(l_cursor);
  if(dbms_sql.fetch_rows(l_cursor) <= 0)
  then
    l_output := null;
  else
    dbms_sql.column_value(l_cursor, 1, l_output);
  end if;
END parse_bind_execute_close;
END DEMO_141_PKG;and the above is called here
create or replace
PROCEDURE QUICKFIX142 AS
BEGIN
-- demo.runstats_pkg.rs_start; // Don't worry about  runstats - it's a Tom Kyte package for
-- timings and measuring contention.
  execute immediate 'alter session set session_cached_cursors = 0';
  for i in 1..1000
  loop
    DEMO_141_PKG.parse_bind_execute_close('Y');
  end loop;
-- runstats_pkg.rs_middle;
  execute immediate 'alter session set session_cached_cursors = 100';  // reduced this to 50, 20, 10 & 5 - no effect.
  for i in 1..1000
  loop
    DEMO_141_PKG.parse_bind_execute_close('Y');
  end loop;
-- runstats_pkg.rs_stop;
END QUICKFIX142;Edited by: Paulie on Aug 12, 2011 2:18 PM

If you modify the called package by adding :
  -- CLOSE THE CURSOR
  dbms_sql.close_cursor(l_cursor);in
procedure parse_bind_execute_close(p_input in varchar2)
AS
  l_cursor number;
  l_output varchar2(4000);
  l_status number;
BEGIN
  l_cursor := dbms_sql.open_cursor;
  dbms_sql.parse(l_cursor, 'SELECT * FROM Dual WHERE Dummy = :x', dbms_sql.native);
  dbms_sql.bind_variable(l_cursor, ':x', p_input);
  dbms_sql.define_column(l_cursor, 1, l_output, 4000);
  l_status := dbms_sql.execute(l_cursor);
  if(dbms_sql.fetch_rows(l_cursor) <= 0)
  then
    l_output := null;
  else
    dbms_sql.column_value(l_cursor, 1, l_output);
  end if;
  -- CLOSE THE CURSOR
  dbms_sql.close_cursor(l_cursor);
END parse_bind_execute_close;
END DEMO_141_PKG;Then script runs with default OPEN_CURSORS setting:
SQL> connect / as sysdba
Connected.
SQL> show parameter open_c
NAME                                 TYPE        VALUE
open_cursors                         integer     300
SQL> connect test/test
Connected.
SQL> exec quickfix142;
PL/SQL procedure successfully completed.

Similar Messages

  • Strange happenings with the OS X mail...

    While I'm presently using the latest Mavericks edition, I've noticed the follow strange behavior with the immediate previous OS X versions as well.
    When I'm sending an email and have NO other outbound email waiting to go, I see various numbers of outbound emails in the lower activity section.  For example, I can be sending one email and the activity window says there are any number going out.  A few minutes ago I saw 11 going out, but the number seems to vary from 5 to maybe 15 outbound emails.
    I see the same indication with incoming emails. The counter may say 15 or some other number of inbound emails when I actually receive far less.
    I'm wondering why this is, especially with the outbound email number being several more than I'm actually sending.  There is no indication in the "sent" folder other than the primary email(s) I've sent.
    The short version of this is could I have a virus that is sending data to someone I don't know?  Other than OS X mail, I've never seen this happen when using Windows. 
    Can anyone explain why this is happening?

    It sounds like a counter variable isn't being reset. You get this quite a lot in software where there is a loop counter that the programmer likes to use (I use i,j and k habitually) and if the counter isn't set in some kind of automatic fashion then each time you run through the loop it increments over and over. Whoever is managing the bug fixes at Apple has probably given this a priority 4 or lower and so it will never be fixed.
    I think the takeaway message is that this is probably not as big a worry as it looks. I too thought I might be sending buckets of emails as part of a botnet. The fact that it resets when you restart the whole thing makes me think it is just what is above.
    Do actual Apple employees ever look at or respond to the things that people post in these threads? It would be useful to know if it is a known bug or not.

  • Trouble with examples from the website

    Hi
    I was trying to down load couple of examples from your website - Motor
    control, closed loop control system. But have trouble with it.
    I have Labview version 5.1 not 7.
    It gives an error after I unzip the file.
    Are they not compatible with 5.1??
    Pls help
    Krithika

    When you download an example from the NI homepage please always have a look at the "Software Requirements" section. Here you will find the version of the development environment the example was compiled with.
    Many examples are compiled with LV 6.x or LV 7.x thus it's probable that you can't open them with LV 5.x
    Best regards,
    Jochen Klier
    National Instruments Germany

  • Strange behavior with images from iPhone

    I'm wondering if anyone else has seen this behavior or can replicate.
    Take some pictures using an iPhone 3Gs (can't tell if it happens with other models).
    Bring the images into iPhoto and then drag them out to regular folders.
    Choose Cmd/Ctrl-D to place.
    The image, which is in Portrait orientation, comes into CS5 strangely.
    The frame does not hug the correct orientation of the image. Instead it follows a landscape orientation as if the image was rotated 90 degrees.
    When you let go from dragging the frame, the image appears vertical within the lanscape frame.
    The only way to get the frame any way close to the vertical orientation is to hold the Shift key.
    I have also noticed that these images are added to a video editing program rotated into a landscape mode.

    There's no such thing as a vertical or horizontal image with iPhones or any phone that sports and accelerometer. It's just a tag they add to images that is inconsistently supported. All photos are landscape, just some are tagged to indicate they are portrait. It's like when I was growing up I always thought my dad was Superman only to later find out he was just a drunk wearing a cape.
    If you want to just pull the images directly off the phone or just a generally nice thing for your iPhone/Pod/Pad you can get PhoneDisk. Costs nothing and works great other than my minor user interface complaint that they take advantage of the menubar's menuextras area that is supposed to be Apple only and hardware only at that. Human Interface Guidelines aside, it is a really nice utility.
    http://www.macroplant.com/phonedisk/

  • Strange happenings with Quicksilver 766MHz

    Hello,
    We've started having problems with several Quicksilver 766MHz macs in our labs.
    The Symptoms:
    1) Machine starts to boot up, then all of a sudden it's like someone's pulled out the kettle lead.
    2) Occasionally, these machines manage to boot. But, take out the USB cable for the keyboard and it instantly shuts down.
    Other strange symptoms:
    Well, just repeating myself really. If it does boot up, if you pull out the keyboard USB lead then it will trigger the immediate shut down!!!*.
    Things we're tried:
    Removed all RAM, tried them one by one.
    Swapped the PSU with a 'known good machine' (or was it a 'known good machine'? It's a long filthy job swapping PSUs).
    Reset the motherboard.
    Tried to ZAP the PRAM - at that point the machine wasn't getting any further than a couple of seconds into booting.
    Checked graphics cards and all cables inside etc.
    The battery is working because, i think, if it wasn't then it would get to do it's initial chime (most times it will chime, then power down, but sometimes it can't even be bothered to do that).
    Searched archives. Found one thing where this guy was having similar problems, except that it wasn't booting at all, the On button would just glow. But i haven't found any information on this strange symptom involving the USB cable:
    http://lists.apple.com/archives/macos-x-server/2005/Sep/msg00220.html
    This general troubleshooting link from apple:
    http://docs.info.apple.com/article.html?artnum=95055
    Other info:
    The latest 3 machines behaving in this way were moved to another location and when they got there they were in this state.
    The environment we're testing them in is not over heating them. They've dealt with far warmer conditions in the past.
    A number of these machines, which were all purchased at the same time, have started behaving in this way
    Any thoughts most welcome. Thanks in advance,
    C
    G4 Quicksilver 766MHz Mac OS X (10.4.5)

    Hi, I've seen some occasional flakiness with the USB ports on my QS 2001. I believe that the USB ports just don't provide enough juice to run many peripherals off, so my suggestion would be to make sure that you use powered hubs for anything more than a keyboard, and if you use a keyboard with a port installed (Kensington's Keyboard-in-a-Box is one such), hang only one more device off of it.
    Occasionally heat damage can be irreversible, and it sounds like you're experiencing some of the symptoms here as well. Just for grins, have you tried running the machines with the case open? The battery is also a symptom of all kinds of mischief. I'd replace that it in just one computer to see if it made a difference.
    HTH,
    ~FifthWheel

  • Strange happenings with text and links

    I am not very tech savy so be gentle. I have a blog on iweb. Today I posted and there is something going awry with my text. In a certain part it is hazy and stretched when you mouse over it the mouse pointer turns to a link. Very strange as I didn't place a link there.
    Also, as a side note, I was wondering how I would make my blog more noticed? Is there a way to make it search engine friendly, or are there any boards I can post it on?
    if it would be helpful here is a link to the blog:
    http://web.mac.com/hottee295/iWeb/Site%202/Blog/E4A931A9-D343-4CE2-9259-1F759532 5E09.html

    Are you sure you didn't make a hyperlink there? The link goes to...
    http://www.sewneau.com/how.to/flat.felled.seam.html
    ...which seems in keeping with the subject matter of your site.
    Anyways, look again in iWeb and make sure you did not inadvertantly put a hyperlink for the involved text. Otherwise, this stretched out text is usually indicative of a corruption of your link image. It's nothing to worry about as it is easily remedied by a "Publish All to .Mac" command.
    As far as getting your site indexed, you are doing the right thing by posting your URL here. It's a step in the right direction. Give it some time. You can also submit your iWeb URL here...
    http://www.google.com/addurl
    Just submit: http://web.mac.com/hottee295/iWeb/
    That should be sufficient.

  • Strange happenings with my Fonts

    A real mystery. If I'm creating a batch "text" for a number of files the strangest thing happens. I have to change 10 files all with the same or very close to the same pixel size. In this case 1024Lx . I want to insert a "copyright" text across the image. I create the action, that includes: text, text size of18pts and opacity. and then batch. The resulting font sizes are very unenven. They are all show up in the individual files as  18 pt but some are invisiblley small some are gigantically large and some are just right. And my name's not Goldilocks.
    I've tried this on PS3 and PS6 with the same results.
    Any suggestions on getting this to work correctly.
    Thanks!
    Davis

    JoeDavisSea
    Photoshop is a complex program and it takes time to acquire the knowledge to use it well.  While action are easy to record you need some knowledge skill and practice to record an action the will well on any document. 
    Dealing with size is not easy in actions. Size can be handled better using Photoshop Scripting. However scrpting is not easy.   So I put together a little package on crafting actions which include my take on dealing with image size.
    The package also includes a dozen scripts I wrote to be use in actions to help action do some thing they can not do on their own.
    Crafting Actions Package UPDATED Aug 14, 2012 Changed AspectRatioSelection Plug-in script added Path support.
    Contains
    Download
    Action Actions Palette Tips.txt
    Action Creation Guidelines.txt
    Action Dealing with Image Size.txt
    Action Enhanced via Scripted Photoshop Functions.txt
    CraftedActions.atn Sample Action set includes an example Watermarking action handles various size images
    Sample Actions.txt Photoshop CraftedActions set saved as a text file.
    12 Scripts for actions
    Example
    Download

  • XML to table. Trouble with example from documentation

    I read documentation "Oracle9i Application Developer's Guide - XML"
    (Release 1 (9.0.1),Part Number A88894-01)
    5. Database Support for XML
    TABLE Functions
    Table Functions Example 1: Exploding the PO to Store in a Relational Table
    I try run this example in SQL*Plus WorkSheet
    1. I type
    create type poRow_type as object
    poname varchar2(20),
    postreet varchar2(20),
    pocity varchar2(20),
    postate char(2),
    pozip char(10)
    --ok
    2. I type
    create type poRow_list as TABLE of poRow_type;
    --ok
    3. I type
    create function poExplode_func (arg IN sys.XMLType) return poRow_list
    pipelined is
    out_rec poRow_type;
    poxml sys.XMLType;
    i binary_integer := 1;
    argnew sys.XMLType := arg;
    begin
    loop
    -- extract the i'th purchase order!
    poxml := argnew.extract('//PO['||i||']');
    exit when poxml is null;
    -- extract the required attributes..!!!
    out_rec.poname := poxml.extract('/PONAME/text()').getStringVal();
    out_rec.postreet := poxml.extract('/POADDR/STREET/text()').getStringVal();
    out_rec.pocity := poxml.extract('/POADDR/CITY/text()').getStringVal();
    out_rec.postate := poxml.extract('/POADDR/STATE/text()').getStringVal();
    out_rec.pozip := poxml.extract('/POADDR/ZIP/text()').getStringVal();
    PIPE ROW(out_rec);
    i := i + 1;
    end loop;
    return;
    end;
    -- ok
    4. And I type
    select *
    from TABLE( CAST(
    poExplode_func(
    sys.XMLType.createXML(
    '<?xml version="1.0"?>
    <POLIST>
    <PO>
    <PONAME>Po_1</PONAME>
    <POADDR>
    <STREET>100 Main Street</STREET>
    <CITY>Sunnyvale</CITY>
    <STATE>CA</STATE>
    <ZIP>94086</ZIP>
    </POADDR>
    </PO>
    <PO>
    <PONAME>Po_2</PONAME>
    <POADDR>
    <STREET>200 First Street</STREET>
    <CITY>Oaksdale</CITY>
    <STATE>CA</STATE>
    <ZIP>95043</ZIP>
    </POADDR>
    </PO>
    </POLIST>')
    ) AS poRow_list));
    -- ERROR
    poExplode_func(
    error in line 3:
    ORA-30625: method dispatch on NULL SELF argument is disallowed
    ORA-06512: at "ITZ.POEXPLODE_FUNC", line 16
    ORA-06512: at line 1
    Why error ? What can I do ?
    Thanks

    I read documentation "Oracle9i Application Developer's Guide - XML"
    (Release 1 (9.0.1),Part Number A88894-01)
    5. Database Support for XML
    TABLE Functions
    Table Functions Example 1: Exploding the PO to Store in a Relational Table
    I try run this example in SQL*Plus WorkSheet
    1. I type
    create type poRow_type as object
    poname varchar2(20),
    postreet varchar2(20),
    pocity varchar2(20),
    postate char(2),
    pozip char(10)
    --ok
    2. I type
    create type poRow_list as TABLE of poRow_type;
    --ok
    3. I type
    create function poExplode_func (arg IN sys.XMLType) return poRow_list
    pipelined is
    out_rec poRow_type;
    poxml sys.XMLType;
    i binary_integer := 1;
    argnew sys.XMLType := arg;
    begin
    loop
    -- extract the i'th purchase order!
    poxml := argnew.extract('//PO['||i||']');
    exit when poxml is null;
    -- extract the required attributes..!!!
    out_rec.poname := poxml.extract('/PONAME/text()').getStringVal();
    out_rec.postreet := poxml.extract('/POADDR/STREET/text()').getStringVal();
    out_rec.pocity := poxml.extract('/POADDR/CITY/text()').getStringVal();
    out_rec.postate := poxml.extract('/POADDR/STATE/text()').getStringVal();
    out_rec.pozip := poxml.extract('/POADDR/ZIP/text()').getStringVal();
    PIPE ROW(out_rec);
    i := i + 1;
    end loop;
    return;
    end;
    -- ok
    4. And I type
    select *
    from TABLE( CAST(
    poExplode_func(
    sys.XMLType.createXML(
    '<?xml version="1.0"?>
    <POLIST>
    <PO>
    <PONAME>Po_1</PONAME>
    <POADDR>
    <STREET>100 Main Street</STREET>
    <CITY>Sunnyvale</CITY>
    <STATE>CA</STATE>
    <ZIP>94086</ZIP>
    </POADDR>
    </PO>
    <PO>
    <PONAME>Po_2</PONAME>
    <POADDR>
    <STREET>200 First Street</STREET>
    <CITY>Oaksdale</CITY>
    <STATE>CA</STATE>
    <ZIP>95043</ZIP>
    </POADDR>
    </PO>
    </POLIST>')
    ) AS poRow_list));
    -- ERROR
    poExplode_func(
    error in line 3:
    ORA-30625: method dispatch on NULL SELF argument is disallowed
    ORA-06512: at "ITZ.POEXPLODE_FUNC", line 16
    ORA-06512: at line 1
    Why error ? What can I do ?
    Thanks

  • Strange problem with unflatten from string

    Hi all,
    Attached are the VIs that make me crazy.
    The problem is simple, Creat fake signal creats datas and uses a strict type def control (cluster) then this cluster is flatten to a string and written into a text file.
    Test read opens one of that file and unflatten the datas with the same stric type def. There is the problem it does not work!
    If I wire a cst arry into the data terminal of the bundle by name, then there is no problem. By if I wire other array it does not work always... It seems random.....
    I hope that somebody can help me. Even people reproducing the error are welcome, to know if it comes from my computer.
    Thanks a lot for the help
    Attachments:
    vis.zip ‏43 KB

    I changed the write to binary sting file with write to binary file and it seemed to fix the problem. I had to change it in your gen fake data file too.
    Tim
    Johnson Controls
    Holland Michigan
    Attachments:
    vis.zip ‏44 KB

  • Strange crash with photos from Picassa

    I came across a problem today that I can't explain. When I download photos from a specific site on picassa and each time i imported them into iphoto it crashed. I received the same photo from the person who put the photos up and it was fine but when I downloaded the photo onto my desktop from Picassa and then dropped onto iphoto it crashed. when i resized the photo in photoshop and saved it it was fine and when i imported a different file, a large tiff file that was fine.
    I'll post a part of the crash log if anyone can see something I can't.
    Thanks
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Parent: WindowServer [62]
    Version: 6.0.5 (6.0.5)
    Build Version: 2
    Project Name: iPhotoProject
    Source Version: 3160000
    PID: 355
    Thread: 9
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x0000000c
    Thread 0:
    0 libSystem.B.dylib 0x9000ab48 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000aa9c mach_msg + 60
    2 com.apple.CoreFoundation 0x907dcb78 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907dc47c CFRunLoopRunSpecific + 268
    4 com.apple.HIToolbox 0x93208740 RunCurrentEventLoopInMode + 264
    5 com.apple.HIToolbox 0x93207dd4 ReceiveNextEventCommon + 380
    6 com.apple.HIToolbox 0x93207c40 BlockUntilNextEventMatchingListInMode + 96
    7 com.apple.AppKit 0x936eaae4 _DPSNextEvent + 384
    8 com.apple.AppKit 0x936ea7a8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    9 com.apple.AppKit 0x936e6cec -[NSApplication run] + 472
    10 com.apple.AppKit 0x937d787c NSApplicationMain + 452
    11 com.apple.iPhoto 0x0000b05c 0x1000 + 41052
    12 com.apple.iPhoto 0x0000af04 0x1000 + 40708
    Thread 1:
    0 libSystem.B.dylib 0x90049ea8 syscallthreadswitch + 8
    1 com.apple.Foundation 0x929795d0 +[NSThread sleepUntilDate:] + 152
    2 com.apple.AppKit 0x93787a10 -[NSUIHeartBeat _heartBeatThread:] + 1100
    3 com.apple.Foundation 0x92961194 forkThreadForFunction + 108
    4 libSystem.B.dylib 0x9002b508 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9005b660 accept + 12
    1 com.apple.iPhoto 0x001e309c 0x1000 + 1974428
    2 com.apple.iPhoto 0x0022f080 0x1000 + 2285696
    3 com.apple.iPhoto 0x0022f114 0x1000 + 2285844
    4 libSystem.B.dylib 0x9002b508 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9001f08c select + 12
    1 com.apple.CoreFoundation 0x907ef40c __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002b508 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x90054ae8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90071168 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bf5500 TSWaitOnSemaphoreCommon + 176
    3 ...ickTimeComponents.component 0x98b817c4 ReadSchedulerThreadEntryPoint + 5300
    4 libSystem.B.dylib 0x9002b508 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9002bbc8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x900306ac pthreadcondwait + 480
    2 com.apple.iPhoto 0x001efa50 0x1000 + 2026064
    3 com.apple.iPhoto 0x0021b64c 0x1000 + 2205260
    4 com.apple.iPhoto 0x000cbe38 0x1000 + 831032
    5 com.apple.iPhoto 0x000cfc90 0x1000 + 846992
    6 ...ple.CoreServices.CarbonCore 0x90bf763c InvokeDeferredTaskUPP + 24
    7 com.apple.iPhoto 0x0021b390 0x1000 + 2204560
    8 libSystem.B.dylib 0x9002b508 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x9002bbc8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x900306ac pthreadcondwait + 480
    2 com.apple.iPhoto 0x00219fb8 0x1000 + 2199480
    3 com.apple.iPhoto 0x001ef380 0x1000 + 2024320
    4 com.apple.iPhoto 0x001ef4c8 0x1000 + 2024648
    5 com.apple.iPhoto 0x0021b31c 0x1000 + 2204444
    6 libSystem.B.dylib 0x9002b508 pthreadbody + 96
    Thread 7:
    0 libSystem.B.dylib 0x9002bbc8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x900306ac pthreadcondwait + 480
    2 com.apple.iPhoto 0x00219fb8 0x1000 + 2199480
    3 com.apple.iPhoto 0x001ef380 0x1000 + 2024320
    4 com.apple.iPhoto 0x001ef4c8 0x1000 + 2024648
    5 com.apple.iPhoto 0x0021b31c 0x1000 + 2204444
    6 libSystem.B.dylib 0x9002b508 pthreadbody + 96
    Thread 8:
    0 libSystem.B.dylib 0x9002bbc8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x900306ac pthreadcondwait + 480
    2 com.apple.iPhoto 0x00219fb8 0x1000 + 2199480
    3 com.apple.iPhoto 0x001ef380 0x1000 + 2024320
    4 com.apple.iPhoto 0x001ef4c8 0x1000 + 2024648
    5 com.apple.iPhoto 0x0021b31c 0x1000 + 2204444
    6 libSystem.B.dylib 0x9002b508 pthreadbody + 96
    Thread 9 Crashed:
    0 com.apple.ColorSync 0x91550f34 CheckValidProfile + 16
    1 com.apple.ColorSync 0x91551d94 CMCloseProfile + 24
    2 com.apple.iPhoto 0x001a200c 0x1000 + 1708044
    3 com.apple.iPhoto 0x001a2498 0x1000 + 1709208
    4 com.apple.iPhoto 0x0012dfbc 0x1000 + 1232828
    5 com.apple.iPhoto 0x000cfa60 0x1000 + 846432
    6 ...ple.CoreServices.CarbonCore 0x90bf763c InvokeDeferredTaskUPP + 24
    7 com.apple.iPhoto 0x0021b390 0x1000 + 2204560
    8 libSystem.B.dylib 0x9002b508 pthreadbody + 96
    Thread 10:
    0 libSystem.B.dylib 0x90054ae8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90071168 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bf5500 TSWaitOnSemaphoreCommon + 176
    3 ...ple.CoreServices.CarbonCore 0x90bfffa8 AIOFileThread(void*) + 520
    4 libSystem.B.dylib 0x9002b508 pthreadbody + 96
    Thread 9 crashed with PPC Thread State 64:
    srr0: 0x0000000091550f34 srr1: 0x000000000200f030 vrsave: 0x0000000000000000
    cr: 0x24422444 xer: 0x0000000020000003 lr: 0x0000000091551d94 ctr: 0x0000000091551d7c
    r0: 0x0000000000000000 r1: 0x00000000f01928b0 r2: 0x00000000a474ff1c r3: 0x0000000000000004
    r4: 0x0000000000000048 r5: 0x000000000000008c r6: 0x00000000ffffffff r7: 0x0000000000000002
    r8: 0x0000000000000000 r9: 0x0000000000000001 r10: 0x000000009474d970 r11: 0x000000000046af30
    r12: 0x0000000091551d7c r13: 0x0000000000000000 r14: 0x0000000000000000 r15: 0x0000000000000000
    r16: 0x0000000024420422 r17: 0x00000000004a0000 r18: 0x00000000004a0000 r19: 0x0000000005021eb0
    r20: 0x00000000063246c0 r21: 0x00000000070c6e30 r22: 0x0000000000000000 r23: 0x0000000005022ba0
    r24: 0x0000000006359710 r25: 0x00000000050200d0 r26: 0x0000000000000006 r27: 0x0000000000000001
    r28: 0x0000000000000000 r29: 0x00000000007315e8 r30: 0x0000000000000004 r31: 0x0000000000731614

    Derek
    This looks like a version of the Color Profile bug that afflicts iPhoto since the last update to it and Quicktime.
    The crash is at thread 9
    Thread 9 Crashed:
    0 com.apple.ColorSync 0x91550f34 CheckValidProfile + 16
    1 com.apple.ColorSync 0x91551d94 CMCloseProfile + 24
    This thread
    http://discussions.apple.com/thread.jspa?messageID=3450321&#3450321
    Has a link to Mr. Old Toad's script that will embed the correct colour profile on the file/s.
    Regards
    TD

  • Strange happenings with 4.1.185

    Since moving to 4.1.185 I've started seeing a lot of these messages in my log:
    MAX_EAP_IE_RETRIES_REACHED: Reached Max EAP-Identity Request retries (21) for STA00:19:7e:42:a4:fc
    AND
    Oct 15 14:31:01.055 dtl_net.c:1210 DTL-1-ARP_POISON_DETECTED: STA [00:11:f5:1b:93:15, 0.0.0.0] ARP (op 1) received with invalid SPA 172.XX.XXX.XXX/TPA 172.XX.XXX.X
    I also get some clients that, although still connected to the AP, aren't able to ping their gateway or get anywhere else. The have to do a "repair" with Windows WZC to get working again. Anyone got any ideas?

    What is happening is that the clients are trying to do an authentication request. That request is proxied and handed up to the authentication authority (RADIUS). If the the controller does not get the response in the alotted time it will resend the request. After a certain number of requests it will fail giving you this error. The default setting for this response time is 2 seconds. Two seconds in not enough time for the transaction to take place in several different EAP configurations. Cisco suggests you move to 12 but I agree with the other poster. 30 is good number. This is quite frequently the problem when users have to type in a name and password. I am betting that when you upgraded code it reset the value for EAP timeouts back to 2 seconds. That is probably why you are seeing it now.

  • Strange happenings, ooh er?

    G4 PowerMac
    Dual 1.42 GHz processor
    GB DDR SDRAM
    OS X 10.4.11
    Strange happenings with my beastie! Recently switching on to network my home set up and anticipating the perennial problem this G4 has in holing configurations, I opened system preferences. But instead of seeing the usual icons representing features in the various categories, the majority look like dog eared pages nailed to a board with pins top left and bottom right and a mini icon over the left bottom; the top right corner forming the dog ear? How do I change them back - and what has happened to cause this? I mean, I haven’t altered any settings; the only chore this mac is used for is down loading images from my camera and maybe exporting them across my network.

    At this point I think you should get Applejack...
    http://www.versiontracker.com/dyn/moreinfo/macosx/19596
    After installing, reboot holding down CMD+s, (+s), then when the DOS like prompt shows, type in...
    applejack AUTO
    Then let it do all 5 of it's things.
    At least it'll eliminate some questions if it doesn't fix it.
    The 5 things it does are...
    Correct any Disk problems.
    Repair Permissions.
    Clear out Cache Files.
    Repair/check several plist files.
    Dump the VM files for a fresh start.

  • Who worked with ICS' Model 4896 GPIB? I can not count the data from the module. Can prompt as it to make. It is desirable with examples (data read-out from the module and data transmission between channels. It is in advance grateful.

    I can not count the data from the module. Can prompt as it to make. It is desirable with examples (data read-out from the module and data transmission between channels. It is in advance grateful.

    Hello. Most of the engineers in developer exchange are more familiar
    with NI products. Contacting ICS for technical support is a better
    course of action.

  • Hey, i have very strange prob with my iphone 5(latest version/updated), after resetting it, so it doesn't connect to my laptop, even it doesn't charge too. it does charge from wall charger i try all the possible methods but still i am facing the prob

    Hey, i have very strange prob with my iphone 5(latest version/updated), after resetting it, so it doesn't connect to my laptop, even it doesn't charge too. it does charge from wall charger i try all the possible methods but still i am facing the prob any fix/solution for it.. Helppppp!!!!!!!!!!!!!!!!!!!!!!!! As soon as possible, it will be gratefulness,
                                Thnksssssss....

    So you are saying that you followed all of the steps in the support document for problems with connection, including removing and reinstalling iTunes? You do not say what you have tried, so it is hard to make recommendations. If this is the case, then you have tried resolving driver issues? What if you go to Device Manager and look for the iPhone. You should be able to click on it and see about drivers. You can update/reinstall the device driver.

  • FM to read files starting with TEST(for example) from Unix server

    Hi all,
    Is there a FM to read all the files which start with TEST (for example) from the Unix server?
    Requirement is if we put TEST* in the selection screen for the filename, it should read all the files which start with TEST from the default Unix path.
    Thanks and regards,
    Anishur

    Function Modules
    http://www.erpgenie.com/abap/functions.htm
    http://www.sapdevelopment.co.uk/fmodules/fmssap.htm
    http://www.erpgenie.com/abap/index.htm
    http://www.geocities.com/victorav15/sapr3/abapfun.html
    Rewards if useful.........
    Minal

Maybe you are looking for

  • Multiple row selection & Send Email Code ? Need littel Help

    Dear All, I managed to insert a code which will enable me to select multiple rows (Artikel from the great Yann Duran), i also have a code which enables me to send a mail for each selected row (only one row). But now since I was able to select more ro

  • Export/import portal favorites

    Hi, we have NW2004 Portal SP16.  Is it possible to export/import portal favorites between users?  The reason I asked is that we are planning on using 2 LDAP data sources in production and some users will be migrated in Active Directory from companyA.

  • Airplay itunes denon avr-x3000

    I have a problem with Itunes on my Macbook Pro, after I changed the router from Netgear CG3100 to a Netgear CG3700, you will see it with "unknown error occurred (-6700)" when I try to connect to Airplay in Itunes ... On my old router it worked fine,

  • Can't uninstall Photoshop CC without uninstalling PS CC 2014

    When I go to uninstall PS CC the uninstall wizard from adobe also checks PS CC 2014 to be uninstalled. And there doesn't seem to be a way to uninstall just the older version. Is anyone else having this issue?

  • What is dba's responsibility regarding the ORA-00060: Deadlock

    sorry it is a general question, but didn't find answer in google. what normally dba do when there are ORA 060 errors?