UCCX 8.5.1 - Bulk Team Deleting

Hi guys,
Wondering if anyone knows a way to bulk delete Teams in 8.5.1? Did an upgrade of UCCX 8.0 to 8.5.1 and everything was fine, it wasn't until a little later that we realised we were experiencing the following bug:
CSCtq40046            Bug Details
More than one default Team existing
Symptom:
Multiple default teams are created.
Conditions:
UCCX 8.5.1Workaround:
Apply the 8.5.1 cop fille which resolves the bug.
http://www.cisco.com/cisco/software/release.html?mdfid=270569179&softwareid=280840578&release=8.5(1)SU1&relind=AVAILABLE&rellifecycle=&reltype=latest
Unfortunately by the time we realised and found the patch we ended up with over 900 default teams in the system and I would like to try avoid having to manually delete all the those teams if at all possible...
Cheers,
Nathan

Scratch that. I was waiting on the guys to install the patch itself when I posted this. The fix appeared to have deleted all the duplicate teams, phew!

Similar Messages

  • Update skills (competence level) UCCX 8.5 via bulk / SQL?

    Hi,
    we want to update the skills (competence level) of almost all users at UCCX 8.5 and we have the new skill level in excel table.
    Is there any why to update these skill at UCCX 8.5 via bulk or SQL command instead of manuel updating every user?
    BR
    Michael

    OK this is not bad but is there also any why to update the skills via SQL statement in the why I can read out the skills from UCCX via
    run uccx sql db_cra select s.skillname, rsm.competencelevel, r.resourceLoginID, r.extension, r.resourceFirstName, r.ResourceLastName,t.teamname from skill s inner join resourceskillmapping rsm on s.skillid = rsm.skillid inner join resource r on rsm.resourceskillmapid = r.resourceskillmapid join team t on r.assignedteamid = t.teamid where s.active = 't' and r.active = 't' order by s.skillname, competencelevel, resourceloginid

  • HT4528 How do I erase contacts in a bulk without deleting all my contacts?

    I need help trying to delete contacts in a bulk without deleting all my contacts.

    bispymusic wrote:
    Use iCloud to sync your contacts to your Mac or PC and use the contact program (Mac = Contacts/Address Book, or PC = Contacts/Outlook)
    iCloud does not do this on the PC.
    This can be done on Mac or PC using iTunes.

  • Bulk Role Delete

    I want to unassign a set of roles for a number of users and delete the user accounts for these users.Is it possible to do this using the Bulk Action option available in SUN IDM 8.1? If so what should be the format of the csv file I need to give as input? Currently I am giving a file with the content:
    user,command,roles,resources
    206812,delete,|Remove|A:Portal LDAP:All Users,MYNMG
    But this is only deleting the resource MYNMG. It is not unassigning the role A:Portal LDAP:All Users. Can someone tell me what the error in my input file is?
    Also which option should I choose from the Action dropdown?

    Hi,
    This is the command file I use to remove roles.
    command,user,waveset.roles
    Update,206812,|Remove|A:Portal LDAP:All Users
    Hope this helps

  • Bulk email deletion

    is it possible to delete all bulk email at once instead of individually deleting each email?
    CR

    No but there is a setting by account to automatically remove messages marked for deletion and available in the account's Trash mailbox after one day.

  • Bulk Mail Deletion

    I'd like to be able to delete multiple messages simultaneously on my iPhone. I have a Mobile Me account and a Yahoo mail account and I haven't found a way to delete more than one message at a time. Is this possible to do?

    Yes. In your Inbox (or whatever mailbox you want to bulk delete from) tap the Edit button at the top right, then tap the circles to the left of each message you want to delete, then tap Delete at the bottom.

  • Bulk-action delete-all fail

    I am trying to delete all WebApp items (before importing updated records), but after the process runs nothing is deleted. I have done this before without a problem, so I know how it should work. Have tried logging off and logging in as a different user, but get the same FAIL result.

    I am having this same problem. Please keep me posted on a solution, as I will keep you in the loop as well.

  • HT3376 I have a Yahoo plus account. When I set up the mail account the Bulk Mail (Trash), Deleted Messages,Draft,Drafts,Junk, and Sent Folders all appear on my iPhone. Is there a way to prevent this?

    I have a Yahoo Account. When I set up the mail account the  Bulk Mail, Deleted Messages, Draft, Drafts, Junk, Sent, and Sent Messages appear on all of my iPhones, my PC, my Macbook and any other wifi product that receives mail. Can anyone tell me how to get rid of these duplicate mailbox folders??
    Thanks

    I just called apple care to even know how to respond to this answer. I am very old and this was my first post ever. I appreciate you taking the time to give me an answer. I also ask them how to delete this account because every time I log in it wants me to change my password and I have run out of passwords. I don't even know what it means when it ask me the community I want to be in.
       The only thing I know about syncing is syncing my iPhone to my MacBook Pro. I apologize that I am so technically stupid. Does mail have syncing???
    Thank you even if I never figure out how to get back to this site again.

  • Regarding bulk delete..

    Hi,
    I have areound 9400k reocrd should be deleted I am using for all delete with bulk collect . here i s the code for ref.
    declare
    2 type cust_array_type is table of number
    3 index by binary_integer;
    4 employee_array cust_array_type;
    5 v_index number;
    6 begin
    7 select empl_no bulk collect
    8 into employee_array from employee_history;
    9
    10 FORALL i IN employee_array.FIRST..employee_array.LAST
    11 delete from ord where empl_no = employee_array(i);
    12
    13 v_index := employee_array.FIRST;
    14 for i in employee_array.FIRST..employee_array.LAST loop
    15 dbms_output.put_line('delete for employee '
    16 ||employee_array(v_index)
    17 ||' deleted '
    18 ||SQL%BULK_ROWCOUNT(v_index)
    19 ||' rows.');
    20 v_index := employee_Array.NEXT(v_index);
    21 end loop;
    22 end;
    still data is not deleting pllease do advise

    user13301356 wrote:
    but normal delete is taking more time so to improve performance using bulk collect delete.
    so what is best approach to delete to go by bulk delete or normal delete.Look at it in simple terms...
    Method 1: Delete all Rows
    Method 2: Query all Rows then Delete all Rows
    which one, logically to you, is doing more work than the other?
    If your delete is taking a long time, that's because:-
    a) you haven't got suitable indexes to determine the records to be deleted on the target table
    b) you haven't designed the table to use parititions which could then simply be truncated (costed optional, licence required for partitioning)
    c) you are just deleting a lot of data and it's going to take time.
    No amount of PL/SQL coding around the basic SQL of a delete is going to improve the performance. You can't make any code delete the rows faster than a delete statement itself.

  • How to delete multiple messages in the same mailbox all at once? Unity Connection

    I just was assigned the task of administrating three Unity Connection servers that are networked. The Operator mailboxes on each system have been taking messages since 2010 and have over 5 thousand messages in them (nearly 3 mega bytes). I've corrected the set up so the mailboxes no longer are taking messages, but would like to delete all the new messages in order free up memory resources, and I don't want to undo all the Call Handler relationships in order to delete the mailboxes and then recreate them, etc. I used the PCA tool  to clean up the Operator MBX on a standalone Unity Connection that had nearly 1800 messages, but it took nearly 30 minutes for the PCA tool to load and another 4.5 hours to delete one message at a time (major carpal tunnel afterwards!).  For these mailboxes with 5-6K messages, the PCA tool was  not loaded after 3 hours!   Is there a faster, more efficient tool for deleting all new messages in a single mailbox? (i.e., Message Hunter?)

    Hi There,
    +5 to heath for his good notes!
    One nice way with Unity Connection is with the use of this excellent tool from the great suite of Unity Tools (use the ** reset" feature **).
    Unity Connection Bulk User Delete   
    For resetting users you have the option of emptying the mailbox,  resetting greetings, deleting voice names,  resetting passwords,  removing private lists and a number of other  options you may choose.   For installations where the user base “changes  over” frequently such as  schools this may be a nicer option.  This  option is also allowed for  CoRes installations since it does not involve  the removal of user  objects from the Connection database.
    http://www.ciscounitytools.com/Applications/CxN/BulkUserDelete/BulkUserDelete.html
    Cheers!
    Rob
    Please support CSC helps Kiva
    https://supportforums.cisco.com/blog/12122171/cisco-support-community-helps-kiva

  • Is there a way to delete all the messages for a user in CUC 8.6 ?

    With Unity it was possible as an administrator, to delete all the messages in a user's mailbox, directly from the server (Windows).  Now, with Unity Connection (8.6.1) is there a way to do the same ?  When I'm logged as an administrator, I can see, for every user, the number of messages and the size (Mailbox menu) that they have in their mailbox, but what I want to do is to be able to delete all the messages for a specific user... Is it possible with CUC 8.6.1 ?

    Hi there,
    The best way with Unity Connection is with the use of this excellent tool from
    the great suite of Unity Tools (** "reset" feature);
    Unity Connection Bulk User Delete   
    For resetting users you have the option of emptying the mailbox, resetting greetings, deleting voice names, resetting passwords, removing private lists and a number of other options you may choose.  For installations where the user base “changes over” frequently such as schools this may be a nicer option.  This option is also allowed for CoRes installations since it does not involve the removal of user objects from the Connection database.
    http://www.ciscounitytools.com/Applications/CxN/BulkUserDelete/BulkUserDelete.html
    Cheers!
    Rob

  • LO Set up tables deleted while upgrading the source sys from 4.6c to ECC6

    As a part of ECC6.0 upgrade tasks, our BASIS team deleted all the LO set up tables in the source system(4.6C) and . After the upgrade, we are not finding any queues in RSA7 or in SMQ1. But, we have a lot of  Delta's and few full loads are running on BW (3.1) side for these LO's.
    1. What are the steps we need to take inorder to enable/ work the existing delta's and Full Loads in BW(3.1).  With the new ECC6.0, we don't have plan to enhance any data sources. So, do we need to set up / fill up the tables again for LO's? If yes, Since we have huge data in source system , it will take a lot of time to fill the tables,,,,Is there any option to fill the tables only for the specific period and enable deltas?
    Please help urgently interms of providing step by step guidelines.
    2. We also have the following DS (Delta enabled) with the existing source system. Please advise how to make to work for these delta's once after the source system upgrade.
    0PM_OM_OPA_2
    0PM_OM_OPA_1
    0FI_AR_4
    COPA DATA SOURCE
    Advance Thanks.

    BW USA,
    I think the options are given clearly. You will have to reload the data and I hope you have the DSO(Dataware House Layer) used in your BW side before the data is going to the Cube, otherwise you would have to do a slective delete and load that data to avoid duplication.
    There is one other way, but I have never tried it. I am sure your Basis team would have taken a backup of the system before upgrade. Try to find whether you can restore the delta queue (advice from SAP would be helpful as there are many control tables need to be in sync). If this option is not possible then you would have to do what is already given.
    Any 0FI_* data sources, you can go by the last available period and you can reinitialize without data transfer and load the missing whole period, as these are after image data you would have a DSO inbetween and you should not have any problems.
    For CO-PA whether it is Account or Cost based you can easily re-establish the delete and covere the missing by fiscal period load with repair.
    The steps for FI & CO are below.
    1. Reload missing data by period with FULL LOAD WITH REPAIR option.
    2. Re-init with conditions (if you already had any) without data transfer.
    I think this should fix your issues. I have not used the other two data sources.
    Goodluck,
    Alex(Arthur Samson)

  • IOS8.1.1 - Delete photos from your iPhone.

    I want to delete photos from iPhone 5s iOS8 but I want to keep them in my iPhoto. Any suggestions?

    To Delete Photos on iPhone:
    For Mac users,  using Image Capture may be a good way to delete photos.
    To find it, simply tap it into the search in Finder. Connect your iPhone, open Image Capture and you'll be able to browse the photos on your iPhone. From here, you can select images in bulk and delete them!
    Is this helpful?

  • Deleting recorded name in UConn 8.5

    I have a user who wants to go back to using the system greeting where it does a text to speech translation of her Display Name.  The problem is that she has already recorded her name.  So the system greeting is using her recorded name.  Apart from deleting her mailbox and re-adding it, is there a way to get rid of the recorded name so it starts using the TTS version?                   

    Hi there,
    An excellent way with Unity Connection is with the use of this great tool from
    the fine suite of Unity Tools (** reset feature**);
    Unity Connection Bulk User Delete   
    For resetting users you have the option of emptying the mailbox ,  resetting greetings, deleting voice names, resetting passwords,  removing private lists and a number of other options you may choose.   For installations where the user base “changes over” frequently such as  schools this may be a nicer option.  This option is also allowed for  CoRes installations since it does not involve the removal of user  objects from the Connection database.
    http://www.ciscounitytools.com/Applications/CxN/BulkUserDelete/BulkUserDelete.html
    Cheers!
    Rob
    "Every fool's got a reason to feelin' sorry for himself" - Springsteen

  • To delete all instances of a particular bpel process using java APIs

    Hi,
    Which classes and methods are used for bulk instances deletion of BPEL process using APIs.

    Iam using this code for deleting instances in bulk,
    WhereCondition wc = WhereConditionHelper.whereInstancesClosed();
    IBPELDomainHandle domainHandle = locator.lookupDomain();
    BPELProcessId processId1 = new BPELProcessId("default","DBTest","1.0");
    domainHandle.deleteInstancesByProcessId(processId1);
    but iam getting Eceptions like
    Exception in thread "main" java.lang.Exception: Error deserializing return-value: java.io.InvalidClassException: com.oracle.bpel.client.BPELDomainHandle; local class incompatible: stream classdesc serialVersionUID = -6384534326625967840, local class serialVersionUID = -8310067783665200608
    Iam able to delete instances one by one using this code,
    ------------------- basic code-----------
    IInstanceHandle instance_handle[];
    instance_handle= locator.listInstances(wc);
    for(int x = 0; x< instance_handle.length; x++){
    System.out.println("Deleting instance "+instance_handle[x]);
    instance_handle[x].delete();
    But i want to delete instances in bulk,not one by one.Can you help me out in this.

Maybe you are looking for

  • IPod Touch Wi-Fi Issues

    i wi-fi was great until a few weeks ago when i upgraded to 3.0. Sadly enough the 3.0 was worse than 2.2 and it ruined my ipod my internet is unresponsive it crashes every 3 minutes and i have to re-enter my WEP Key (i had to write it on the back of m

  • Ibooks will not sync

    I did a restore on my iPad since it was crashing very frequently. Now, I can't get my books (PDF files) to sync. I have sync all books selected, and it shows they are supposed to sync, but nothing happens. This screenshot is after several "succesful"

  • Help! I figured out the problem - sort of.

    So I posted my problem two days ago. I found that only some of my pages were loading in Firefox 3. I didn't know why (see below for original posting). With a little experimenting, I have found that republishing the pages that "work" actually causes t

  • PC - Mac transfer

    I just received a G4 tower, and I want to transfer my iTunes library (~40G) from my PC to it. There is an existing wireless network in the house. I have plugged a crossover cable into both machines. No joy on either of those. The only way I have gott

  • InDesign CS4 vs. PageMaker

    I work for an agricultural equipment manufacturer. We are a bit behind on new software because most of what we publish is fairly simple. We primarily use PageMaker for our assembly instruction manuals and FrameMaker for our operator manuals. We prefe