FAQ:How to Delete all Supportworks ITSM Call Data: Difference between revisions
Jump to navigation
Jump to search
(Created page with "{{Template:Basic Cover | title=How to Delete all Supportworks ITSM Call Data | type=FAQ }} {{Template:Basic Status | status=Draft | version=1.1 | authors=Hornbill Support | a...") |
No edit summary |
||
Line 5: | Line 5: | ||
{{Template:Basic Status | {{Template:Basic Status | ||
| status= | | status=Released | ||
| version=1.1 | | version=1.1 | ||
| authors=Hornbill Support | | authors=Hornbill Support | ||
Line 16: | Line 16: | ||
Please note that this will not remove any mail related data. | Please note that this will not remove any mail related data. | ||
A backup of the system is advised before following these instructions. | |||
# Launch the Supportworks Server Configuration Program, via '''Start > Programs > Supportworks Server > Supportworks Server Configuration. | # Launch the Supportworks Server Configuration Program, via '''Start > Programs > Supportworks Server > Supportworks Server Configuration. |
Revision as of 13:45, 15 July 2015
Status: | Released |
---|---|
Version: | 1.1 |
Authors: | Hornbill Support |
Applies to: | Supportworks ITSM 2.x |
How to Delete all Supportworks ITSM 2.x Call Data
The following describes how to remove all Call-related data from within Supportworks ITSM (for ITSM 2.x versions).
Please note that this will not remove any mail related data.
A backup of the system is advised before following these instructions.
- Launch the Supportworks Server Configuration Program, via Start > Programs > Supportworks Server > Supportworks Server Configuration.
- On the Server Tab, stop the SwServerService process.
- Launch the Supportworks Interactive SQL Program, via Start > Programs > Hornbill Core Services > Interactive SQL) (Or If on Third Party Db the Query tool of choice)
- Enter the following statements: (Note: a WHERE clause should be used if you do not wish to DELETE ALL current call data)
use swdata;
delete from opencall;
delete from updatedb;
delete from calltasks;
delete from swissues;
delete from itsm_opencall_problem;
delete from itsm_opencall_rfc;
delete from cmn_rel_opencall_ci;
delete from cmn_rel_opencall_oc;
delete from bpm_oc_auth;
delete from bpm_oc_hist;
delete from bpm_oc_task;
delete from tpperformance
delete from extoc_newequip
(if present)delete from extoc_newstarter
(if present)Use sw_systemdb;
delete from opencall;
delete from updatedb;
delete from opencall_sla_evts;
delete from opencall_sla;
delete from system_cfastore;
- Enter the following statements to reset the call reference counters and close the interactive SQL Window:
Use sw_systemdb;
Update system_counters set count=1 where name=’nextcallreference’;
Exit;
- Delete the following files
- C: /Program Files/Hornbill/Supportworks Server/Data/_cfastore/FOLDER/*.*
- (Where "C: /Program Files/Hornbill/" is the default installation folder and "FOLDER" is the folder containing the File attachments for the given range of calls)
- In the Supportworks Server Configuration Program, restart the SwServerService process, and check that all test data has been removed.