Limited History View S’abonner
Our history explorer only shows me about the last 3 days of history. Why is the view of history limited to that?
We are running the 9.4 SR3 Automation Edition.
We'd certainly like to have access to the full history.
Thanks
4 commentaires
There is no such limit. Have you perhaps set some search query to give you only such data records? What edition/version of SQL Server is the data residing on? Perhaps you've setup the maintenance to archive data older than 3 days to .bak files? Check this via the "Tools>System Database Setup" menu item.
Is this maintenance archival setting a default at all??? We did a very default install of this system database many months ago. We'd just never had much reason to look back more than a few records at a time. Now we are compelled to look back much further at a specific issue. Ultimately we may need to be able to validate we have a full history of printing events.
Thanks
I think my DBA answered this question for me. He states;
at it looks like on 2/3/13 a job named “BarTender DB cleanup” was created that has the description “This job will delete records that are older than 5 days from the BarTender database. This is recommended by the BarTender software.”
Here is the job’s code:
DECLARE @timeThreshold int
DECLARE @timeUnits int
DECLARE @recordType nvarchar(1024)
--Choose how many units in the past
SET @timeThreshold = 5
--Where 0 = Days, 1 = Weeks, 2 = Months
SET @timeUnits = 0
SET @recordType = N'ALLR' --All Record Types
EXEC
dbo.SpDeleteOlderRecords @timeThreshold, @timeUnits, @recordType
How do we stop this process from running? Will it be an issue in the performance of history explorer or reprint console? Essentially, why is this "recommended by the BarTender software"???
You can run maintenance to archive/delete records in the BTSDB either locally under the "Maintenance" tab of the "BarTender System Database Setup" dialog, or remotely over the network using a stored SQL procedure script in SQL Server Management Studio. If you don't wish to use the stored procedure, then either disable it or modify it to better suit your needs. As everybody's needs are different we don't recommend a specific interval for this, because as in your case it doesn't make sense to be so frequent.
Copied from the BarTender help system:
Vous devez vous connecter pour laisser un commentaire.