Dbms_scheduler - Can't kill job

Hi,
I am using version 10.0.2.3 and have defined a chain successfullly. I ran the chain using :-
exec DBMS_SCHEDULER.RUN_CHAIN (
chain_name => 'job_manual_load',
job_name => 'job_immediate_job',
start_steps => 'step20');
I want to kill the job but I cannot seem to using :-
dbms_scheduler.stop_job(job_name=>'job_immediate_job');
I tried using using the 'force = true' option but still no luck.
Any help anyone can provide would be useful ?
Thanks,

Can you please try the below steps :)
1. Determine the owner of the job with the query shown below
SQL> select job, what, log_user, priv_user from dba_jobs where job=<job_number> ;
2. Connect to the database using SQL*Plus as the owner of the job (value of priv_user from the
query results obtained in step 1)
3. Execute the job removal procedure and commit the transaction.
SQL> exec DBMS_JOB.remove(<job_number>) ;
SQL> commit;
Thanks
Nisanth Santhan

Similar Messages

  • Hi i have 50 infoobjects as part of my aggregates and in that 10 infoobjects have received changes in masterdata.so in my process chain the Attribute change run in running for a long time.can i kill the job and repeat the same.

    Hi i have 50 infoobjects as part of my aggregates and in that 10 infoobjects have received changes in masterdata.so in my process chain the Attribute change run in running for a long time.can i kill the job and repeat the same.

    Hi,
    I believe this would be your Prod system, so don't just cancel it but look at the job log. If it is still processing then don't kill it and wait for the change run to complete but if you can see that nothing is happening and it is stuck for a long time then you can go ahead and cancel it.
    But please be sure, as these kind of jobs can create problems if you cancel them in the middle of a job.
    Regards,
    Arminder Singh

  • Can not kill report job

    Hi all,
    I uses OracleAS9i and run report services. I kill job id 28 but it show a error:
    "Cannot Kill Job with Job ID 28SQL-6550: ORA-06550: line 1, column 13: PLS-00201: identifier 'RW_SERVER.REMOVE_JOB' must be declared ORA-06550: line 1, column 7: PL/SQL: Statement ignored"
    I don't know why, can you hep me? Thanks a lot!
    Trung

    Check http://technology.amis.nl/blog/2892/how-to-stop-running-rman-jobs-in-oem-grid-control
    Eric

  • How can i kill a job in BW

    Hi,
    Any budy please help me that how can i kill a background job in BW
    Cheers,
    KGB

    hi u can kill job in SM 37 also.
    also u can cancel in SM50.also use tis link
    How to stop scheduled job in bw.
    Hope it solves your query
    Thanks,
    pathak
    Edited by: npathak on Aug 2, 2010 9:09 PM

  • Can't kill a job in Reports Server 9i

    i have installed Oracle 9ias release 2 patch 3 under winnt.
    i review the current jobs queue of my report server and i have a job started since two day ago. i try to kill that job use a command like this
    http://servername/reports/rwservlet/killjobid1281?server=servername
    and i recieved the following error
    can't kill the job with id 1281REP-50125: Excepción obtenida: org.omg.CORBA.UNKNOWN: minor code: 0 completed: No
    anybody can help me? i want to kill this job without have to restart the Report service

    time for process identification and pskill I think

  • APEX_PLSQL_JOB: How to end/kill jobs

    Hi,
    I'm wondering if there's a good way to kill jobs that were created using APEX_PLSQL_JOB.
    I have a situation where I create a job using APEX_PLSQL_JOB. The process that it is executing will take a long time to run. After a while I decide that I need to end this job since it's slowing down the server. How can I terminate it?
    I've tried the following:
    - Kill the Oracle session that is executing the code. This terminated the process but just restarted it again a few seconds later
    - Purge the process using APEX_PLSQL_JOB.PURGE_PROCESS. This removed it from the list of APEX PL_SQL jobs in the APEX_PLSQL_JOBS view. It had no effect on the processing of the job.
    Any other ideas on how I can kill the process that I started?
    Thank you,
    Martin
    [http://apex-smb.blogspot.com/]

    On a related note, this is yet another great example of when to use the database resource manager. You could:
    - create a resource consumer group called "LONG_RUNNING_STUFF"
    - that group gets dropped to say 5% CPU after 5 min (just as an example)
    - any session in that group that has an operation that lasts longer than 20 minutes automatically killed (just as an example)
    - in your job code, make a call to DBMS_SESSION.SWITCH_CURRENT_CONSUMER_GROUP() to have that session put itself into the LONG_RUNNING_STUFF group (you need to assign a priv for this)
    It's a great way to let the db manage itself so you don't have to monitor sessions. You might also consider instrumenting your code with dbms_application_info.set_session_longops()
    Tyler Muth
    http://tylermuth.wordpress.com
    [Applied Oracle Security: Developing Secure Database and Middleware Environments|http://sn.im/aos.book]

  • Write a Dbms_scheduler to run a job frequently

    Hi,
    I need to write dbms_scheduler to run the job on monthly basis which would delete data from database which are of 2 year old from sysdate.
    For Eg: I have 50000 records in my table which are of differetn dates stored in database since 3 years.
    If I run the job today, records which are created before today's date 2 years back should be deleted.
    Can any one help me in step by step process as how can I do it as I am new in writing jobs.
    Thanks in advance.

    HI, thx for the info.
    I want to run this job from front end application code (calling as a procedure within java or oracle bpm programming) instead of running from database level.
    How can I do that. How can I pass arguments for this as I have parameter for my procedure. Below given are my procedure and job.
    create or replace
    procedure requests_delete_proc(p_request_date string)
    as
    request_count number;
    nodatafound exception;
    begin
    select count(request_id) into request_count from max_request_dtls
    where requested_date < to_date(p_request_date,'dd/mm/yyyy') - (2*365);
    if request_count <> 0 then
    delete from max_req_history_dtls
    where request_id in
    (select request_id from max_request_dtls
    where requested_date < add_months(to_date(p_request_date,'dd-MON-yyyy'),-(2 * 365))
    delete from max_request_dtls
    where requested_date < add_months(to_date(p_request_date,'dd-MON-yyyy'),-(2 * 365));
    dbms_output.put_line('requests deleted');
    commit;
    else
    raise nodatafound;
    end if;
    exception
    when nodatafound then
    dbms_output.put_line('no records found for mentioned requested date');
    end requests_delete_proc;
    BEGIN
    DBMS_SCHEDULER.create_job (
    job_name => 'JOB_DELETEOLD',
    job_type => 'STORED_PROCEDURE',
    job_action => 'requests_delete_proc',
    number_of_arguments => 1,
    start_date => SYSTIMESTAMP,
    repeat_interval => 'freq=MONTHLY; BYMONTHDAY=1; byhour=1; byminute=0',
    end_date => NULL,
    enabled => TRUE,
    comments => 'JOB_DELETEOLD');
    END;
    BEGIN
    DBMS_SCHEDULER.SET_JOB_ARGUMENT_VALUE (
    job_name => 'JOB_DELETEOLD',
    argument_name => 'requested_date',
    argument_value => sysdate);
    END;
    Can I club these 2 and put them in a package and call the same in code.
    pls suggest.

  • Can not delete job for BW process chain.

    I can't kill or cancel this job.
    this job status keeping "Killing" during 2 days.
    sub-job was completed.
    How can I force delete this job?
    Job 29006 - CCMS job BI_PROCESS_ODSACTIVAT (GBD/100) Actions
    Description CCMS job BI_PROCESS_ODSACTIVAT (GBD/100)
    Job Id 29006
    Parent Job 29005 - BW Process X0DMMB52_ACTIVATE (GBD/100)
    Definition SAP_CcmsJob
    Comment This job represents a monitored SAP batch job. The SAP batch job runs under control of the SAP batch system.
    Owner Subject Redwood System
    Status Killing
    Files 
    Name Size 
    log 23895 Details u2026
    Queue GBD_Queue
    Process Server GBD_ProcessServer
    Forced Process Server GBD_ProcessServer
    Priority 50
    Start time Requested: Sep 12, 1:43:19 PM, Actual: Sep 12, 1:43:19 PM (0:00:00:000 difference)
    Requested Start Time Type User Set
    Next Submit Base Time Sep 12, 1:43:19 PM
    Scheduled Start Sep 12, 1:43:19 PM
    Run time Sep 12, 1:43:19 PM - Sep 12, 1:43:43 PM (0:00:24 elapsed)
    Remote Information 
    Remote System SAP GBD 100
    Remote Status Finished
    Remote Id J/RFCUSER/BI_PROCESS_ODSACTIVAT/13430000
    Remote Event RSPROCESS
    Remote Creation Time Sep 12, 1:43:00 PM
    Remote Run Start Sep 12, 1:43:19 PM
    Remote Run End Sep 12, 1:43:43 PM
    Parameters 
    Job Definition Parameter In Value Out Value 
    JOBNAME BI_PROCESS_ODSACTIVAT   Details u2026
    JOBCOUNT 13430000   Details u2026
    CLIENT 100   Details u2026
    SAP_USER_NAME RFCUSER   Details u2026
    SHOWLOG Y   Details u2026
    SHOWSPOOL Y   Details u2026
    DELETE_JOB N   Details u2026
    Creation Time Sep 12, 1:44:01 PM
    Last Modification Time 9:48:41 PM
    Edited by: Park Jeonghwan on Sep 19, 2008 3:02 PM

    Hi Park,
    From what you describe I am assuming that the you had a BW Process Chain running from CPS and then decided to kill it.  This autoamtically created a child job that's supposed to stop the Process Chan in SAP that should have, once complete, updated the parent job from it's 'Killing' status to 'Killed'.  Now you find that the BW Process Chain in SAP is/was stopped, the CPS child job has also completed and yet your Process Chain job in CPS still has a 'killing' status.  Because it is stuck in this status you cannot do anything with it, i.e. none of the scheduling options in the Redwood Explorer are active.
    Assuming the above interpretation is correct then you probably have only one option and that is to force an update in the Repository itself.  I also assume you're using either v6.x or v7.x.
    To confirm the status of the current job in preparation for the update you can do the following query in the Redwood Shell when logged in as SYSJCS:
    select status from rws_job$ where job# = <the job number of the job currently in a 'killing' status>;
    This should return 1 row and the value for status should be 'G'.
    To update the status you can use the following command from the Redwood Shell when logged in as SYSJCS:
    update rws_job$ set status = 'K' where job# = <the job number of the job currently in a 'killing' status>;
    To confirm your update was successful before finally committing use the first query again..
    select status from rws_job$ where job# = <the job number of the job which previously was in a 'killing' status>;
    This should return 1 row and the value for status should be 'K'.
    You can now commit the change or rollback if you've made a mistake
    commit;
    Normally it is not recommended that CPS users modify any of the underlying tables so you may want to check with support that they are ok with you executing this command.
    You may also want to check that you have the latest Service Pack for CPS as this may mitigate this kind of issue from appearing again.
    Regards,
    Simon

  • [SOLVED] X freezes after "exit"; can't kill X nor use the keyboard

    Hi!
    I've got a problem with my X server on my fresh installed Arch system. I followed the "Beginner's Guide" and edited the .xinitrd to start xterm for testing. This works well, but unfortunately X seems to freeze when I want go back to the shell via "exit" or when I want to change to another virtual console (Ctrl-Alt F1).
    When this happens, my screens go black and my keyboard doesn't work anymore, however I can log in via SSH. I can't kill X and the fourth core of my cpu is at 100%.
    This happens when I use a auto-configured xorg.conf from nvidia-xconfig (http://paste.pocoo.org/show/224004/) or when I use my "old" configuration from Ubuntu 9.10 (http://paste.pocoo.org/show/224005/). When I don't use the xorg.conf file at all, then X wont even start.
    I've got a Xorg.0.log from the test with the nvidia-xconfig generated xorg.conf: http://paste.pocoo.org/show/224002/ I can't see what's wrong here.
    Thanks for your help!
    Last edited by quaec (2010-06-11 22:08:35)

    Ok, I had started to write that the nvidia-beta driver didn't changed anything, but after a reboot it seems to work.
    So, with the nvidia-beta driver from the AUR and the following x.org configuration it works:
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    # Screen 1 "Screen1" RightOf "Screen0"
    # InputDevice "Mouse0" "CorePointer"
    # InputDevice "Keyboard0" "CoreKeyboard"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    EndSection
    Section "Module"
    Disable "glx"
    Load "glx"
    Load "dbe"
    Load "dri"
    Load "record"
    Load "dri2"
    Load "extmod"
    EndSection
    #Section "InputDevice"
    # Identifier "Keyboard0"
    # Driver "kbd"
    #EndSection
    #Section "InputDevice"
    # Identifier "Mouse0"
    # Driver "mouse"
    # Option "Protocol" "auto"
    # Option "Device" "/dev/input/mice"
    # Option "ZAxisMapping" "4 5 6 7"
    #EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    EndSection
    #Section "Monitor"
    # Identifier "Monitor1"
    # VendorName "Monitor Vendor"
    # ModelName "Monitor Model"
    #EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
    ### [arg]: arg optional
    #Option "SWcursor" # [<bool>]
    #Option "HWcursor" # [<bool>]
    #Option "NoAccel" # [<bool>]
    #Option "ShadowFB" # [<bool>]
    #Option "UseFBDev" # [<bool>]
    #Option "Rotate" # [<str>]
    #Option "VideoKey" # <i>
    #Option "FlatPanel" # [<bool>]
    #Option "FPDither" # [<bool>]
    #Option "CrtcNumber" # <i>
    #Option "FPScale" # [<bool>]
    #Option "FPTweak" # <i>
    #Option "DualHead" # [<bool>]
    Identifier "Card0"
    Driver "nvidia"
    VendorName "nVidia Corporation"
    BoardName "GT200 [GeForce GTX 260]"
    BusID "PCI:1:0:0"
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
    ### [arg]: arg optional
    #Option "SWcursor" # [<bool>]
    #Option "HWcursor" # [<bool>]
    #Option "NoAccel" # [<bool>]
    #Option "ShadowFB" # [<bool>]
    #Option "UseFBDev" # [<bool>]
    #Option "Rotate" # [<str>]
    #Option "VideoKey" # <i>
    #Option "FlatPanel" # [<bool>]
    #Option "FPDither" # [<bool>]
    #Option "CrtcNumber" # <i>
    #Option "FPScale" # [<bool>]
    #Option "FPTweak" # <i>
    #Option "DualHead" # [<bool>]
    Identifier "Card1"
    Driver "nvidia"
    VendorName "nVidia Corporation"
    BoardName "G98 [GeForce 8400 GS]"
    BusID "PCI:2:0:0"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    SubSection "Display"
    Viewport 0 0
    Depth 1
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 4
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 8
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 15
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    #Section "Screen"
    # Identifier "Screen1"
    # Device "Card1"
    # Monitor "Monitor1"
    # SubSection "Display"
    # Viewport 0 0
    # Depth 1
    # EndSubSection
    # SubSection "Display"
    # Viewport 0 0
    # Depth 4
    # EndSubSection
    # SubSection "Display"
    # Viewport 0 0
    # Depth 8
    # EndSubSection
    # SubSection "Display"
    # Viewport 0 0
    # Depth 15
    # EndSubSection
    # SubSection "Display"
    # Viewport 0 0
    # Depth 16
    # EndSubSection
    # SubSection "Display"
    # Viewport 0 0
    # Depth 24
    # EndSubSection
    #EndSection
    Thanks for your help, BKLive!
    Last edited by quaec (2010-06-11 22:08:05)

  • I click a link but it doesn't open. Instead I get a popup saying "Open the link in a new window," "Open link in a new tab," etc. How can I kill this popup or whatever it is forever?

    I click a link but it doesn’t open. Instead I get a popup saying “Open the link in a new window,” “Open link in a new tab,” etc. How can I kill this popup or whatever it is forever?

    That happens if the server sends the file as text/plain.
    You can see this if you open "Tools > Page Info > General": Content-Type: text/plain
    Files send this way will always open in a tab.
    *https://developer.mozilla.org/Tools/Web_Console

  • Cannot Kill Job, REP-56098:

    I have tried running a jsp with a customize.xml file to modify my data source using servlet.
    First I got an error saying there was a syntax error in my where clause. I fixed the error in my ml then tried to run the report again. It seems report server is hung.
    I am unsuccessful in killing the job through Enterpise Manager and also using killjobid
    This is the error I am getting:
    Cannot Kill Job with Job ID 181REP-56098: Bad engine name: null
    Is there anyway to kill this job outside of EM?
    Using 9.0.2 9iAS
    Any help is appreciated.
    Cindy

    hello,
    i've seen this issue before and think that it is fixted in either the 9.0.2.1 or the 9.0.2.2 patchset.
    regards,
    philipp

  • LMS 4.2.1 upgrade from 4.0.1: can't display job information : http 404 error

    HI,
    Since customer has upgraded from 4.0.1 to 4.2.1, he can't display job information when he select job number.
    He has http 404 error.
    He has same error when he want to see threshold configuration:
    Menu Monitor>Fault Monitor > threshold setting
    We noticed that there is many files on C:\Program Files (x86)\CSCOpx\files\rme\dcma\devfiles.
    We can see that CollectionSummary has 4 collector name which are loading status:
    Configuration-> Dashboard -> Configuration
    - Inventory collection
    - Config archive
    - EnergyWise
    - Fault Discovery
    Many thanks for your help,
    Elisabeth

    Doesn't look like it was tested.  Checking why ...
    Zach

  • BP data services:Can I config Job server via commandline?

    Hi Experts,
    Can I config Job server via commandline?
    I need to create a new Job server JS_TEST01/port3501 and add the repository to this Job server and restart Job server via command line,like I can create repository via command RepoManBatch.exe
    C:\Program Files\Business Objects\BusinessObjects Data Ser
    vices\bin>RepoManBatch.exe
    Usage:
    -U<User> : Repository login user
    -P<Password> : Repository login password
    -S<Server> : Repository server name
    -N<DatabaseType> : Repository database type
    -Q<Database> : Repository database
    -g : Repository using Windows Authentication
    (Microsoft SQL Server only)
    -t<Type> : Repository type: local, central, pro
    filer
    -c : Repository create
    -u : Repository upgrade
    -v : Repository version
    -d : Show details
    -a : Repository security
    C:\Program Files\Business Objects\BusinessObjects Data Ser
    vices\bin>
    Thanks
    Miller

    我已经装好了SQL server express 和Data service 12.2,我可以通过【Data Services Server Manager-C:\Program Files\Business Objects\BusinessObjects Data Services\bin\AWServerConfig.exe】 来创建Job server [JS_Test01] 和add a repository给这个Job server,现在我的需求是,我希望通过command line在来完成这个动作。
    就好像使用DOS 命令RepoManBatch.exe创建repository一样。
    C:\Program Files\Business Objects\BusinessObjects Data Ser
    vices\bin>RepoManBatch.exe
    Usage:
    -U<User> : Repository login user
    -P<Password> : Repository login password
    -S<Server> : Repository server name
    -N<DatabaseType> : Repository database type
    -Q<Database> : Repository database
    -g : Repository using Windows Authentication
    (Microsoft SQL Server only)
    -t<Type> : Repository type: local, central, pro
    filer
    -c : Repository create
    -u : Repository upgrade
    -v : Repository version
    -d : Show details
    -a : Repository security
    C:\Program Files\Business Objects\BusinessObjects Data Ser
    vices\bin>

  • Can't kill hung process in Leopard

    I am having very annoying issue with Leopard. Time to time some applications get stuck and I can't kill them using "force quit" or command line "kill -9". Most of the times when this happens, I can't log out and start new applications. I cannot even restart the computer cleanly as it cannot log me out cleanly (BTW, is there a force log out or force restart?) Once this happens everything goes downhill and eventually I have to do hard reboot by pressing power off key in the back. That creates another problem. I have a USB external disk that I use as time machine backup. After I do hard reboot and machine boot up, finder thinks that index on the external disk is not up to date and starts indexing it from scratch and takes 2-3 hours. Also, when it starts building index, it spends good 5 minutes or so trying to estimate the index building time. During that time, I cannot search anything on the machine.
    I called Apple support twice. First they asked me to do "archive and install". I did that but problems still continued. After that they said do "disk check" and "disk permissions check". "Disk check" didn't show any problem. "Disk permissions check" found many files with permissions problem and they were all fixed. Even after that the problem continues.
    I have 4 users on the machine. I am the administrator. Others are limited accounts. I have noticed hang problem with all accounts. On my account it occurs with many processes like Safari, imovie, iPhoto, and even finder. On other accounts I have seen it mostly with Safari. I saw the problem with Safari on other accounts even with Tiger. On other accounts though I am able to kill the application using "force quit" but not on my account.
    I think the root cause of all of these is Leopard's inability to force-kill a process. I have a hunch that this happens (not able to kill app in my account) with processes that deal with devices. For example, Iphoto deals with external memory card, Imovie deals with external digital camcorders and so on.
    I have an open case with Apple support. I want to see if others are running into same issue.

    I was having these very same issues.
    I wiped the drive with zeroes and tried to reinstall Leopard from scratch. Install failed. Checked the install DVD, it passed its own test. Verified the hard drive, fine.
    Reinstalled Tiger. Everything fine. Tried to upgrade to Leopard, install DVD was again failng.
    I did some research.
    *It turns out that Leopard on PPC Macs will freak out on many types of third party RAM.*
    I removed the aftermarket stick of RAM and Leopard installed just fine and ran fine. No more problems. I put the RAM back in, problems returned.
    There you have it. Tiger was fine with the memory, Leopard isn't. And this is for some reason a PPC-specific issue.
    Search for:
    "The installer could not validate the contents of the ‘base system’ package. Contact software manufacturer for assistance."
    Here are two to get you started:
    http://forums.macrumors.com/showthread.php?t=374917&page=2
    http://www.mobrec.com/2007/10/27/leopard-is-damage-if-you-are-on-powerpc-do-not- install/
    The key is in realizing that both sets of symptoms occur for some people because they're 'lucky' to get Leopard installed in the first place. If you wipe and install, you get to witness all the behaviors under a controlled experiment (memory in vs out).

  • How can i kill the Adobe Reader session right away?

    Hello
    I have developed an interactive form, my_form. And we launch / render this my_form in (ERP / SAP) application's portal IE browser, well.
    Say, user opened this form, worked on it, submitted (we have our own submit button) and closed the window by clicking the top right corner's X button, but user is seeing stll the red Reader icon on the bottom bar, even thought the user is closed the window completely
    If user try to close this reader red reader icon explicitly, user is getting the other exception popup as Runtime error as described here http://forums.adobe.com/thread/391738
    Hence, am thinking to KILL the reader session right away the moment user closes the window, pls. let me know,
    1) How can i KILL the reader session via JavaScript, is it possible?
    2) if so, what the JS code i need to put and
    3) in which event pls.?
    Thank you

    In to my original posting, am attaching these pics
    On my desktop it looks like below,
    1) Even though user is closing the window but still the reader icon is lying on the bottom
    2) Once user double cliks the above red icon, user is getting below popup
    Thank you

Maybe you are looking for

  • How can I see my entire page when editing?

    When i edit my web page, the far right column is over shadowed by the middle column. so i can not see any of my text in the rows of that column unless i shrink the middle column there is no scroll at the bottom. so is there a way to view the entire p

  • ITune reinstall issue with Windows Vista

    Because of a malware issue I was recently forced to remove, among all the others, my iTunes program from my computer (Dell Studio 1535 using Windows Vista Home Premium Service [OEM] Pack 2). A few days ago I went to the Apple site and downloaded the

  • Mail doesn't have number next to dock icon anymore?

    Also it doesn't show if an email has an attachment or not.. just wondering if anyone else is missing these elements?

  • Program can't find device

    Help! I just got my Pre today and I am trying to download apps for it.  but for some reason the Webosquickinstall  can't find my device. I am hooked up to my computer and the phone is charging. What am I doing wrong? Post relates to: Centro (Sprint)

  • Problem with Ipod updater

    so here's my problem-- I tried putting new music on my ipod, and it told me that my ipod needed to have a software update. ok, no problem. downloaded the software update, and when i tried to update the ipod, it told me that it didn't need an update,