Passsword reset

HI
When I am Login in the OBIEE adminstartion window and opening the online mode it was asking the adminisatrtor password
I have given password but I am getting below error :
nQSError:37001 could not able connect to oracle BI server
nQSError :43001 Authentication failed for Administartor in repository start invalid user/password
Please assist me how to reset the password or any other workaround .
Looking forward for your reponsce
Thanks
Nitin

As already stated in the "Download" forum: please don't post your questions into random forums, but as a first step find out which forum is [the correct one|http://forums.oracle.com/forums/forum.jspa?forumID=378].
Also, try the forum search functionality: [http://forums.oracle.com/forums/search.jspa?objID=f378&q=reset+administrator+password|http://forums.oracle.com/forums/search.jspa?objID=f378&q=reset+administrator+password]
Fourth hit.

Similar Messages

  • Blank white screen in Adobe Creative Cloud Desktop

    I just had this issue after a passsword reset/update. I just wanted to thank the Adobe support team for the solution. Renaming the OOBE folder worked and was exactly what I needed to do.
    My question is, was it the password reset or the update? If it was the password reset, shouldn't ACCD detect that a password reset has occured and prompt for log in? Is this going to happen each time I reset my password? If so, that is quite inconvenient.
    For those that are having this issue, the solution is a bit buried, but you shut down Creative Cloud Desktop, rename the folder OOBE (or the file inside of it) to .old and then restart Creative Cloud Desktop.
    http://helpx.adobe.com/creative-cloud/kb/unknown-server-error-launching-cc.html

    Adobe contact information - http://helpx.adobe.com/contact.html may help

  • HT5622 New Ipad setup has not asked for a password just an Apple ID says ID is already being used reset forgotten passsword. But hasn't asked for a password?

    Setting up new Ipad and it asked for Apple ID but no password. Next screen says ID is being used. Reset password? Why? How do I go on with setup?

    You do not have to enter an Apple ID in order to set up an iPad. You can do that after the device has been activated. Can you back out of the setting and remove the Apple ID then move forward and deal with it after the iPad is activated?

  • How do I reset my entire password chain?

    I went to log in the other day and my Macbook Pro running OS X Lion 10.7.5 (11G63) would not accept my password giving me the litle shakey move. I was able to get in my not using a password at all - I just hit return without entering anything in the password box. I then tried to reset my passsword using my apple ID. The new password works for some things like logging here to post this; or to download Apple updates, but nothing else. Also I discovered my log in picture icon was replaced by a target. It's the picture of me from the origonal set up I did. After some research I guess I have a keychain problem, but I don't know how to fix it - or where to start.

    See Kappy's response in https://discussions.apple.com/thread/5703438?tstart=0

  • HT201269 i have forgot my iphone 4 backup files password. how to reset or unlock the password

    i have forgot my iphone 4 backup file password.hot to reset or unlock the passsword.??

    I think, according to this thread, you're between a rock and a hard place- you won't be able to access your backups. See this thread:
    https://discussions.apple.com/message/18904535#18904535
    --BugBytes
    <Edited by Host>

  • Reset password application

    Hello,
    I am working with Netweaver Studio in a PDK 6.0 application. I want to create an application that reset the password of the portal user and send and email with the new passsword.
    Does someone knows there is a method in the UME api or somewhere else that let me manage this kind of process??
    Thanks in advance

    HI Prakash,
    I've deployed the similar application on EP. The password has been reseted successfully and there is no excepion throwed. But the user couldn't get the respons email. Do you know what has caused this issue ? Do we have to restart the server engine after deployed par on Portal?
    Thanks in advance.
    The source code is as bellow,
    if (null != userObject&& userObject.getEmail().equalsIgnoreCase(userEmail.getValue().toString())) {
      IUserAccount ua = UMFactory .getUserAccountFactory().getUserAccountByLogonId(uid);
      IUserAccount mua =UMFactory .getUserAccountFactory() .getMutableUserAccount(ua.getUniqueID());
      String password =
      UMFactory.getSecurityPolicy().generatePassword();
      mua.setPassword(password);
      mua.save();
      mua.commit();
      SendMailAsynch.generateEmailOnUMEvent(
      userObject,
      userObject,
      "pswd_reset_performed",
      "You password of userID in Portal system has been reset. Please logon and change password as soon as possible.",
      password);
      conBean.setSuccessMsg(
      "Password Reset successful and was sent to your email.");
      break;
      } //end if
                     break;
      } //end try
      catch (UMException e) {
        conBean.setMsgID(
        "The userID does not exist, please input the right userID or contact authorization administrator directly.");
        }  //end catch

  • Error while resetting a cleared document

    Hi everyone,
    I am getting an error while resetting a cleared invoicing document 'Document xxxxxxxxxxx with origin R4 can not be reversed'. Please guide me how can we reset the clearing of this document.
    Thanks and Regards

    Hi,
    You need to reset all clearing for the corresponding FICA document for the print document.
    Reset the clearing for the document no. mentioned in the output for EA13 execution.
    You need to reset all the clearing for the document, before reversing the same.
    To get all the clearing document, go to DFKKOP table, enter the FICA document no. (for the print document on FPL9). Get all AUGBL documents,
    Alternatively, you can go on to FPL9 screen, double click on the consumption document, in the basic data you will see the clearing date (if it is cleared), expand the view their (click on + sign), you will se the clearing document no,
    Pass the above clearing document no, to FP07, and once all the clearing is reset for the invoice, you can reverse the corresponding invoice through EA13.
    Regards,
    Rajesh Popat

  • Global data getting reset when running under IIS?

    We have a scenario using IIS with an ASP.NET web service written in VB.NET. When a call to the web service is made, the web service calls a native dll (written in C, compiled using VS2010) using platform invoke, which in turn calls into our product API:
    VB.NET web service -> native library (p/invoke) -> native API ....
    Web service requests are successfully completed and the system runs without problem for hours. A trace of the native API shows it is being called by multiple processes and multiple threads within those processes.
    The main native API dll contains a static global variable used to detect whether it is the first time it has been called and run initialization logic if it is. This dll is itself linked to a second dll that contains a global variable used to detect if it is
    the first time it has been called.
    After some hours the trace shows that the native API is invoked by an existing process but that the initialization logic is being exercised again, even though the global variable was set to indicate not first time and is never reset.  One theory was that
    the first process has ended and a new process has started almost instantaneously using the same process ID. However this is not the case as existing thread IDs from the same process are seen to write to the trace again after the first time logic has executed
    for the second time, indicating the process has not restarted. The problem occurs regularly.
    It is as though the process's global data has been initialized again and malloc'ed memory freed while the processing is still running. Is there any way this is possible when running under IIS?
    There is an internal thread which waits on a blocking read of a named pipe (via ReadFile), and when the problem occurs, the ReadFile call ends with ERROR_NO_ACCESS, which appears to indicate the malloc'ed buffer is no longer valid, again implying something
    has happened to the memory allocated to the process.

    Suggestting you asking it on:
    http://forums.iis.net/

  • I've just found that three movies I've bought from iTunes on on my iPad are not showing up on Apple TV or anywhere other than that iPad.  What's up with that and will I lose these films if I reset this iPad?

    I've just found that three movies I've bought from iTunes on on my iPad are not showing up on Apple TV or anywhere other than that iPad.  What's up with that and will I lose these films if I reset this iPad?

    Thanks.  The reason this has become an issue is that I recently bought a new Macbook Air that the iPad is not synced to.  The one is was synced to was stolen.  If I want to sync this iPad to the new Air, won't it be wiped before I'm able to copy these films or am I wrong about that?

  • HT4623 My account wont let me download apps ive reseted two times and it says i havent enterted right and i dont know what else to do??

    My apps wont download its really bothering me

    Define "won't let me."
    What type of reset did you do?

  • Hi, I am trying to update an iPhone 4 from iOS 4.3.3 to iOS 7.0.4, and every time I try to update it comes up with an error message saying that there was a problem because the network connection was reset. Is there any way I can get past this and update?

    The full message said:
    There was a problem downloading the software for the iPhone "Judy's iPhone 4". The network connection was reset.
    Make sure your network settings are correct and your network connection is active, or try again later.
    I am trying to update the iPhone for my grandmother, Judy, as I am leaving for Paris on Wednesday night and we want to have Facetime installed on her iPhone before then, so we can stay in contact with each other. It is the simplest way for this to happen but the program simply will not allow me to update her iPhone.
    Is there any way to get past this error and update her iPhone? Any help will be greatly appreciated.

    Dear Jody..jone5
    Good for you that can't update your iphone because I did it and my iphone dosen't work for example I can't download any app like Wecaht or Twitter..
    Goodluck
    Atousa

  • Reset Cleared Documents and Vendor Open Items Report FBL1N

    Hi all,
    I have following scenario:
    - In last month, we had 2 documents (invoice and payment) cleared against each other. We created open items report as well as open items correspondence sent to Vendor. Obviously, the docs were not included in report.
    - In this month, we have reset and reverse clearing document of the documents. We create report again with the open key date as in last month. It should not include the 2 docs but it did with whichever key date we chose.
    Is there any setting that open item report doesn't include cleared item at the key date when we run report for previous month?
    Thanks and Regards,
    Dau

    Hi Dau,
    If i understand you correctly then you posted and paid invoice in Jan 2012 and generated the open line item report for Jan which correctly did not include this cleared invoice.
    Now in Feb 2012 you reset and reversed this payment document.
    The issue is when you execute the report FBL1N again then you get the open line item for this invoice correct. Please confirm what is the open item key date that you are using here for generating this report
    If you keep it 31.01.2012 then definetly this invoice should not appear in the report but if you keep that 29.12.2012 then this line item would for sure appear.
    The importance of key date is to limit the report to certain date. The system selects all items posted up to and including the specified key date and open for this period.
    so I think your issue is with the key date.
    Hope this helps you.
    Regards,
    Prasad

  • Iphone4...got soaked, works after reset, now wont reactivate and shows error 0XE8000004

    Hi all,
    I have a 32gig iPhone4 that I purchased second hand. Recently I knocked it into the toilet...I turned it off straight away, left it to dry.
    After 5 days drying I gave it a full charge, turned it on and the display was all sketchy. I've kept trying with it, realised that the display would function fine at times so have I put it in recovery mode, factory reset it and managed to get it out of recovery mode.
    I'm back at a fresh start, however when trying to activate the handset via iTunes I keep getting the same error....'0xE8000004'
    Can anyone shed any light on this error and how I can get this phone back up and running?
    Thanks you in advance

    Yes i've tried pretty much all of them steps, only thing I cannot try is another computer but to be honest I cant see any real reason it being my laptops fault as its been fine since day dot.
    Not really sure which step to take next to be honest...any suggestions appreciated!

  • I recently installed Lion on my MacBook Pro (2010). Since then, almost every time I put my mac to sleep it doesn't respond when I try to wake it up. I must say that everything seems to be working, and I recently reset the PRAM and the NVRAM.

    This is the report I get after:
    Interval Since Last Panic Report:  176544 sec
    Panics Since Last Report:          3
    Anonymous UUID:                    8D526306-CA36-4C7E-8053-65BE0295A3F9
    Sun Aug  7 14:15:19 2011
    panic(cpu 2 caller 0xffffff7f809522bf): NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xc0000000 0xffffff80a041a000 0x0a5480a2, D0, P3/4
    Backtrace (CPU 2), Frame : Return Address
    0xffffff80a3a7b2b0 : 0xffffff8000220702
    0xffffff80a3a7b330 : 0xffffff7f809522bf
    0xffffff80a3a7b3c0 : 0xffffff7f80a423fc
    0xffffff80a3a7b410 : 0xffffff7f80a424bc
    0xffffff80a3a7b470 : 0xffffff7f80cec749
    0xffffff80a3a7b5b0 : 0xffffff7f80a61519
    0xffffff80a3a7b5e0 : 0xffffff7f8095bc4a
    0xffffff80a3a7b690 : 0xffffff7f8095754c
    0xffffff80a3a7b880 : 0xffffff7f80959151
    0xffffff80a3a7b960 : 0xffffff7f817d6008
    0xffffff80a3a7b9a0 : 0xffffff7f817e4e06
    0xffffff80a3a7b9c0 : 0xffffff7f818006d4
    0xffffff80a3a7ba00 : 0xffffff7f81800739
    0xffffff80a3a7ba40 : 0xffffff7f817e8c51
    0xffffff80a3a7ba90 : 0xffffff7f817a0753
    0xffffff80a3a7bb10 : 0xffffff7f8179f1c4
    0xffffff80a3a7bb40 : 0xffffff7f817a4bfd
    0xffffff80a3a7bb70 : 0xffffff80006524ad
    0xffffff80a3a7bbe0 : 0xffffff800065284c
    0xffffff80a3a7bc40 : 0xffffff8000652ff0
    0xffffff80a3a7bd80 : 0xffffff80002a3738
    0xffffff80a3a7be80 : 0xffffff8000222ff6
    0xffffff80a3a7beb0 : 0xffffff8000214829
    0xffffff80a3a7bf10 : 0xffffff800021bb58
    0xffffff80a3a7bf70 : 0xffffff80002ae380
    0xffffff80a3a7bfb0 : 0xffffff80002d83a3
          Kernel Extensions in backtrace:
             com.apple.NVDAResman(7.0.2)[7E65ECA2-D3A1-35F8-B845-C975FB531E7E]@0xffffff7f808 f2000->0xffffff7f80bc8fff
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)[95ABB490-3AB5-3D5E-9C21-67089A9AE6A1]@0xffff ff7f8087e000
                dependency: com.apple.iokit.IONDRVSupport(2.3)[E99C8907-946D-3F1A-A261-4C0F2D5D0451]@0xffff ff7f808e0000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3)[897EB322-FD55-36D7-A68E-9E9C34A74A84]@0xf fffff7f808a8000
             com.apple.nvidia.nv50hal(7.0.2)[2E84958C-1EEC-316B-9F7A-68C368F83476]@0xffffff7 f80bc9000->0xffffff7f80eeafff
                dependency: com.apple.NVDAResman(7.0.2)[7E65ECA2-D3A1-35F8-B845-C975FB531E7E]@0xffffff7f808 f2000
             com.apple.GeForce(7.0.2)[18E50F21-1E7F-3FFE-B298-7CD7A11879F8]@0xffffff7f817870 00->0xffffff7f81843fff
                dependency: com.apple.NVDAResman(7.0.2)[7E65ECA2-D3A1-35F8-B845-C975FB531E7E]@0xffffff7f808 f2000
                dependency: com.apple.iokit.IONDRVSupport(2.3)[E99C8907-946D-3F1A-A261-4C0F2D5D0451]@0xffff ff7f808e0000
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)[95ABB490-3AB5-3D5E-9C21-67089A9AE6A1]@0xffff ff7f8087e000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3)[897EB322-FD55-36D7-A68E-9E9C34A74A84]@0xf fffff7f808a8000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    11A511
    Kernel version:
    Darwin Kernel Version 11.0.0: Sat Jun 18 12:56:35 PDT 2011; root:xnu-1699.22.73~1/RELEASE_X86_64
    Kernel UUID: 24CC17EB-30B0-3F6C-907F-1A9B2057AF78
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 89938146718489
    last loaded kext at 89789498800310: com.apple.iokit.IOAVBFamily          1.0.0d22 (addr 0xffffff7f80791000, size 36864)
    last unloaded kext at 87392699739594: com.apple.iokit.IOAVBFamily          1.0.0d22 (addr 0xffffff7f80791000, size 36864)
    loaded kexts:
    com.sophos.kext.sav          7.3.0
    com.apple.filesystems.smbfs          1.7.0
    com.apple.driver.AppleHWSensor          1.9.4d0
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleHDA          2.1.1f11
    com.apple.driver.AppleMikeyDriver          2.1.1f11
    com.apple.driver.AGPM          100.12.40
    com.apple.driver.AppleUpstreamUserClient          3.5.9
    com.apple.driver.AppleMCCSControl          1.0.24
    com.apple.driver.AudioAUUC          1.59
    com.apple.driver.AppleIntelHDGraphics          7.0.2
    com.apple.driver.AppleIntelHDGraphicsFB          7.0.2
    com.apple.driver.SMCMotionSensor          3.0.1d2
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AudioIPCDriver          1.2.0
    com.apple.driver.AppleSMCLMU          2.0.1d2
    com.apple.driver.AppleMuxControl          3.0.8
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0b2
    com.apple.GeForce          7.0.2
    com.apple.driver.AppleLPC          1.5.1
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleUSBTCButtons          220.8
    com.apple.driver.AppleUSBTCKeyboard          220.8
    com.apple.driver.AppleUSBCardReader          3.0.0
    com.apple.driver.AppleIRController          309
    com.apple.iokit.SCSITaskUserClient          3.0.0
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          32
    com.apple.driver.AppleUSBHub          4.4.0
    com.apple.driver.AirPort.Brcm4331          500.20.6
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.iokit.IOAHCIBlockStorage          2.0.0
    com.apple.driver.AppleFWOHCI          4.8.6
    com.apple.iokit.AppleBCM5701Ethernet          3.0.6b9
    com.apple.driver.AppleEFINVRAM          1.5.0
    com.apple.driver.AppleAHCIPort          2.1.8
    com.apple.driver.AppleUSBEHCI          4.4.0
    com.apple.driver.AppleACPIButtons          1.4
    com.apple.driver.AppleRTC          1.4
    com.apple.driver.AppleHPET          1.6
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.4
    com.apple.driver.AppleAPIC          1.5
    com.apple.driver.AppleIntelCPUPowerManagementClient          166.0.0
    com.apple.nke.applicationfirewall          3.0.30
    com.apple.security.quarantine          1
    com.apple.driver.AppleIntelCPUPowerManagement          166.0.0
    com.apple.iokit.IOAVBFamily          1.0.0d22
    com.apple.iokit.IOBluetoothSerialManager          2.5f17
    com.apple.iokit.IOSerialFamily          10.0.5
    com.apple.driver.DspFuncLib          2.1.1f11
    com.apple.iokit.IOFireWireIP          2.2.3
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.iokit.IOSurface          80.0
    com.apple.iokit.IOAudioFamily          1.8.3fc11
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.AppleHDAController          2.1.1f11
    com.apple.iokit.IOHDAFamily          2.1.1f11
    com.apple.driver.AppleGraphicsControl          3.0.8
    com.apple.driver.AppleSMC          3.1.1d2
    com.apple.driver.IOPlatformPluginFamily          4.7.0b2
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleBacklightExpert          1.0.3
    com.apple.nvidia.nv50hal          7.0.2
    com.apple.NVDAResman          7.0.2
    com.apple.iokit.IONDRVSupport          2.3
    com.apple.iokit.IOGraphicsFamily          2.3
    com.apple.kext.triggers          1.0
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.5f17
    com.apple.driver.AppleUSBBluetoothHCIController          2.5f17
    com.apple.iokit.IOBluetoothFamily          2.5f17
    com.apple.driver.AppleUSBMultitouch          220.23
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.0.0
    com.apple.iokit.IOUSBMassStorageClass          3.0.0
    com.apple.iokit.IOUSBHIDDriver          4.4.0
    com.apple.driver.AppleUSBMergeNub          4.4.0
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.0.0
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily          1.7
    com.apple.driver.XsanFilter          403
    com.apple.iokit.IO80211Family          400.40
    com.apple.iokit.IOUSBUserClient          4.4.0
    com.apple.iokit.IOFireWireFamily          4.4.3
    com.apple.iokit.IOAHCISerialATAPI          2.0.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.0.0
    com.apple.iokit.IOEthernetAVBController          1.0.0d5
    com.apple.iokit.IONetworkingFamily          2.0
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.driver.AppleEFIRuntime          1.5.0
    com.apple.iokit.IOHIDFamily          1.7.0
    com.apple.iokit.IOUSBFamily          4.4.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          165
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          326
    com.apple.iokit.IOStorageFamily          1.7
    com.apple.driver.AppleKeyStore          28.18
    com.apple.driver.AppleACPIPlatform          1.4
    com.apple.iokit.IOPCIFamily          2.6.5
    com.apple.iokit.IOACPIFamily          1.4
    Model: MacBookPro6,2, BootROM MBP61.0057.B0C, 2 processors, Intel Core i5, 2.4 GHz, 4 GB, SMC 1.58f15
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 256 MB
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80AD, 0x484D54313235533642465238432D47372020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80AD, 0x484D54313235533642465238432D47372020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.100.98.75.6)
    Bluetooth: Version 2.5.0f17, 2 service, 12 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: ST9320325ASG, 320.07 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0236, 0xfa120000 / 5
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8218, 0xfa113000 / 8
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa130000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 4
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0xfd110000 / 3

    Try resetting the System Management Controller
    http://support.apple.com/kb/HT3964

  • What causes cellular data usage to decrease if last reset has not changed? I reset every pay period cuz I do not have unlimited and was showing 125 mb sent/1.2g received. Now showing 98mb sent/980mb received. Last reset still shows same

        I reset my cellular data usage every month at the beginning of my billing period so that I can keep track of how much data I am using thru out the month. I do not have the unlimited data plan and have gone over a few times. It's usually the last couple days of my billing cycle and I am charged $10 for an extra gig which I barely use 10% of before my usage is restarted for new billing cycle. FYI, they do not carry the remainder of the unused gig that you purchase for $10 which I disagree with. But have accepted. Lol  Moving on.
        I have two questions. One possibly being answered by the other. 1. Is cellular data used when I sync to iTunes on my home computer to load songs onto my iPhone from my iTunes library(songs that already exist)? 2. What causes the cellular data usage readings in iPhone settings/general/usage/cellular usage to decrease if my last reset has not changed? It is close to end of my billing cycle and I have been keeping close eye. Earlier today it read around 180mb sent/1.2gb received. Now it reads 90mb sent/980 mb recieved. My last reset date reads the same as before. I don't know if my sync and music management had anything to do with the decrease but i didn't notice the decrease until after I had connected to iTunes and loaded music. I should also mention that a 700mb app automatically loaded itself to my phone during the sync process. Is cellular data used at all during any kind of sync /iPhone/iTunes management? Is the cellular data usage reading under iPhone settings a reliable source to keep track of monthly data usage? Guess turned out to be more than two questions but all related. Thanks in advance for any help you can offer me. It is information I find valuable. Sorry for the book long question.

    Is cellular data used at all during any kind of sync /iPhone/iTunes management? Is the cellular data usage reading under iPhone settings a reliable source to keep track of monthly data usage?
    1) No.
    2) It does provide an estimated usage, but it's not accurate. For accurate determination, you should check the remaining/used MBs from the carrier (most of the carriers provide this service for free).

Maybe you are looking for

  • JTable getColumnName not working with numbered rows

    you know when you read through the same code for a day and can't find the problem but someone who has never seen it before can find the problem in a second? i've got that going on right now. I saw a thread, http://forum.java.sun.com/thread.jspa?forum

  • Closing a web page

    Easy one here - I've created a shockwave app that a client will have open in it's own browser window. When a user clicks an exit button within the shockwave app, I want the window it's playing in to close so they'll be taken back to whatever page the

  • AU Install Problem

    I recently found out about this free sampler plug-in, which is exactly what I was looking for. However, I downloaded it and copied the .component file to my Library/Audio/Plug-ins/components folder, but it's not showing up in GB or Logic Express. The

  • XSQL Paging Example Questions - XMLBOOK

    Hi all, I run example NewsCategorySimple.xsql?p=2&id=1 from XMLBOOK (S.Muench pag. 650), but it doesn't show stateless paging. shows data, but not: Page 1 of 4 Next - Total 19. I run over WNT4/Sp5, Ora816/R2, WEBDB/IAS, XSQL Utility (Examples is good

  • PC Suite Does Not Recognize My Phone

    I could sure use some help. MY OS is XP Media Center Edition. With my previous Nokia phone (6682) I used the CD and cables that came in the box and had no problem syncing. I lost that phone a purchased the Nokia 6131 clamshell which dod not have cabl