Local adjustement strange behavior. Bug ?

Hallo,
     Whilte retouching picture from a wedding I got some strange behavior. I wanted to hightlight the couple using local adjustement / Brightness.
But the result get "noisy". Look at the screenshot.
More about the picture:
  Very low light, EOS 5D Mark II, 3200 ISO, RAW/CR2
     Any opinion ?
     Regards

If it doesnt help, can you provide a different photo that has the same behavior happening. It's hard to tell what's going on with the one that you provided

Similar Messages

  • Creating Albums in A2: Strange behavior, bug or operator error

    I've just bought A2 and imported my 13,000 photos into it. They are imported as "referenced masters". On disk, my photos are arranged in folders by year, month and day that the pictures were taken:
    Photos/
    ....2008/
    ....2007/
    ........01/
    ........05/
    ........10/
    ............IMG1.NEF
    ............IMG2.NEF
    ............IMG3.NEF
    The only way to import directories of photos into A2 is "Import folders as projects" (It seems like you should be able to just import all the photos in a directory tree, but apparently you can't. Why not?)
    Anyway, so now I have a bunch of projects, one for each year. Then folders for each month and albums for each day. This is only mildly useful since I could create smart albums, but... (Is there a way to get rid of the projects without losing the photos? Can I delete them all and leave the photos in my library?)
    Anyway, the next thing I wanted to do was to create some folders of albums of my photos. I'm a hobbiest and I take most of my photos when I travel. I wanted to create an album for each "trip" I went on. So, for example, I went to Southeast Asia in October of 2004.
    I created a (root level) folder called "Trips". Then I created an album called "Southeast Asia 2004". I selected the folder named "10" (i.e. October) in project "2004" and selected all the photos. (I apparently hadn't taken any other pictures in October 2004 besides what I had done on my trip). I dragged the selection to my new album and saw a "+" icon (as if to say "add these photos to this album"). When I released the mouse button, it did nothing. I couldn't add the photos to my album.
    After screwing around for a while, I found that I could not add photos to an album unless I selected them from a higher level in the project tree. So if I created my album as a child of 2004, I couldn't add photos selected from 2004/10. But I could add them if I selected them from within 2004. Similarly, I couldn't add photos to my album at Trips/SoutheastAsia unless I selected them from "All Photos" under "Library."
    Maybe I'm not understanding what folders and projects are /supposed/ to be. But this doesn't make sense to me. Is this intentional? Is it a bug? Can someone explain the reasoning behind this -- or tell me what I am doing wrong?
    Thanks!
    tim

    Aarrgghh. I know part of the problem is that I don't quite grok Aperture's model yet. But, still, something is not right.
    I had created a new project called "Trips". In that project I created an album. If I selected photos from the "All Photos" smart album, I could put them in that album in that other project. But the photos still weren't in that other project. Just the album. This seems wrong, but I'm not sure.
    So, instead of creating a project called Trips, I created a top-level folder. In that, I created an album for my one trip. Once again, I could select photos from another project. When I dragged them to the new album, I got a green "+". But when I dropped them, nothing happened. But, if I drag them from "All Photos" it works.
    That can't be right. If I can put photos from any project into an album, I should be able to do it from anywhere. If I can't, I shouldn't be able to do it from "All Photos." If anyone knows which is right, let me know. Also, if anyone knows how to file a bug, let me know -- I will file this one with a good use case description.
    Thanks,
    tim

  • Linking to local files - strange behavior

    Hi all,
    when I insert a link to a local file (using Insert > Hyperlink and then selecting "File" in the dropdown list), then Robohelp changes the absolute path to a relative path when saving the topic. Naturally this link does not work in a CHM.
    I can resolve the issue in the HTML view by changing the path back to an absolute reference such as:
    file://C:/Test/Hello_World.htm 
    Such a link works in the CHM. However, I cannot get it to work in the TOC. I have checked the HHC and can verify that the path still is absolute there, yet the page does not open when clicked.
    Any ideas?
    Robert

    Hi Robert
    This is one purpose or reason you would use Baggage Files.
    Add the file you are linking to as a Baggage File and link to the baggage file.
    This may also have issues inside a CHM output though. But before we delve into the possible issues, give it a try and see if it works for you. It may work straight away. If so, that's great. But if you start seeing issues, post back for more help.
    Cheers... Rick

  • Strange behavior with Zoom and Image control

    HELP - I have a strange behavior (bug?) with using Zoom
    effect on an Image that has been placed on a Canvas. I am using
    dynamically instantiated images which are placed on a canvas inside
    a panel. I then assign a Zoom IN and Zoom Out behavior to the
    image, triggered by ROLL_OVER and ROLL_OUT effect triggers. THE BUG
    is that the image jumps around on the Zoom OUT and lands on a
    random place on the canvas instead of coming back to the original
    spot. This is especially true if the mouse goes in and out of the
    image very quickly. HELP -- what am I doing wrong? Computer = Mac
    OS X 10.4.9 Flex 2.0.1
    Here's a simple demo of the bug -- be sure to move the mouse
    in and out rapidly:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute" creationComplete="setUp();">
    <mx:Script><![CDATA[
    import mx.events.EffectEvent;
    import mx.effects.Fade;
    import mx.effects.Zoom;
    import mx.rpc.events.ResultEvent;
    import flash.display.Sprite;
    import mx.core.UIComponent;
    import mx.controls.Image;
    private var zoomIn:Zoom;
    private var zoomOut:Zoom;
    private function setUp():void {
    var image:Image = new Image();
    image.id = "album_1_1";
    image.x = 200;
    image.y = 200;
    image.width = 64;
    image.height = 64;
    image.source = "
    http://s3.amazonaws.com/davidmccallie/album-128.jpg";
    image.addEventListener(MouseEvent.ROLL_OVER, doZoom);
    image.addEventListener(MouseEvent.ROLL_OUT, doZoom);
    myCanvas.addChild(image);
    zoomIn = new Zoom();
    zoomIn.zoomHeightTo = 2.0;
    zoomIn.zoomWidthTo = 2.0;
    zoomIn.captureRollEvents = true;
    zoomIn.suspendBackgroundProcessing = true;
    zoomOut = new Zoom();
    zoomOut.zoomHeightTo = 1.0;
    zoomOut.zoomWidthTo = 1.0;
    zoomOut.captureRollEvents = true;
    zoomOut.suspendBackgroundProcessing = true;
    private function doZoom(event:MouseEvent):void {
    var image:Image = Image(event.currentTarget);
    if (event.type == MouseEvent.ROLL_OVER) {
    zoomIn.target = event.currentTarget;
    zoomIn.play();
    } else if (event.type == MouseEvent.ROLL_OUT) {
    zoomOut.target = event.currentTarget;
    zoomOut.play();
    ]]>
    </mx:Script>
    <mx:Panel width="100%" height="100%"
    layout="absolute">
    <mx:Canvas id="myCanvas" width="100%" height="100%">
    </mx:Canvas>
    </mx:Panel>
    </mx:Application>

    There must be bugs in the Zoom effect code -- I changed the
    Zoom to Resize in the above code, and it works perfectly. Of
    course, Resize is not as nice as Zoom because you can't set the
    resize to be around the center of the image, but at least it works.
    Does anyone know about bugs in the Zoom effect?

  • Strange behavior of LR3 local adjustment brush

    Lately, it seems that LR3 (Mac) is acting strange when doing local adjustments. When using the adjustment's brush, the area being "painted on", i.e., adjustments, a square area centered on the cursor position is shaded a bit darker than the area not covered by the brush. What gives?
    dds

    Hi,
    dsteinauer wrote:
    Lately, it seems that LR3 (Mac) is acting strange when doing local adjustments. When using the adjustment's brush, the area being "painted on", i.e., adjustments, a square area centered on the cursor position is shaded a bit darker than the area not covered by the brush. What gives?
    dds
    I have had similar problems with 3.2 and also (while doing local adjustments)
    - rectangular areas of the image suddenly duplicated elsewhere in the image
    - whole image flipped upside down while painting with the local adjustment brush
    Using Undo always put back the image in a normal state (the state it was before starting to apply the last local adjustment).
    I have not seen this in 3.3 (final release) until now but I didn't use it much since it has been made available.
    NB: (before someone asks) Yes, I do have the latest NVidia driver installed.

  • Photoshop CS6: ACR Local Adjustment Slider Settings Retained Even When Cancelling Out of ACR

    I've come across something in Photoshop CS6's ACR 7.2, which I don't think for a moment is a bug, but just what I would consider a slightly strange way of how Photoshop CS6 behaves:
    When working on an image in ACR, if you select one of the local adjustment tabs, such as Graduated Filter, and move any of the sliders on the right-hand side, any values you change will be retained if pressing 'Cancel', then opening the image again in ACR and selecting the same tab. I find this surprising, as I would have thought that by pressing 'Cancel', any adjusted settings, since opening the image on this occasion in ACR, would not be retained.
    Furthermore, if you open another image in ACR and select the same local adjustment tab, the same settings that you adjusted in the other image have identical slider settings in that image as well.
    I can see that this behaviour could be viewed as useful, i.e. when wanting to use the same local adjustment on multiple images, as any adjustment of the local adjustment's slider settings, on their own, will have no effect unless you actually perform the selected local adjustment to the image. But, as I say, I would have expected Photoshop to simply not retain any settings you have adjusted, since opening the image on this occasion in ACR, if you don't press 'Open Image' or 'Done', and simply press 'Cancel'.
    Does anyone have any thoughts about this?

    Clearly since those settings are not actually going into the image, but are just preparation for the next pin to be dropped by the local adjustment brush (or are further adjustments done on the last pin selected), Adobe didn't see fit to revert them on Cancel.
    That said, I have to agree; if I were to botch up a bunch of settings I had before and wanted to revert them all, the first thing that would come to my mind is to hit the [Cancel] button.
    I wonder if the disparity between the ways Apple and PC software typically interacts with the user could be at the heart of this...  On PC, adjustments in a dialog are generally "staged" until an [OK] button is hit, so of course [Cancel] throws them away - while on Apple adjustments are often (by convention?) stored permanently as soon as the control is released.
    -Noel

  • Copy and paste adjustment  problem/ possible bug.

    Hi all
    I have just encountered a very strange problem/ possible bug.
    I have been working on a file in photoshop cs5 that had come from lightroom 5.3. This was then saved (automaticaly becomes tiff file in Lightroom). I then wanted to make some more adjustments to it in lightroom (using local adjustment clarity). I then tried to copy the settings of the adjustment brush  from the tiff to the original raw file. This is where it gets very strange. The adjustments are copied but they are rotated ccw by 90 degrees!  I can replicate this every time.
    Could someone else try to see if this problem exists on their catalogs or if its a corrpution problem my end.

    Noted on the bug, thanks.
    1762hd wrote:
    Hi Geoff
    Heres the summary for bug report - please note this bug also affects radial filter/healing brush and crop
    Scenario
    1 open a portrait raw image in photoshop using render using lightroom (I am using cs5)
    2 back in lightroom make a change using the - adjustment brush/ radial filter/healing brush or crop - to the newly created tiff image.
    3 copy and paste this adjustment to the original raw file.
    problem
    all effects are rotated.

  • Wacom Tablet Pen Pressure stops working in Photoshop after using Lightroom Local Adjustment Brush

    Hi all,
    I am experiencing a problem with my Intuos Pro Medium (driver 6.3.9w3 on Windows 8.1)
    I am using Lighroom 5.6 and Photoshop CC 2014.
    I an get the pen pressure to work in Photoshop without any problem. However, if I go into Lightroom and use the Local Adjustment Brush and then transfer the photo into Photoshop (Right Click Edit In => Edit in Adobe Photoshop 2014 CC) then the pen pressure stops working in Photoshop.
    Really frustrating... The only workaround is to close both Photoshop and Lightroom, then reopen Photoshop, then usually the Pen pressure feature starts working again.
    Has anyone experienced this before or has any idea how to fix this?
    Thanks,
    Guillaume

    Your tablet driver isn't reporting pressure correctly.
    The knockoff tablet drivers usually need to be revised for each new version of Photoshop (and we have no idea why).
    Contact your tablet maker to see if they have updated drivers to fix their bugs.

  • Strange boot bug; open firmware not working

    Hi!
    I have a powerbook Alu 15", 1.5Ghz. It runs OS X 10.4.2 with the latest security update. My problem started last Saturday.
    The problem is that my pb will not restart nor boot on its own. The computer makes its usual chime, the hard-disk starts to spin for a few second, and then stops suddenly before anything is displayed on the screen (the display does not even light-up). If I press the option key after or before the chime, and keep it pressed, or the shift key, or the c key, or the t key, or the command-option-p-r key combination, or even the command-option-o-f key combination, the behavior is exactly the same: the disk starts to spin for a few second after the chime, and suddenly halts. The computer appears to shutdown on its own before the boot can even start.
    Here is the strange part: the computer boots normally if I press the command key (this key on its own is not suppose to do anything). It also works if I press the command-s or command-v key combination. No other key combination seem to work.
    Except for this strange boot behavior, the computer works flawlessly. I did not have any kernel panic for at least a year, the computer did not crash recently, everything works fine except for one small detail on which I will come back at the end.
    I've tried to fix the problem by the following actions:
    1) Clean install of Tiger with a new partitioning of the disk; I even zeroed the entire disk. This did not change anything so the problem is probably not OS related.
    2) Reset of the PMU with the four finger salute: shift-control-option-power combination. No effect except that I lost the date/time information. Hence the reset worked.
    3) Tried to reset the PRAM, but the command-option-p-r key combination does not seem to work.
    4) Tried to load the open firmware with command-option-o-f, but this does not work either.
    5) Memory seems ok. I have 1x256M of Apple RAM + 1x1G of RAM bought from OWC. I've had the OWC RAM for about a year without any problem. Anyway, I removed the 1G module and tried to boot on the 256M Apple module alone. Exact same behavior. Then I removed the Apple module and put back the 1G module. Exact same boot behavior. So the problem is not with my RAM, unless both modules have simultaneously developed a malfunction.
    6) Tried to run the Apple hardware tests. However, for my machine, these tests come on the install DVD, in a special hidden volume. To boot on this special volume, one needs to boot with the option key depressed, and to select the boot volume from the open firmware interface. But this does not work on my machine, the computer seems to shut down before this interface can be activated!
    So this problem is very strange. I can live with having to press the command key for booting my machine, but I would sure like to know what is going on here. Is the problem hardware related? Perhaps, but as I said, the machine works flawlessly except for the strange boot behavior.
    Is the problem related to firmware? I think that this is the most probable option. What do you think? Maybe, the firmware got slightly corrupted? Maybe a bit got flipped in the flash memory? Is this possible? I guess so. But, what can I do? Should I contact my friendly local repairman?! I have to admit that this option scares me a little bit for such a strange problem. I would need an Apple engineer with boot related experience/expertise!
    Now, here is a little bit of further information. I don't know if its related, but it is also very strange. I work with a dual screen configuration. Usually, I connect my screen and then I wake up the computer. Last week, I noticed that if I connect my second screen live, the system detects it automatically. I guess this is new to Tiger? Anyway, the strange behavior is that the computer then asks me if I want to sleep, restart or shutdown my pb, as if I had pressed the power button. But I did not press this button when I connected the dvi connector >:-o
    Many thank

    Hi Scott!
    Almost every time the PowerBook woke after sleep, I got the 'Are you sure you want to shut down your computer now...' message.
    I get this message upon wake only rarely, but every time I plug or unplug a display live.
    The strange behaviour was tolerable, so I've lived with it for several months. But then when checking out the PowerBook discussions, I read about the failing lower RAM slot problems, and just out of interest, checked out my System Profiler....
    Ok, so the good news is that my pb may continue to work for several months
    My lower RAM slot appears to be ok for now.
    Interestingly, I'm sure that the start-up problems began when I started using my PowerBook with a 23" Apple Cinema Display (a pink hued one, but that's another on-going saga) - and you too have mentioned that you use an external display, so I wonder if that's part of the cause of our start-up problems.
    Yes, I've noticed the 'Are you sure you want to shut down your computer now...' message just a few days before noticing the strange boot problem (not sure if the machine booted in between). I use ViewSonic displays (one at home and one at the office), and several different projectors in different class rooms. From what I read, it is plausible that there is a link between this problem and the dvi port. Could it be that the boot sequence of mb is affected by a hardware problem on the dvi port? But not when a press the command key?!
    Anyway, my machine is no longer under warranty, so I intend to live with the problem for as long as possible...
    But I've been doing more regular backups since then.
    Best wishes to you and your (almost) new machine!
    Marc.

  • Strange Behavior with gMSA in Server 2012 R2

    Greetings,
    I have been doing some testing with gMSA Accounts in a Server 2012 R2 environment (two separate environments, actually), and I have noticed something very strange that occurred in both environments, which does not appear to be occurring in one of our customer's
    self-managed environments.
    We created a Group Managed Service Account using the following article:
    http://blogs.technet.com/b/askpfeplat/archive/2012/12/17/windows-server-2012-group-managed-service-accounts.aspx
    Everything went smoothly, and the account installs/tests successfully on both of the hosts that we are testing on. I am able to set my services to run under the account, and most of them appear to work fine. I am having some issues with a few of my services,
    and I believe that the strange behavior I am seeing may have something to do with this - described below: 
    As soon as I set the service's Log On Account (via the Log On Tab under the Service's Properties), the entirety of the "Log On" tab changes to "greyed out," and I am unable to change the Log On account back via the GUI (Screenshot
    attached).
    I found that I am able to successfully change the account via Command Line using sc.exe, but the Log On tab remains greyed out! So far, I have found nothing to remedy this, but confirmed that it happens for any service I set to use the gMSA as the Logon
    Account, and that it happens in 2 separate test environments, but not in a Customer's production environment - very strange.
    All servers in this environment are running Server 2012 R2, and domain Functional Level is currently Server 2012.
    I have been unable to find any information online about this behavior, so I am hoping someone has seen this before, and can explain why this is happening.
    Nick

    VIvian,
    Yes, we used the Install-AdServiceAccount gMSA command on each host using the gMSA account, and then ran Test-AdServiceAccount gMSA, which returned "True."
    However, one thing I noticed is that if I run Test-ADServiceAccount gMSA as a Local Administrator, it fails with the following:
    PS C:\Users\Administrator> Test-AdServiceAccount gMSA$
    Test-AdServiceAccount : The server has rejected the client credentials.
    At line:1 char:1
    + Test-AdServiceAccount gMSA$
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : SecurityError: (:) [Test-ADServiceAccount], AuthenticationException
        + FullyQualifiedErrorId : ActiveDirectoryCmdlet:System.Security.Authentication.AuthenticationException,Microsoft.A
       ctiveDirectory.Management.Commands.TestADServiceAccount
    If I run Test-ADServiceAccount gMSA as Domain Administrator, it returns true:
    PS C:\Users\Administrator.<domainname>> Test-AdServiceAccount gMSA$
    True
    Is this normal?
    Overall, I think the issue I am running into is at the Application Level, and not a problem with the gMSA, as it appears to be working. (Can Start/Stop services without any issues). I will be investigating my issue further with 3rd-party vendors, unless
    you think there is something wrong with my gMSA accounts based on the information I have provided.
    Nick

  • Report FP_TEST_00 - Strange behavior

    Hello Gurus,
    A strange behavior with report FP_TEST_00 occurs:
    SA38 --> FP_TEST_00 --> select a device --> execute --> print preview then and error or popup is show:
    Adobe Reader
    Error initializing the font server module
    Then the SAP GUI is closed, I check the ST22 and no dump is generated and in transaction SM21 only appear:
    DP  Q0  4 Connection to user 551 (ADMIN ), terminal 86 (HUSVP-SAP-BA) lost
    DP  Q0  I Operating system call recv failed (error no. 232 )
    The #1 log entry: *
    Details Page 2 Line 28 System Log: Local Analysis of sapdev                   1
    Time     Type Nr Clt User TCode Grp N Text
    11:37:20 DP                     Q0  4 Connection to user 551 (ADMIN ), terminal 86 (HUSVP-SAP-BA) lost
    Connection to user 551 (ADMIN ), terminal 86 (HUSVP-SAP-BA) lost
    Details
    Recording at local and central time........................ 25.02.2010 11:37:20
    Task...... Process    User...... Terminal Session TCode Program Cl Problem cl         Package
    11092      Dispatcher                                           K  SAP Web AS Problem STSK
    Further details for this message type
    Module nam Line Error text..........              Caller.... Reason/cal
    dpxxdisp   1223 551  ADMIN       86  HUSVP-SAP-BA DpRTmPr    NiBufRe
    Documentation for system log message Q0 4 :
    The SAP Dispatcher (part of the application server) has lost the
    connection to a terminal process.  For example, this happens when the
    terminal program (GUI) terminates without correctly logging off the
    application server.  More detailed information about the error
    context is not available here.
    Technical details
    File Offset RecFm System log type             Grp N variable message data
       21 254340 m     Error (Function,Module,Row) Q0  4 551  ADMIN       86  HUSVP-SAP-BA     DpRTmPrNiBufRedpxxdisp1223
    The #2 Log show: *
    Details Page 2 Line 29 System Log: Local Analysis of sapdev                   1
    Time     Type Nr Clt User TCode Grp N Text
    11:37:20 DP                     Q0  I Operating system call recv failed (error no. 232 )
    Operating system call recv failed (error no. 232 )
    Details
    Recording at local and central time........................ 25.02.2010 11:37:20
    Task...... Process    User...... Terminal Session TCode Program Cl Problem cl         Package
    11092      Dispatcher                                           K  SAP Web AS Problem STSK
    Further details for this message type
    Module nam Line Error text        Caller.... Reason/cal
    nixxi.cp   4435           recv232 NiIRead    recv
    Documentation for system log message Q0 I :
    The specified operating system call was returned with an error.
    For communication calls (receive, send, etc) often the cause of errors
    are network problems.
    It could also be a configuration problem at operating system level.
    (file cannot be opened, no space in the file system etc.).
    Additional specifications for error number 232
    Name for errno number ECONNRESET
    No documentation available for error ECONNRESET
    Technical details
    File Offset RecFm System log type             Grp N variable message data
      21 254520 m     Error (Function,Module,Row) Q0  I           recv232                     NiIReadrecv   nixxi.cp4435
    Edited by: Hernando Polania Cadena on Feb 25, 2010 8:36 PM

    Hello All,
    I applied the solution in page
    http://wiki.sdn.sap.com/wiki/display/PLM/Adobe%209%20-%20SAPGUI%20crash
    Works OK
    Thanks
    Hernando

  • Strange behavior of textareas in BPEL Worklist (10.1.2)

    I have a very strange behavior with linebreaks in all my <textarea>s in the BPEL-Worklist-jsps: (they work fine as <INPUT>s
    Example:
    Default-text:
    line1
    I update the textarea to:
    line1
    line2
    -> hit update
    line1
    *** (second line is completly missing)
    -> hitting update again (no change in text)
    line2line1
    *** (all on one line with the new line in front)
    As Value I use:
    <%=PayloadFormGenerator.selectNodeValue(payload, "/ns0:task/ns0:payload/ns1:abstract", form.getNamespaceMap(),"string", context.getLocale())%>
    and as mentioned: It works fine for <INPUT>.
    What do I do wrong? Is this a bug?
    Daniel
    Message was edited by:
    user552073

    Had the same problem, could not get it to be consistent. I would say this is a bug, but decided to edit payloads via the database in the end...

  • Strange behavior of "Partial message encryption "  in OWSM

    Strange behavior of “Partial message encryption “  in OWSM
    If message format is like this
    <cban:transferFund xmlns:cban="http://cbank.com">
    <cban:arg0>string</cban:arg0>   
    <cban:arg1>string</cban:arg1>   
    </cban:transferFund>
    Then body element configuration in message encryption setting
    Name space  http://cbank.com
    Element arg0
    is working fine
    But my requirement is for below message
    <cban:transferFund xmlns:cban="http://cbank.com"> <!--Optional:-->    <
    <arg0>string</arg0>   
    <arg1>string</arg1 >
    </cban:transferFund>
    For this
    Name space : http://cbank.com
    Element : I tried all possible combination but none is working
    I tried these
    :arg0
    //:arg0
    //cban:arg0
    //cban//arg0
    cban:arg0
    With Regards
    Siddharth

    Had the same problem, could not get it to be consistent. I would say this is a bug, but decided to edit payloads via the database in the end...

  • Strange Behavior connecting to Oracle

    Hi to All,
    On Server Windows 2003 I have installed Oracle 10g R2. On this Server run Toad for Oracle.
    If I run Oracle console, all work fine; running Toad the ORA-12154 error is displayed.
    I have tried to connect to DB with Toad from a client and all works.
    Have someone an idea on this strange behavior ?
    Thank You and Best Regards
    Gaetano

    This may be a problem?NO!
    12154, 00000, "TNS:could not resolve the connect identifier specified"
    // *Cause:  A connection to a database or other service was requested using
    // a connect identifier, and the connect identifier specified could not
    // be resolved into a connect descriptor using one of the naming methods
    // configured. For example, if the type of connect identifier used was a
    // net service name then the net service name could not be found in a
    // naming method repository, or the repository could not be
    // located or reached.
    // *Action:
    //   - If you are using local naming (TNSNAMES.ORA file):
    //      - Make sure that "TNSNAMES" is listed as one of the values of the
    //        NAMES.DIRECTORY_PATH parameter in the Oracle Net profile
    //        (SQLNET.ORA)
    //      - Verify that a TNSNAMES.ORA file exists and is in the proper
    //        directory and is accessible.
    //      - Check that the net service name used as the connect identifier
    //        exists in the TNSNAMES.ORA file.
    //      - Make sure there are no syntax errors anywhere in the TNSNAMES.ORA
    //        file.  Look for unmatched parentheses or stray characters. Errors
    //        in a TNSNAMES.ORA file may make it unusable.
    //   - If you are using directory naming:
    //      - Verify that "LDAP" is listed as one of the values of the
    //        NAMES.DIRETORY_PATH parameter in the Oracle Net profile
    //        (SQLNET.ORA).
    //      - Verify that the LDAP directory server is up and that it is
    //        accessible.
    //      - Verify that the net service name or database name used as the
    //        connect identifier is configured in the directory.
    //      - Verify that the default context being used is correct by
    //        specifying a fully qualified net service name or a full LDAP DN
    //        as the connect identifier
    //   - If you are using easy connect naming:
    //      - Verify that "EZCONNECT" is listed as one of the values of the
    //        NAMES.DIRETORY_PATH parameter in the Oracle Net profile
    //        (SQLNET.ORA).
    //      - Make sure the host, port and service name specified
    //        are correct.
    //      - Try enclosing the connect identifier in quote marks.
    //   See the Oracle Net Services Administrators Guide or the Oracle
    //   operating system specific guide for more information on naming.This error is clear.
    SQL*Net is being asked to resolved TNS_ALIAS & it reports that it can not find the requested name.
    EITHER
    1) the requested name is not correct
    or
    2) SQL*Net is looking in the wrong tnsnames.ora file & still not finding the requested name.
    Good Luck solving your mystery

  • Strange behavior  in entity bean : get Timestamp

    Hello:
    I'm working with SUNONE 7 AppServer , over SunOS 5.9
    I've a strange behavior with entity's get methods which return Timestamp value.
    For example, I've got
    Timestamp date;
    If I do
    entity.setF(date) , ( date is a Timestamp with value "12/12/2005 12:30:00" )
    all works right, and in database is wrote right ( "12/12/2005 12:30:00" )
    But , if I do
    date = entity.getF()
    the, date variable has the value "12/12/2005 00:00:00"
    So, in get method is lost the time value of a Timestamp data
    Could be a code bug in my source , but if I use Jboss AS over Windows XP , all work right ( set and get methods ). The database is the same one ( Oracle 9i )

    Well, I found the solution.
    The problem was the ojdbc14.jar driver, which made wrong schema files.
    Exactly, with the bad ojdbc14.jar, generated this entry
    <_type>91</_type>
    when the right one for date types ( Timestamp ) is
    <_type>93</_type>
    I dont know why the new ojdbc14.jar works fine, but I paste its size
    good ojdbc14.jar : 1181679 bytes

Maybe you are looking for

  • IF THEN ELSE STATEMENT IN BeX Query designer

    Hi, I want to write a query as follows: IF <Value a> is available THEN <Value a> ELSE <Value b> I have written it as follows: (X>0)X+(X<=0)Y The problem with this equation is,  in case X = 0(number Zero) then Y is not getting displayed. But In case X

  • Numbers (and pages and keynote) doesn't open

    Hey people. once more I have an issue with my mac retina iOS Lion 10.8.2. I just downloaded Numbers 2.3 on my mac but, when I try to open it, just doesn't show anything, after that i need to force close. This is te report. I hope someone can help me,

  • IPhoto 6 and libraries

    Does anyone know if you can have more than one library with iPhoto 6? I looked at the info on Apple's site, and can't really figure it out. They say 250,000 photos -- with one library that's insane. Any ideas? Thanks!

  • Setting classpath in windows ME

    how to set it? I have placed a file "test.java" in the directory c:\test i set the classpath in Dos prompt by: set classpath=c:\test; however, the following message appear: C:\>javac test.java error: cannot read: test.java 1 error can anyone help me?

  • Kill auto-updating in Firefox 30.0?

    How can I disable auto-updating in Firefox 30.0? Then how to do it manually? (I HATE morning surprises followed by troubleshooting FF browsers on 4 laptops,) Thanks... (Lion 10.7.5)