Can anyone Reproduce This screencast? Strange behavior from Mac

https://drive.google.com/file/d/0B5LXJD4aR7maZng4cnl6Z2UxS28/edit?usp=sharing
1.  Open finder and click go
2.  go to /var
3.  click on var alias and go to at file
After you open the /var/at folder there is a file called at.deny
4.  Click on the file called at.deny and open with other application
You can only open it with Imessage, applemail or text edit.  Notice in the screen cast that it automatically sends the at.deny file to any address that I type in I message. 
5.  You can also click on chron.deny and you can send that file automatically in Imessage or applemail.  IS THIS NORMAL.
I AM PRETTY MUCH A NOVICE, BUT THIS MAC HAS SOME STRANGE BEHAVIORS.  COULD THIS BE WHAT THEY CALL A BACKDOOR????APPLE JUST SCRATCHES THEIR HEAD??????]

This is a file that is located at /var/db/caches/opendirectory/cache_mbr
Does any other mac users have this type of file

Similar Messages

  • IPhone 3G Keyboard Bug/Problem/Feature? Can anyone reproduce this?

    Hi -
    I'm now on my 3rd iPhone 3g (16GB, Black) and I'm still having trouble with it.
    As of now I cannot comment on reception/3G issues, since I have only had this particular iPhone for about an hour and a half. However, I've encountered a strange problem when trying to enter a company's name in Contacts on multiple iPhones after multiple restores from Recovery Mode.
    Please help me reproduce this and figure out if it is intended behavior or not; both the Rockaway and Bridgewater, NJ Apple Stores did not seem to know.
    Here is what I am doing:
    1) Go to contacts (via either the phone menu or the Home Screen Icon)
    2) Click the plus sign on the top right
    3) Click "First Last" as if to type in a name
    4) Click in the 3rd field, for Company
    5) Type "R.I.T.A."
    6) Hit backspace once or twice...
    What occurs is quite strange - the whole text field will sometimes delete itself, "click-click-clicking" along the way as if I am hitting backspace over and over again.
    I hope someone can shed some light on this issue.
    Thanks.
    -Scott

    sburck; I have had the same thing happen to me when drafting an email. I type several sentences and then all of a sudden it starts doing backspaces deleting characters until I stop it by hitting some letter.It has erased in this matter whole sentences before I could stop it, and has done this maybe a half dozen times. This really sounds to me to be a bug. Since there is no hard key to stick, this is most likely something in the firmware/software. I have only seen this so far when writing a email.
    The Omega

  • Can anyone reproduce this bug?

    Mac OS X 10.4.11, with an active Microsoft Remote Desktop Connection and some other windows open, the mouse-pointer disappaers when it is placed on the RDC Window and the Exposé feature "Desktop" is used...

    It would be good if you wrote the smallest possible program that exhibits this behavior.
    That would be for testing -- it's easier for you, and for other readers of this forum, to test the hypothesis that getDefaultToolkit does something weird to the JVM, on a wide variety of environments, etc. Also if it is a bug such a test program would help Sun fix it.
    You may want to try running your program with the JVM option that shows garbage collection events. Just a hunch, it may show something interesting.

  • Color wheel settings "jump" after making adjustments - can anyone reproduce?

    Hi,
    Been noticing something very odd with Speedgrade lately, and I'm pretty sure it never happened with any of the earlier versions:
    Making a large color adjustment to a clip using my Tangent CP200 panel (say, pushing the marker towards where the color ring begins), and then leaving the tab by switching to another layer, clip or even just shadows/midtones/highlights, will result in the marker having jumped MUCH further in the same direction. So if I had pushed it towards cyan on the inner edge of the color ring, the marker will suddenly find itself near the outer edge - however, the color will be unaffected until I actually move the marker again.
    At first I assumed this was due to the CP200, but it also happens with the panel unplugged and using the mouse to drag the marker. It happens consistently and seems to scale linearly with the displacement. I'm assuming that Speedgrade is "misremembering" the position of the trackball or the virtual trackball marker, not the actual color settings. This is consistent with the fact that the same effect does not occur when using slider (mouse) or editboxes (keyboard) modes UNLESS I touch the CP200. At the same time, it seems to be related to Speedgrade and not to the panel, because the effect is dependent on the number of pixels the marker is moved on the screen, not the distance traveled by the physical trackballs. It also happens both in DirectLink and standard modes.
    I've tried all the related settings, but nothing seems to apply. If this is a bug, it's pretty serious, as it makes going back for "minor adjustments" very problematic. Can anyone reproduce this, with or without a CP200?

    Having participated near daily on this forum for a couple years now, this isn't a common issue but it does happen. Please file a bug report (they do actually quantify these for choosing what to budget fixing time allocations on) ...
    Adobe Bug Report /Feature Request form ...
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    Sometimes it's been (as for you) during someone using a surface, there's been problems with Wacom tablets having this issue also, and a few people with (as I have) a Kensington track-ball they use for working the wheels. In fact, it's much more likely with a Wacom especially using the pen tool than any other input device, I think. I've never really noted if my Wacom has this issue because of the way I use my tools ... I'm a lefty, so the pen-tab is on my right, keyboard in center, Kensington "Expert Mouse" 2" trackball with surrounding ring & four large paddle-style buttons on the right. That trackball/ring gets all my color-wheel work. It was occasionally glitchy back in the CS6 release and to the dot-upgrade to the first CC release, but has been pretty stable since. I've had to re-adjust the sensitivity of the controls in Sg for every release, however.
    Neil

  • Can anyone explain this behavior and tell me how to fix it?

    Using NetBeans 6.5 on Windows, Glassfish v2.1
    I have a JSF application with a page that has a tab set.
    On one of the tabs I have a panel with company information.
    One of the components on the page is an InputText field with the value bound to a session bean variable.
    The tab also has an Add button.
    Here is what the JSP looks like for the input text and button components
       <h:inputText binding="#{MainPage.companyNameTF}" id="companyNameTF" readonly="#{SessionBean1.readOnlyFlag}"
       <h:commandButton action="#{MainPage.mainAddBtn_action}" disabled="#{SessionBean1.disableEdit}" id="mainAddBtn"
            style="font-family: Arial,Helvetica,sans-serif; font-size: 14px; font-weight: bold; left: 425px; top: 380px; position: absolute; width: 75px" value="Add"/>
         This is all plain vanilla stuff and I would expect that when the Add button is pushed, the session bean property would be filled with
    the value entered in the input text field.
    In the java code for the page, I have a method to process the Add button push.
    Originally, it just called a method in the session bean to check that a value was entered in the input text field by checking the bound
    session bean property.
    For some reason, that was not getting filled and I was getting either a null or empty string rather than the value in the text field.
    I added some checking in the method that processes the Add button push so I could check the values in the debugger.
    Here is a sample of that code:
        public String mainAddBtn_action() {
            String s = sb1.getCompanyName();
            s = (String)this.companyNameTF.getValue();
            s = (String)this.companyNameTF.getSubmittedValue();I check this in the debugger and NONE of the variants that I have listed have the value that was entered into the text field.
    The submittedValue is null and the others are empty strings (that is what they were initalized to).
    This is all pertty straight forward stuff and I am at a loss to explain what is happening.
    Can anyone expain this behavior, and, most important, how can I force the values to be present when the Add button is pushed.
    I have never experienced this problem before, and have no clue what is causing it.
    Thanks.

    Basically, the component bindings are just being used in plain vanilla get/set modes.
    I set them to "" when I do a clear for the fields and they are set to a value via the text field.
    No other action other than to read the values via get to insert them into the database.
    And, I always use the get/set methods rather than just setting the value directly.
    This is what is so strange about this behavior - I have created dozens of database add/update/delete pages using this same model and have not had a problem with them - even in a tab context.
    Not a clue why this one is different.
    I did notice that I had an error on the page (in IE7, you get a small triangle warning sign when something is not right).
    I figured that might be the problem - maybe buggering up the rendering process.
    I tracked that down and do not get that anymore (it had to do with the PDF display I was trying to get working a while back), but that did not resolve the problem.
    I don't think there are any tab conflicts - none of the components are shared between tabs, but I will see what happens when I move a couple of the components out of the tab context.
    I noticed that it seems to skip a cycle. Here is what I can do.
    1) Fill in text fields and add a record - works fine the first time.
    2) Clear the text fields
    3) Enter new data in the text fields and push Add
    4) I get an error saying fields are blank from my data check process.
    5) Enter new data and push Add - the record is added with the new data.
    My work around is to not enter data in step 3 and just accept the error message in step 4, then go ahead and enter the real data in step 5.
    Very ugly, but it works every time.

  • Strange behavior from a PB G4 (Part 2)

    On to my next issue. Often when I'm typing the insertion point will jump to someplace other than where it should be or just disappear all together. I'm not doing anything to cause it to do this. I've been being really carefull to not to do anything wrong. I'ts often enough to be a real nuisance. It happened 7 times during my first post (Strange behavior from a PB G4) and 3 times during this one. Please help. Thanks.

    Igor_G5 wrote:
    ... I thought about putting in a larger drive but when I looked up instructions for it i was surprized at how difficult it was.
    Did you use the iFixit website? It has excellent pictures and instructions that are easy to follow.
    Replacing any hard disk drive will be challenging for a paraplegic, but with someone's help it can be done fairly inexpensively. There are many tiny fasteners that require tiny tools. Use an egg carton to store them, separated by their location in the PowerBook.
    Earlier PowerBooks are easier to work on than later ones.
    I still use a PowerBook G4 on occasion, mostly for importing video for editing in iMovie. I upgraded its original 60 GB HD to a much larger one. If you were to do this you would need to locate the PowerBook's original System Install DVD to install and subsequently update OS X and all its original programs.
    If you ensure at least a few gigabytes free space, I think most of your problems will be fixed. When free disk space gets down to a few hundred megabytes or less, performance will suffer dramatically. You don't want it to ever get anywhere near that low. Strange things start to happen.
    Keep the number of icons on the Desktop to a minimum also. That makes a difference, for reasons that I do not fully understand.

  • Hi all, I upgraded my MBP to Lion , but on the screen where i need to type my password, click  on my photo and it does not appear the place for me to type my password and it stay stuck there. Can anyone solve this problem for me?

    Hi all, I upgraded my MBP to Lion , but on the screen where i need to type my password, click  on my photo and it does not appear the place for me to type my password and it stay stuck there. Can anyone solve this problem for me?

    Reboot the machine holding Command and r keys down, you'll boot into Lion Recovery Partition
    In there will be Disk Utility, use that to select your Lion OS X Partition and Repair Permissions.
    After that is done reboot the machine and see if you can log in.
    If not repeat the above steps to get into Lion Recovery, get online and reinstall Lion again, it will overwrite the installed version and hopefully after that it wil work.
    Reboot and try again.
    If not follow my steps to create a Snow Leopard Data Recovery drive, then option boot from it and grab a copy of your files off the machine.
    Then reinstall all your programs onto the external drive like setting up a new machine, then use Disk Utility to erase the entire internal boot drive (select the drive media on the far left, not the partiton slightly indented) format Option: GUID , 1 partition OS X Extended and then use Carbon Copy Cloner to clone the external to the newly formatted internal drive. Once that is finished reboot and disconnect the external drive.
    Once you go that, boot into Snow Leopard and update to 10.6.8, use the AppStore and option click on Purchases and download Lion again and install.
    Lots of work, but there is no Lion disks.
    https://discussions.apple.com/message/16276201#16276201

  • Hello! The question is this. In London, took the Iphone 5 as sim free, flew to Moscow put Simcoe, and he writes me that is locked to the operator O2. Can anyone encountered this problem? What to do? How to remove the Unlock?

    Hello! The question is this. In London, took the Iphone 5 as sim free, flew to Moscow put Simcoe, and he writes me that is locked to the operator O2. Can anyone encountered this problem? What to do? How to remove the Unlock?
    <Edited by Host>

    Look at your receipt. Does it say unlocked? It is possible to purchase both locked "sim free" and unlocked iPhones from Apple.
    ONLY the carrier an iPhone is locked to can legitimately unlock it.
    IF your receipt says that it was supposed to be unlocked, and it is not, call AppleCare. They should be able to straighten it out.

  • The trashcan is not showing up in the upper right-hand corner of my photos, so I can't delete them. Can anyone address this problem?

    The trashcan is not showing up in the right hand corner of my photos on my iPad. So I can't delete pictures. Can anyone solve this problem?

    Where did the photos come from ? Only photos taken with the iPad, copied onto it via the camera connection kit, or saved from emails/websites etc can be deleted directly on the iPad - photos that were synced from your computer are deleted by moving/removing/de-selecting them from where they were synced from on your computer and then re-syncing.

  • Can anyone explain this? ORA-01722

    Hi all,
    Can anyone understand this?
    I have 3 database servers both running on windows 2000 advanced server, they're used by the development team. Also we have our production database.
    The 3 databases are cloned from the production, so database configuration parameters are all equal. Today I've received a query from the development team to run on the production, the query is just simple like this:
    SELECT *
    FROM x
    WHERE x.field_v = 177762522
    I get this error
    ORA-01722: invalid number
    this is a hudge table, and the fiedl_v is a varchar2(9) type.
    The worst thing is that on the others 3 databases this query returns results, except on the production.
    So, can anyone explain me why does the implicit (char to number) conversion occours on the development databases , and fails on the production? What are the main reasons that can influence datatype conversion like this one?
    Both databases have the 9.0.6 patch.
    The 3 development BD's are totally cloned from the production.
    Thanks.

    William:
    There is no guarantee on the order of evaluation of the predicates. Even with your isnum function, the invalid number could arise. The only safe way is to compare strings to strings as in your first example.
    To make the isnum "safe", you would need something more like:
    SELECT *
    FROM (SELECT *
          FROM x
          WHERE isnum(x.field_v) = 'Y' and
                ROWNUM > 0)
    WHERE x.field_v = 177762522;The ROWNUM > 0 predicate in the in-line view will prevent predicate pushing and guarantee that the isnum condition is evaluated first.
    John

  • Can anyone decipher this?

    Can anyone decipher this from a MacBook Air? 
    Version:1.0 StartHTML:0000000177 EndHTML:0000023165 StartFragment:0000002541 EndFragment:0000023129 SourceURL:file://localhost/Users/Station03/Desktop/error%20report.docx                   
    Interval Since Last Panic Report:  4945928 sec
    Panics Since Last Report:          1
    Anonymous UUID: AAAB478E-7DF3-46BC-B5A6-415AF728522F
    Tue Jun 26 17:24:04 2012
    panic(cpu 1 caller 0x2abf6a): Kernel trap at 0x00000000, type 14=page fault, registers:
    CR0: 0x8001003b, CR2: 0x00000000, CR3: 0x00100000, CR4: 0x00000660
    EAX: 0x00000000, EBX: 0x08826000, ECX: 0x107cfdc0, EDX: 0x0ced4f40
    CR2: 0x00000000, EBP: 0x58c4bf78, ESI: 0x00000000, EDI: 0x08826000
    EFL: 0x00010206, EIP: 0x00000000, CS:  0x00000008, DS:  0x07fc0010
    Error code: 0x00000010
    Backtrace (CPU 1), Frame : Return Address (4 potential args on stack)
    0x58c4bd68 : 0x21b837 (0x5dd7fc 0x58c4bd9c 0x223ce1 0x0)
    0x58c4bdb8 : 0x2abf6a (0x59e3d0 0x0 0xe 0x59e59a)
    0x58c4be98 : 0x2a1a78 (0x58c4beb0 0xf9de0a4 0x58c4bf78 0x0)
    0x58c4bea8 : 0x0 (0xe 0x6c340048 0x58c40010 0x550010)
    0x58c4bf78 : 0x230235 (0x8826000 0x0 0x58c4bfc8 0x227cea)
    0x58c4bfc8 : 0x2a179c (0x863ea0 0x0 0x10 0x7f414e4)
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: MacBookAir3,2 (Mac-942C5DF58193131B)
    System uptime in nanoseconds: 349846083630500
    unloaded kexts:
    com.apple.iokit.SCSITaskUserClient            2.6.8 (addr 0x592a5000, size 0x28672) - last unloaded 177286763869073
    loaded kexts:
    com.FTDI.driver.FTDIUSBSerialDriver            2.2.14
    com.apple.driver.AppleUSBTCKeyEventDriver            201.6 - last loaded 301283701360087
    com.apple.iokit.SCSITaskUserClient            2.6.8
    com.apple.filesystems.autofs            2.1.0
    com.apple.driver.AppleHWSensor            1.9.3d0
    com.apple.driver.AppleUpstreamUserClient            3.5.7
    com.apple.driver.AppleMCCSControl            1.0.20
    com.apple.driver.ApplePlatformEnabler            2.0.2d1
    com.apple.driver.AGPM            100.12.31
    com.apple.driver.AppleMikeyHIDDriver            1.2.0
    com.apple.driver.AppleHDA            2.0.5f14
    com.apple.driver.AudioAUUC            1.57
    com.apple.driver.AppleMikeyDriver            2.0.5f14
    com.apple.Dont_Steal_Mac_OS_X            7.0.0
    com.apple.driver.AudioIPCDriver            1.1.6
    com.apple.driver.AppleIntelPenrynProfile            17
    com.apple.driver.ACPI_SMC_PlatformPlugin            4.7.0a1
    com.apple.GeForce            6.3.6
    com.apple.driver.AppleLPC            1.5.1
    com.apple.driver.AppleBacklight            170.0.46
    com.apple.driver.AppleUSBTCButtons            201.6
    com.apple.driver.AppleUSBTCKeyboard            201.6
    com.apple.driver.AppleUSBCardReader            2.6.1
    com.apple.iokit.IOAHCIBlockStorage            1.6.4
    com.apple.driver.AirPortBrcm43224            428.42.4
    com.apple.driver.AppleAHCIPort            2.1.7
    com.apple.driver.AppleUSBHub            4.2.4
    com.apple.driver.AppleUSBEHCI            4.2.4
    com.apple.BootCache            31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib            1.0.0d1
    com.apple.driver.AppleUSBOHCI            4.2.0
    com.apple.driver.AppleSmartBatteryManager            160.0.0
    com.apple.driver.AppleEFINVRAM            1.4.0
    com.apple.driver.AppleRTC            1.3.1
    com.apple.driver.AppleHPET            1.5
    com.apple.driver.AppleACPIButtons            1.3.6
    com.apple.driver.AppleSMBIOS            1.7
    com.apple.driver.AppleACPIEC            1.3.6
    com.apple.driver.AppleAPIC            1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient            142.6.0
    com.apple.security.sandbox            1
    com.apple.security.quarantine            0
    com.apple.nke.applicationfirewall            2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement            142.6.0
    com.apple.driver.AppleProfileReadCounterAction            17
    com.apple.nvidia.nv50hal            6.3.6
    com.apple.driver.DspFuncLib            2.0.5f14
    com.apple.driver.AppleProfileTimestampAction            10
    com.apple.driver.AppleProfileThreadInfoAction            14
    com.apple.driver.AppleProfileRegisterStateAction            10
    com.apple.driver.AppleProfileKEventAction            10
    com.apple.driver.AppleProfileCallstackAction            20
    com.apple.driver.AppleSMBusController            1.0.10d0
    com.apple.iokit.IOSurface            74.2
    com.apple.iokit.IOBluetoothSerialManager            2.4.5f3
    com.apple.iokit.IOSerialFamily            10.0.3
    com.apple.iokit.IOAudioFamily            1.8.3fc2
    com.apple.kext.OSvKernDSPLib            1.3
    com.apple.driver.AppleHDAController            2.0.5f14
    com.apple.iokit.IOHDAFamily            2.0.5f14
    com.apple.iokit.AppleProfileFamily            41
    com.apple.driver.AppleSMC            3.1.0d5
    com.apple.driver.IOPlatformPluginFamily            4.7.0a1
    com.apple.driver.AppleSMBusPCI            1.0.10d0
    com.apple.NVDAResman            6.3.6
    com.apple.driver.AppleBacklightExpert            1.0.1
    com.apple.iokit.IONDRVSupport            2.2.1
    com.apple.iokit.IOGraphicsFamily            2.2.1
    com.apple.driver.BroadcomUSBBluetoothHCIController            2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController            2.4.5f3
    com.apple.iokit.IOBluetoothFamily            2.4.5f3
    com.apple.driver.AppleUSBMultitouch            207.7
    com.apple.iokit.IOUSBHIDDriver            4.2.0
    com.apple.iokit.IOSCSIBlockCommandsDevice            2.6.8
    com.apple.iokit.IOUSBMassStorageClass            2.6.7
    com.apple.iokit.IOSCSIArchitectureModelFamily            2.6.8
    com.apple.driver.AppleUSBMergeNub            4.2.4
    com.apple.driver.AppleUSBComposite            3.9.0
    com.apple.driver.XsanFilter            402.1
    com.apple.iokit.IO80211Family            320.1
    com.apple.driver.AppleMCP89RootPortPM            1.11
    com.apple.iokit.IOAHCIFamily            2.0.6
    com.apple.iokit.IOUSBUserClient            4.2.4
    com.apple.iokit.IONetworkingFamily            1.10
    com.apple.iokit.IOUSBFamily            4.2.4
    com.apple.driver.NVSMU            2.2.7
    com.apple.driver.AppleEFIRuntime            1.4.0
    com.apple.iokit.IOHIDFamily            1.6.6
    com.apple.iokit.IOSMBusFamily            1.1
    com.apple.kext.AppleMatch            1.0.0d1
    com.apple.security.TMSafetyNet            6
    com.apple.driver.DiskImages            289.1
    com.apple.iokit.IOStorageFamily            1.6.3
    com.apple.driver.AppleACPIPlatform            1.3.6
    com.apple.iokit.IOPCIFamily            2.6.5
    com.apple.iokit.IOACPIFamily            1.3.0
    Model: MacBookAir3,2, BootROM MBA31.0061.B01, 2 processors, Intel Core 2 Duo, 2.13 GHz, 4 GB, SMC 1.66f55
    Graphics: NVIDIA GeForce 320M, NVIDIA GeForce 320M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD1), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en0
    Serial ATA Device: APPLE SSD TS256C, 233.76 GB
    USB Device: FaceTime Camera (Built-in), 0x05ac  (Apple Inc.), 0x850a, 0x24600000 / 2
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0x26100000 / 2
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x04500000 / 3
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x821b, 0x04530000 / 5
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x023f, 0x04300000 / 2

    A third-party USB device. I don't know which one. It wasn't connected at the time of the panic.

  • Can anyone explain this: Numeric or Value Error Line 1

    I have a stored procedure that starts out like so:
    PROCEDURE test_proc(param1 IN VARCHAR2, param2 IN VARCHAR2, param3 OUT
    SYS_REFCURSOR) IS
    v_var varchar2(5);
    BEGIN
    SELECT * FROM. . .
    The procedure tested fine in PL/SQL Developer. When calling from
    ODP.NET like so. . .
    OracleCommand cmd = new OracleCommand("test_proc", <connection>);
    cmd.CommandType = CommandType.StoredProcedure;
    cmd.Parameters.Add("param1", "somevalue");
    cmd.Parameters.Add("param2", "XX");
    cmd.Parameters.Add("param3", OracleDbType.RefCursor,
    ParameterDirection.Output);
    DataSet ds = new DataSet();
    OracleDataAdapter da = new OracleDataAdapter(cmd);
    con.Open();
    da.fill(ds);
    con.Close();
    . . .the procedure executed as expected. If I changed the value of
    param2 to "XXX" or any value three chars long I got the "ORA-06502:
    Numeric or Value Error at Line 1" error.
    After beating my head against the wall for hours, I tried changing the
    size of v_var to 50, and the error disappeared. Mind you, the error
    was being thrown long before v_var was being set further down in the
    proc. Even more interesting is that the possible values of v_var were
    all less than 5 chars wide. Most interesting: the value of p_param2 had nothing whatever to do with v_var.
    Can anyone explain this?

    Hi,
    Is your database 9206 by chance? Re: Error ORA-06502 PL/SQL
    Cheers,
    Greg

  • Can anyone explain this query.?

    Can anyone explain this query.?
    select nvl(s.p_id,q.p_id),nvl(s.p_type,q.p_type),nvl(s.p_line,q.p_line),
    nvl(s.sales2004,0),nvl(s.sales2005,0),nvl(q.quota2004,0),nvl(q.quota2005,0)
    from sales s
    full outer join quota q on(s.p_id = q.p_id and s.p_type=q.p_type and s.p_line=q.p_line)

    from sales s full outer join quota qTable quota is outer joined to table sales , if there are no matching records in table quota then also the query retuns the sales record with null values for the corresponding quota record columns
    NVL() has been used to handle such cases

  • HT3275 Please can anyone explain this to me

    Please can anyone explain this to me - thank you -
    Time Machine couldn't complete the backup to time capsule - The backup disk image “/Volumes/Data-1/Alyson’s iMac.sparsebundle” is already in use.

    The explanation is a long standing bug in Lion and Mountain Lion, but what you might really be asking is how to fix the problem.
    Pull the power cord from the back of the Time Capsule
    Wait a few minutes
    Plug the power cord back in
    If that does not fix the problem you will need to dig deeper.  See #C12 in Pondini's excellent Time Machine - Troubleshooting.
    http://pondini.org/TM/Troubleshooting.html

  • When i go to my music and play a song it sounds like my headphones are blown but when i play songs on youtube they sound fine, can anyone explain this to me? please and thank you

    when i go to my music and play a song it sounds like my headphones are blown but when i play songs on youtube they sound fine, can anyone explain this to me? please and thank you

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Unsync all music and resync
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up                                                                
    - Restore to factory settings/new iOS device.      

Maybe you are looking for

  • [Solved] grub2: file not found but booting fine

    I just ran grub-mkconfig to update my grub.cfg because I installed E4rat. But now I have a problem: Every entry in grub2 can be booted and E4rat really boosted my boot process so actually everything is fine. But while grub2 is loading it says somethi

  • Custom Component Error -- Uggh

    I have tried to solve the problem using online resouces, 3rd party message boards, Xcelsius tutorials, the textbook "Xcelsius 2008: Dashboard Best Practices", tutorials which came with the Xcelsius SDK, among others, however, I continue to run into p

  • Safari and RSS Feeds

    I can't access any RSS feed in OS X 10.8, and maybe other things as well. I tried to access RSS feeds and was given an error saying that there was no application for it. I tried accessing iTunes 25 New Releases and got the same error message. I have

  • Connectin to oracle db at localhost

    hello i use ado to connect oracle 10 g database at localhost ... i use oracle's provider... what is the technology for conection to db on localhost -network, shared memory, local procedure call ? please help

  • Why do we need Applet support?

    In another thread, I'm trying to work out a problem deploying WebHelp because the file webhelp.jar in RH 7 WebHelp output cannot be unzipped (or un-jarred). This file is used for applet support, according to the RH help topic on output files, when yo