ICM 7.5.9 deletes DD records older than 15 days

Hi guys,
I have a strange thing happening with our ICM 7.5.9 installation...
The Dialer Detail table for the Outbound Option deletes the records older than 15 days...
I checked the purge jobs and they all reference registry keys which have a value of 1000 + days...
This only happens with the DD table... all the other historical tables retain the data as set in the reg keys...
I have no clue where to start troubleshooting this... anyhelp is wellcome.

Below is the link to check the logs if the purge cycle on HDS was successful.
http://www.cisco.com/en/US/products/sw/custcosw/ps1001/products_qanda_item09186a008020f1e2.shtmlSo turn on the EMSTraceMask to ffff for rpl process on the AW and check the logs around mid night it should give you some clue.
Use the ICMDBA to check the size of your hds db if it is 80%+ full it will start purging
the tables.
eg trace would look like,
09:52:39 dis-rpl Trace: 80% of the available free space is used in
XX_hds database.
09:56:39 dis-rpl Trace: 80% of the available free space is used in
XX_hds database.
If you see similar messages expand the HDS db using the below link
http://www.cisco.com/en/US/products/sw/custcosw/ps1001/products_tech_note09186a0080094927.shtml
Hope this helps.
Shirish

Similar Messages

  • How can I set up a rule to delete all messages older than 6 months left in Apple Mail's main inbox?

    How can I set up a rule to delete all messages older than 6 months left in Apple Mail's main inbox?
    I have created other rules to move some of my daily messages into specific folders and I don't wish to auto-delete those.
    Just the general stuff that keeps piling up in my me.com main email box.  Mail such as FB announcements and other low priority stuff I want to look at before deleting but don't want to keep longer than a week or month.
    TIA
    thokitts

    Thanks, but I am looking for a more automated solution than hand marking emails as junk. I might as well move them to the trash myself.
    Again, these are emails I want to receive and quickly read, but not keep longer than a week or month or so. By setting a rule to toss any older than 30 days back then my Mail program (and thus my hard drive) won't be wasting so much space. For example, currently I have over 6000 read messages, with their attachments, in my main email box. I'd rather not have to physically attend to sorting the one I don't want out.
    The one I do keep for other reasons get moved into other folders.
    It seems this should be possible.
    thokitts

  • Powershell Command to permanently delete items in ALL users Deleted Items folder older than X days.

    Does anyone know a powershell command that can be run on Exchange 2010 SP1 that will permanently delete mail in the deleted items folder older than X days for ALL users in a specific database? This should include any user created subfolders in deleted items
    also.
    I know that seems bizarre to have user created subfolders in deleted items but we have found that users have discovered that if they create subfolders then their deleted items dont get purged at the regular retention period time.
    Thank You.

    Hi,
    For Exchange 2010 SP1, we can use search-mailbox and new-mailboxexportrequest to delete message in certain folder.
    Understanding Exchange Search
    http://technet.microsoft.com/en-us/library/bb232132.aspx
    Xiu Zhang
    TechNet Community Support

  • Why does my iCal delete all events older than a year? Is this a synch issue? I'm running Snow Leopard.

    Why does my iCal delete all events older than a year? Is this a syn issue? I'm running Snow Leopard.

    this has already been answered.
    please ignore my question.

  • Excahange 2007 Need to permanently delete all emails older than x years

    Cant get to the 2007 forum so don't know if this is the right place.
    Trying to permanently delete all mail older than 4 years from our Exchange 2007 server. I have worked with Powershell in 2010 (Exchange) 
    but I cannot run due to some restrictions with 32/64 bit powershell limitations in exchange 2007.
    I have searched google and these forums -- there has to be an easy way to do this or someone that can point me in the right direction.
    Thanks in advance

    Hi,
    In Exchange 2007, you can use the following cmdlet to delete emails older than the mentioned date from a mailbox.
    Export-Mailbox -Identity xxx -StartDate "xx/xx/xxxx" -EndDate "xx/xx/xxxx" -DeleteContent
    If you need to perform this on a set of mailboxes, paste all display names to a TXT file, name is as "test.txt". Run the following cmdlet.
    Get-Content test.txt | Export-Mailbox -StartDate "xx/xx/xxxx" -EndDate "xx/xx/xxxx" –DeleteContent –Maxthreads 4
    Hope this can be helpful to you.
    Best regards,
    Amy Wang
    TechNet Community Support

  • "A script that will delete perfstat snapshots older than 90 days with SPPURGE..."

    Hello to all my fine Oracle related friends...We are all one large extended Family...
    I want to create a script that will execute SPPURGE on Perfstat for snapshots that are older than 90 days.
    Now, I have Grid 12c Cloud Control up and running for all the Databases that we have...
    Should I use Grid 12c to execute the SPPURGE and just pass the parameters in like that?
    Or should I go "Old School" and make a Shell Script and schedule it in the crontab?
    What would you guys do?
    I want implement this for 41 "Standard Edition" Databases....some are "Data Guard".....
    Thanks,
    Xevv.

    Xevv Bellringer wrote:
    Hi Ed,
    I tried executing this manually and it's not deleting the snapshots at all.
    begin
    statspack.purge(trunc(sysdate-90),true);
    end;
    I even let it for an entire day and then altered the code like this...But when I execute it, it doesn't deleted the data..
    begin
    statspack.purge(trunc(sysdate-1),true);
    end;
    When I do a select sysdate -1 from dual; it gives the correct date?
    Could there be a "NLS Setting" some where causing this?
    How do you determine that it is not deleteding data?  (please show evidence)
    How, and how often, are you collecting a statspack snapshot?  (please show evidence)

  • Automatically Delete Calendar Events Older Than a Day old.

    I am trying to have SharePoint automatically delete any events that are a day old.  I have a vacation calendar that needs to remove any older dates and only keep up to date with the new ones.  I have tried to search for the solution and cant
    find anything.  I don't want to filter the events it needs to be removed.

    function Calendarcleanup() 
    #Get Site
    $Web=Get-SPWeb  "Site url" 
    Write-Host $Web.url 
    #Get the Target Calendar List
    $list = $web.Lists["XXXX"] 
    Write-host $list.title 
    #Query the list items based on your requirement
    $query=new-object Microsoft.SharePoint.SPQuery 
    $query.Query='<Where>
    <Lt>
         <FieldRef Name="Created"/><Value Type="DateTime">Today</Value>
    </Lt>
    </Where>' 
    $query.RowLimit = $list.Itemcount 
    #Get the itemcollection for processing
    $Items=$list.GetItems($query) 
    Write-Host $Items.count 
    #Loop through the items and delete them
    foreach($item in $Items) 
    Write-Host "Deleting" $item.Title 
    #Deleting items
    $list.GetItemById($item.ID).Delete() 
    Write-Host "Deleted" $item.Title 
    Calendarcleanup

  • How to delete calendar entries older than 2 years without recurring events

    The calendar files get larger and larger and slower and slower
    it would be nice to get rid of old entries
    recurring events that are active for less than 2 years shold NOT be removed

    I wanted that same function for myself, but could not find anything out there to do it. Since I am a professional programmer, I wrote a program in Python to do the job.
    My program has several limitations such as events only (no TO DO, no JOURNAL, no ALARMS, etc), but it was all I needed. The output is acceptable to Lightning and Google.
    If you are computer literate I could give you the source code. You would also need Python on your computer.
    An alternative is to take the exported .ics file and use a text editor on it to delete all the old stuff -- a very tedious process!
    In either case, the overall process would be to export the calendar to an .ics file, cut out the old items, delete everything from your calendar (or just create a new calendar), and then import the cleaned up .ics file.

  • Oracle Materialized View | Deletion of Records, Oracle Materialized View

    One question reg Materialized views.
    If as part of housekeeping of the Source database we delete some records (older records), will the materialized view also be updated with the deletion?
    I believe the answer is yes. In that case can we ensure that this delete does not happen?
    Is there anyway we can prevent MView refresh from deleting the records that is once inserted even if we delete the same records in source DB?

    This is a common scenario, particularly with materialised views that summarise detail data where you want to keep the summary but not the detail, and it is addressed in the documentation.
    The technique is to make the MV refresh on demand, delete the data from the detail tables, and use the CONSIDER_FRESH procedure to prevent the changes propagating to the MV. You'll probably find it in the docs by searching on DBMS_MView.Consider_Fresh. There are a few warnings to note I think.

  • Delete messages older than a date except personal folder

    Hello everyone,
    I have been spending a lot of time searching and testing how to delete all items older than 6 months in a user mailbox, but this rule it cannot be applied just one personal folder named "personal". I have been reading about retention policy and
    retention policy tags, but I can't figure out how to use that to keep all items older than 6 month in personal folder.
    could anyone tell me if I am right with retention policy or it's better other way?
    thank you in advice

    Hi,
    In Outlook client, we can set AutoArchive for all folders to delete all items older than 6 months except for “Personal” folder one by one.
    If you want to use retention policy in Exchange side, we can use retention tags and retention policies to have a try. there are three types of retention tags:
    Default policy tag (DPT), Retention policy tag (RPT), Personal tag.
    For your scenario, we can create a personal tag applied for this Personal folder. For example,
    delete messages older than 3 years for this personal folder. Then apply this personal tag for Personal folder in Outlook. And the Personal folder items are all tagged. After that, we can
    applying default policy tags (DPTs) to mailboxes to manage the retention of all untagged items.
    Personal suggestion, since the delete action is only used for one specific mailbox, I suggest we can use AutoArchive in Outlook side to achieve it.
    Regards,
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Winnie Liang
    TechNet Community Support
    Hi Winnie Liang,
    Thank you for answer. I would like to do all tasks from exchange side, so I know how to apply a retention policy to a mailbox for deleting all older than 6 months. But how can I apply the personal policy tag to a personal folder's users?
    All involved users in this requirement are warned that they must let all personal messages in "personal" folder named "personal".
    regards

  • Archiving orders in CSC which are older than 6 months.

    Hi All - We are trying to implement this as we are facing lot of performance issues in PRODUCTION CSC. Anybody who knows, what configuration can control indexing date wise and delete orders indexed, older than 6 months?

    Interesting. I changed them all to 720 and expired.sites to 50000 just for the heck of it.
    Now how to import my old history back in. I have FEBE and and old backuup from March 2010. It has history back to 10.2009 in it's places.sqlite. I have also exported that history as history.json.
    After creating dummy FF profiles and dummy xmarks accounts, then disabling Firefox sync:
    I have tried having FEBE restore that history. It does not merge the two, it only replaces.
    I tried having Xmarks sync my current history with that history. So far it seems to only delete most of the old history and insert the new. Now that I have changed the history values we spoke of in about:config I might try this approach again. I actually don't know what the Xmarks history limits are yet because the feature is very new. (Little nervous)
    I also have Firefox Sync to mess around with but not sure if I trust it since it doesn't have an overwrite or restore option.
    Any other ideas?

  • Records in a table that are not older than two weeks

    Hey everyone,
    I have a mysql table which has a column DATE which contains the date the enty was inserted
    I need to write a script which keeps only those records that are no older than two weeks.
    Can this be done in sql?
    I can do it in Java but I guess this is not the most efficient way.
    I use jsp and servlets in my app.

    I just tried out the above code:
    DELETE FROM myTableHere  WHERE DATE_SUB(CURDATE(),INTERVAL 14 DAY) <= DATE;This is the error that I got:
    mysql> DELETE FROM myTableHere WHERE DATE_SUB(CURDATE(),INTERVAL 14 DAY) <= DATE;
    ERROR 1054 (42S22): Unknown column 'DATE' in 'where clause'
    mysql>
    my sql table has the currentDate column which specifies the current date and time when this entry was inserted into the DB. To get current date and time I use 'now()' function of sql.
    what is the problem?
    Thanks.

  • How to delete data older than three years from DSO

    Hi  all,
    We needs to keep historical data in the DSO only for three years. One way of doing this is by selective deletion we can delete data older than three years but we want to make it authomated. Is it possible to add a process or ABAP program to delete data older than three years.
    If it is p[ossible by ABAP code then can you please give me sample code.
    Many Thanks in advance.
    Harman

    Some time for in case of huge volume of data selective deletion is not works, Try for "prunning" option.
    It's work as follows
    1)     Create DSO which is same replica of your Source DSO.
    2)     Create two transformation
         a) from Source DSO to Copy DSO
         b) Another is from Copy DSO to Source DSO
    3)     Transprort Last 3 years records to Copy of Source DSO using DTP Filter range for time.
    4)     Once data loading from Source DSO to Copy DSO get completed delete all data from Source DSO.
    5)     Now load data from Copy DSO to Source DSO.
    6)     After complete loading delete entire data from Source DSO.
    I use prunning process to one of my client and it's work perfectly.
    Regards,
    Sushant
    +919820849482

  • How to delete the record in Table

    Hi Guru's,
    i have Table which contain no.of Records.
    i want to deleted one record. if i go to Table maint.Generator....from table itself..
    how to do that... when we deleting the record. can we create new TR for that?
    can anybody tell me.
    Thanks in Advance,
    venkat

    Hi,
    it is answered, here for my table there is no Table Maint.Generator.
    i just explained how i have done it.
    i just simply gone into Debug mode. there
    code = Dele.
    i have given. then i came out from debug mode to Table. there i just got Delete button on application tool bar.
    i selected the record then icliked on Delete button.
    it is got deleted.
    But it is not asking for any new Transport Request.
    Regards,
    Venkat

  • How to delete the record in the file present in the application server?

    Hi,
      I have two questions.
      i) How can I delete a record based on some condition in the recordx in the file that is present in the application server?
      ii) How can I lock the users whiel one user is accessing the file on the application server?
    Thanks in advance.
    Suvan

    Hi,
    If u want a frequent deletion this approach to delete a record from a file will havee unnecesary copy of records from one file to another and deletion of one file and renaming activities.
    Instead what u can do is Add and field del_flag to ur record structure.
    If u want to delete the record from a file just mark this del_flag as 'X'.
    While processing u can have a loop like
    loop at it_XXX where del_flag <> 'X'.
    endloop.
    This will logically delete the record.
    When u r to finish the application at that time only perform this copying / deleting / and renaing activity
    Hope this helps.
    Cheers,
    Nitin

Maybe you are looking for