lemotdit
lemotdit

Reputation: 448

AS400 DB2 Journals search

I am new to DB2 administration on AS400, could you point me to the best practices/tools to search for errors in the DB2 journals?

So far I use the DSPJRN command but I am unable to make research. thanks.

Upvotes: 2

Views: 2900

Answers (3)

robertnl
robertnl

Reputation: 1014

The journals can be saved in files aka tables. You can create some programs/SQL to search these tables. On the iSeries one does not have other 'native' tools then the iSeries commands and/or some programming/quering.

I don't know if they are any 'non-native' tools. Remember that DB2/400 is really just one of the many implementations of Universal Database/2. I won't be suprised if a Windows or Linux tools can analyze the iSeries implementation too. They same is true for MQ. A typical iSeries command/menu interface on the iSeries itself (which works fine by the way). Beautifull graphical tools on other platforms that can connect to this iSeries MQ.\

On a second thought, a standard tool for the iSeries is the iSeries navigator. I will check this out on my work tomorrow

Upvotes: 1

lemotdit
lemotdit

Reputation: 448

DSPJRN JRN(<LIBRARY>/QSQJRN) FILE(<LIBRARY>/CXPBU00001) RCVRNG(<LIBRARY>/QSQJRN<JOURNAL_NUMBER)                                                                         
5=Display entire entry on a record
F6 Display only entry
F15 Display only entry specific data
From their you can get a job description: <NUMBER>/<USER>/<SYSTEM>
wrkjob <NUMBER>/<USER>/<SYSTEM>

And from their option 4 or 10 to see job logs

Upvotes: 1

Richard Perfect
Richard Perfect

Reputation: 208

Can you describe what the "error" is that you are looking for. Journal records my themselves don't really have errors (I think).

I haven't worked on an AS400 for about 10 years, but when I did use it last century I did do some work with Journals looking for the change history of a row over time and found all of the answers I needed in the online manuals.

From memory somehow I think I wrote a export program to save the output of the DSPJRN program and uploaded it into a DB2 Table so that I could query it with SQL.

Upvotes: 1

Related Questions