Il 28/09/2011 20:47, Stefan Michael Guenther ha scritto:
> Hello,
>
> the table "Status" contains the long and the short form of the job status 
> messages.
>
> When I have a look at the table JobHisto, it has a field named JobStatus, but 
> most of the values are "54".
>
> How do get the "real" job status message out of the table JobHisto?
>
> Thanks,
>
> Stefan
>
> ------------------------------------------------------------------------------
> All the data continuously generated in your IT infrastructure contains a
> definitive record of customers, application performance, security
> threats, fraudulent activity and more. Splunk takes this data and makes
> sense of it. Business sense. IT sense. Common sense.
> http://p.sf.net/sfu/splunk-d2dcopy1
> _______________________________________________
> Bacula-users mailing list
> Bacula-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/bacula-users

jobstatus is char(1), can't hold values like '54'. For example on my 
installation I find:

bacula=> select distinct jobstatus from jobhisto;
  jobstatus
-----------
  A
  E
  f
  T
(4 rows)


bacula-dir Version: 5.0.2 (28 April 2010) i486-pc-linux-gnu debian 5.0.4

Anyway, if you're asking for an sql query you can try this:

SELECT
     h.jobid,
     h.job,
     s.jobstatuslong
FROM jobhisto h
JOIN status s ON h.jobstatus=s.jobstatus;

HTH

-- 
Marcello Romani

------------------------------------------------------------------------------
All the data continuously generated in your IT infrastructure contains a
definitive record of customers, application performance, security
threats, fraudulent activity and more. Splunk takes this data and makes
sense of it. Business sense. IT sense. Common sense.
http://p.sf.net/sfu/splunk-d2dcopy1
_______________________________________________
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users

Reply via email to