The Symantec WSS import utility runs without completing and without failures. This can occur in an environment in which the importer was previously running successfully or in which it has never before run.
When the WSS integration is initially configured, the Symantec WSS Integration section of the Symantec ICA Integration and Solution Accelerator Guide directs the user to set the MaxDaysToDownload
setting to a default value of 7
as part of the initialization script. Because a watermark value is not initially set, the first run of the importer will attempt to pull events for the previous 7 days. Once that process completes, it will set a watermark value for use the next time the importer runs.
If the import process is interrupted for any reason - including the user pressing CTRL+C or terminating the command prompt - downloaded files will remain in the download folder (as specified in the dbo.Application_Settings
table in the DownloadFolder
column) to await processing. If a DownloadFolder
value is not specified, it defaults to saving these files in the directory containing the importer executable.
Each time the importer runs, it will attempt to download and re-process existing downloads independent of what the Watermark
and MaxDaysToDownload
values might be. As a result, subsequent changes to these fields won't be honored by the importer until it has cleared the unprocessed downloads. In an environment in which a large number of events have been generated, this can result in exceptionally long processing times.
.gz
files from the directory DownloadFolder
directorySymantecWSSDW
relational databaseUPDATE SymantecWSSDW.dbo.Application_Settings
SET MaxDaysToDownload = 1;
GO
UPDATE SymantecWSSDW.dbo.Application_Settings
SET Watermark = GETDATE()-1;
GO