<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>david kerr &#187; baan</title>
	<atom:link href="http://www.davidmkerr.com/tag/baan/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.davidmkerr.com</link>
	<description>Weapons designer. Innovator, inventor, world changer</description>
	<lastBuildDate>Thu, 20 May 2010 14:30:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>HowTo: Baan Tracing DBSLOG (Part III)</title>
		<link>http://www.davidmkerr.com/erp/howto-baan-tracing-dbslog-part-iii/</link>
		<comments>http://www.davidmkerr.com/erp/howto-baan-tracing-dbslog-part-iii/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 05:40:23 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[ERP]]></category>
		<category><![CDATA[baan]]></category>

		<guid isPermaLink="false">http://www.davidmkerr.com/?p=155</guid>
		<description><![CDATA[Now let&#8217;s get into something slightly more complicated. DBSLOG to help find out what&#8217;s going on when a session &#8220;hangs&#8221; I&#8217;ve placed a lock on a record in the item master. The bottom of the dbs.log looks like this: ------ QPS Input Row ------- Bind :1 : string : [0x8185d20] '` ' ----- DBMS Where [...]]]></description>
			<content:encoded><![CDATA[<p>Now let&#8217;s get into something slightly more complicated.</p>
<p>DBSLOG to help find out what&#8217;s going on when a session &#8220;hangs&#8221;</p>
<p>I&#8217;ve placed a lock on a record in the item master. The bottom of the dbs.log looks like this:</p>
<pre>
------ QPS Input Row -------
Bind :1   : string  : [0x8185d20] '`               '
----- DBMS Where Input ----
Bind nr 1 : item       : string  : '`               '
SQL> ora_multi_execute( 0x81cb0d8 ) do 0, prefetch 1
</pre>
<p>There is a lot of information in these few lines.<br />
First: Bind nr 1 : item       : string  : &#8216;`               &#8216;<br />
is the binding of &#8220;item&#8221; to the string &#8220;`                &#8221; which is a dummy item in my database.</p>
<p>Second: SQL> ora_multi_execute( 0x81cb0d8 ) do 0, prefetch 1<br />
Tells us the hex value for the cursor further up in the dbs.log file that we&#8217;re executing.</p>
<p>Now to find out the query that&#8217;s locked we just use that hex value 0x81cb0d8 and search backwards in the file:</p>
<pre style="overflow-x:auto; overflow-y:hidden">
SQL> ora_parse( "SELECT /*+  index(a ttiitm001200$idx1) */ t$item,t$dsca,t$dscb,t$dscc,t$dscd,t$wght,t$seak,
t$seab,t$kitm,t$citg,t$ctyp,t$csel,t$csig,t$cvat,t$txta,t$uset,t$cuni,t$stgu,t$cwar,t$kltc,t$obpr,t$kpsl,t$npsl,t$pics,
t$abcc,t$lcod,t$uscu,t$usab,t$slmp,t$serv,t$sfst,t$maxs,t$csps,t$cspd,t$cfmd,t$scst,t$stoc,t$blck,t$ordr,t$allo,
t$hall,t$quot,t$ltdt,t$opol,t$osys,t$omth,t$oqmf,t$mioq,t$maoq,t$umer,t$fioq,t$ecoq,t$reop,t$oint,t$ddfq,t$oltm,
t$sftm,t$fodt,t$ocst,t$auso,t$cpha,t$oqdr,t$repi,t$scdl,t$orip,t$pcrp,t$stpm,t$mrpc,t$plmm,t$mrpo,t$eitm,t$bfcp,
t$bfep,t$bfhr,t$ndrp,t$nnts,t$qpnt,t$unom,t$runi,t$scpf,t$crmp,t$tmfc,t$roun,t$ncst,t$llcd,t$llci,t$mrpi,t$stmr,
t$cuqp,t$cupp,t$cpgp,t$csgp,t$pcgp,t$ccur,t$ltpp,t$prip,t$avpr,t$ltpr,t$suno,t$qual,t$purc,t$txtp,t$cuqs,t$cups,
t$cpgs,t$csgs,t$cmgp,t$rbgp,t$pris,t$ltsp,t$prir,t$umsp,t$lmsp,t$ccde,t$ctyo,t$txts,t$cpcp,t$copr,t$matc,t$oprc,
t$cuid,t$actf,t$ltcp,t$stva,t$buyr,t$cplb,t$cppp,t$ccit,t$ccfu,t$ccco,t$prre,t$copt,t$cprp,t$itmt,t$proi,t$cont,t$cntr,
t$czed,t$reli,t$assi,t$potc,t$ffsi,t$qbsi,t$osyc,t$ufra,t$nobd,t$blcm,t$dcnt,t$exkb,t$itm2,t$Refcntd,t$Refcntu
FROM baan.ttiitm001200 WHERE t$item=:1 FOR UPDATE WAIT 9000 " )
SQL> ora_parse( 0x81cb0d8 )
</pre>
<p>You see the ora_parse (0x81cb0d8) which matches up with the ora_multi_execute</p>
<p>So you know that in this particular case, the session is &#8220;hanging&#8221; because it cannot acquire a lock on ttiitm001200.</p>
<p>You use the same process to identify slow queries, wrong queries, etc.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.davidmkerr.com/erp/howto-baan-tracing-dbslog-part-iii/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HowTo: Baan Tracing DBSLOG (Part II)</title>
		<link>http://www.davidmkerr.com/erp/howto-baan-tracing-dbslog-part-ii/</link>
		<comments>http://www.davidmkerr.com/erp/howto-baan-tracing-dbslog-part-ii/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 05:24:35 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[ERP]]></category>
		<category><![CDATA[baan]]></category>

		<guid isPermaLink="false">http://www.davidmkerr.com/?p=146</guid>
		<description><![CDATA[Now you&#8217;ve generated your DBSLOG=1570 output let&#8217;s look at what you&#8217;ve got: DBSLOG is nice enough to tell you in your logfile exactly what flags were used to generate it. &#60;6692> 2009-11-09[20:17:44]: Logging started mode 01570 ---- LOG ROW INFO [0000010] ---- ---- LOG TABLE INFO [0000020] ---- ---- LOG DB INFO [0000040] ---- ---- [...]]]></description>
			<content:encoded><![CDATA[<p>Now you&#8217;ve generated your DBSLOG=1570 output let&#8217;s look at what you&#8217;ve got:<br />
DBSLOG is nice enough to tell you in your logfile exactly what flags were used to generate it.</p>
<pre>
&lt;6692> 2009-11-09[20:17:44]: Logging started mode 01570
        ---- LOG ROW   INFO [0000010] ----
        ---- LOG TABLE INFO [0000020] ----
        ---- LOG DB    INFO [0000040] ----
        ---- LOG DBMS  INFO [0000100] ----
        ---- LOG SQL   INFO [0000400] ----
        ---- LOG DEBUG INFO [0001000] ----
</pre>
<p>This next part is more valueable than you might think. These are the parameters that your bshell/driver are picking up. This is a great place to look if you&#8217;ve set a parameter in your db_resource or tabledef and it doesn&#8217;t appear to be getting used. </p>
<p>It&#8217;s also a great way to find hidden tuning parameters ;)</p>
<pre>
Portingset mode 6.1c

oracle_attach_server
Timeout values : [9000] [900] [900] [900] [900]
allocate_sql_buffer_area size 32000.
oracle client version = 10.2.0.4.0
oracle_attach_server done.
Resources:      (E = env, P = putenv, D = default )
    lock_retry                E     "0"
    locale                      D   ""
    bdb_max_session_schedule  E D   -1
    bdb_max_sessions          E D   -1
    rds_full                  E     5
    tt_sql_trace              E D   037777777777 (oct)
    dbslog                    E     01570 (oct)
    dbslog_name               E D   "dbs.log"
    dbsinit                   E     021 (oct)
    baan_single_shot_queries  E D   0
    max_tables_joined         E D   -1
    cs_owner                    D   0 (oct)
    enable_refmsg             E D   0
    use_binary_columns        E D   0
    hint_idx_weight_equal     E D   1
    hint_idx_weight_range     E D   1
    hint_idx_weight_factor    E D   < 1.00000000>
    tbase_refresh               D   -1
    concat_expr               E D   ""
    aud_init                  E D   0
    audit_mask                E D   0 (oct)
    baan_sql_trace            E D   0 (oct)
    baan_sql_cacherows        E D   -1
    nls_lang                  EP    "american_america.we8iso8859p1"
    nls_sort                  EPD   ""
    oracle_home               EP    "/apps/oracle/10gR2"
    oracle_service_name       E D   ""
    oracle_sid                EP    "BAANTEST"
    two_task                  E D   ""
    oracle_client_home        E D   "/apps/oracle/10gR2"
    oracle_server_home        E D   "/apps/oracle/10gR2"
    oracle_local_template     E D   ""
    ora_sqlnet_compression    E D   1
    epc_disabled              EPD   "TRUE"
    ora_max_array_fetch       E     5
    ora_max_array_insert      E     5
    baan_oracle_prefetch      E D   1
    ansi_outer_join           E D   0
    use_oci7_interface        E D   0
    max_free_cursors          E D   32
    retained_cursors          E D   50
    max_sql_buffer            E D   32000
    sql_trace                 E D   ""
    ora_timeout               E     "{9000,900,900,900,900}"
    optimizer_goal            E D   ""
    ora_alter_session         E D   ""
    ora_default_tablespace    E     "baandata"
    ora_temporary_tablespace  E     "temp"
    ora_init                  E     0101000 (oct)
    ora_level1                E D   0
    max_open_cursors          E D   245
    ora_date                  E D   0
    oraprof                   E D   < -1.00000000>
    oraprof_name              E D   "oraprof"
    orastat                   E D   < -1.00000000>
    orastat_name              E D   "orastat"
</pre>
<p>Next it starts the connection to the database process. I&#8217;ll simulate an error 510 (database not on) so you can see where you can see where it would go wrong in the connection.<br />
Here you see the error 510, the resulting oracle errors</p>
<pre>
Error ORA-1034 occurred during logon.
ORA-01034: ORACLE not available
ORA-27101: shared memory realm does not exist
Linux-x86_64 Error: 2: No such file or directory
</pre>
<p>and the info you need to find the problem:</p>
<pre>
ORACLE_SID=bla
</pre>
<p>Naturally, my database SID isn&#8217;t &#8220;bla&#8221;</p>
<p>Here&#8217;s the full trace:</p>
<pre style="overflow-x:auto; overflow-y:hidden">
Msg_type 13 received.
Msg_type 2 received.
oracle_open_session sid 1.
Open session : logon
ora_logon : name = 'bsp', pwd = .. ora_session 0x816f588
using resource oracle_local_template
oci_link_server ( dbase = '(DESCRIPTION=(SDU=8192)(TDU=8192)(ADDRESS=(PROTOCOL=beq)(PROGRAM=/apps/oracle/10gR2/bin/oracle)(ARGV0=oraclebla)(ARGS='(DESCRIPTION=(LOCAL=YES)(SDU=8192)(TDU=8192)(ADDRESS=(PROTOCOL=beq)))')(ENVS='ORACLE_HOME=/apps/oracle/10gR2,ORACLE_SID=bla'))(CONNECT_DATA=(SID=bla)))' ) : first time linked : attach connection : # logon = 1 : OK
ora_logon : OCISvcCtx  0x81b2a78 Allocated
oracle server version = 10.2.0.4.0

ora_error 1034 dbs_errno 510.
oci_unlink_server ( dbase = '(DESCRIPTION=(SDU=8192)(TDU=8192)(ADDRESS=(PROTOCOL=beq)(PROGRAM=/apps/oracle/10gR2/bin/oracle)(ARGV0=oraclebla)(ARGS='(DESCRIPTION=(LOCAL=YES)(SDU=8192)(TDU=8192)(ADDRESS=(PROTOCOL=beq)))')(ENVS='ORACLE_HOME=/apps/oracle/10gR2,ORACLE_SID=bla'))(CONNECT_DATA=(SID=bla)))', # logon = 1 ) : detach connection : OK
ora_logon error: ora_session 0x816f588 err 510
FATAL /view/port.6.1c.07.08/vobs/tt/servers/ORACLE_2/ora_native.c:#1769 :

Error ORA-1034 occurred during logon.
ORA-01034: ORACLE not available
ORA-27101: shared memory realm does not exist
Linux-x86_64 Error: 2: No such file or directory

Error BDB-510 returned.
Check the Oracle settings:
NLS_LANG = 'american_america.we8iso8859p1'
ORACLE_HOME (client) = '/apps/oracle/10gR2' (resource oracle_client_home)
ORACLE_HOME (server) = '/apps/oracle/10gR2' (resource oracle_server_home)
Oracle Service Name = '' (resource oracle_service_name --> TWO_TASK)
ORACLE_SID = 'bla'
Connection used oracle_local_template ( ? = oracle_server_home, @ = oracle_sid ):
(DESCRIPTION=(SDU=8192)(TDU=8192)(ADDRESS=(PROTOCOL=beq)(PROGRAM=/apps/oracle/10gR2/bin/oracle)(ARGV0=oraclebla)(ARGS='(DESCRIPTION=(LOCAL=YES)(SDU=8192)(TDU=8192)(ADDRESS=(PROTOCOL=beq)))')(ENVS='ORACLE_HOME=/apps/oracle/10gR2,ORACLE_SID=bla'))(CONNECT_DATA=(SID=bla)))

Logon failed; errno 510
Msg_type 1 received.
In detach server
oracle_detach_server
oracle_detach_server done.
In detach server
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.davidmkerr.com/erp/howto-baan-tracing-dbslog-part-ii/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HowTo: Baan Tracing DBSLOG (Part I)</title>
		<link>http://www.davidmkerr.com/erp/howto-baan-tracing-dbslog-part-i/</link>
		<comments>http://www.davidmkerr.com/erp/howto-baan-tracing-dbslog-part-i/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 05:08:26 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[ERP]]></category>
		<category><![CDATA[baan]]></category>

		<guid isPermaLink="false">http://www.davidmkerr.com/?p=140</guid>
		<description><![CDATA[DBSLOG is my favorite toy. It looks all communications between the driver and the database. I&#8217;m mostly familiar with the Oracle driver, so that&#8217;s what i&#8217;ll show here. Other drivers look different in DBSLOG. Here are the options that can be sent to DBSLOG: 00000 – Turn DBSLOG tracing off 00001 - Display data dictionary [...]]]></description>
			<content:encoded><![CDATA[<p>DBSLOG is my favorite toy. It looks all communications between the driver and the database.</p>
<p>I&#8217;m mostly familiar with the Oracle driver, so that&#8217;s what i&#8217;ll show here. Other drivers look different in DBSLOG.</p>
<p>Here are the options that  can be sent to DBSLOG:</p>
<pre>
00000 – Turn DBSLOG tracing off
00001 -  Display data dictionary information on queried tables
00002 -  Display Query information for level one database queries
00004 -  Display query execution plan during a level two query
00010 -  Row level action (read, modify, delete) information
00020 -  Table level action information
00040 -  Translation information
00100 -  DBMS input/output data on a level two query
00200 -  Administrative file information for SQL drivers
00400 – DBMS SQL query statements
01000 -  General debug statements
02000 – Query processing information
04000 – Data buffering information passed thru communication channels
</pre>
<p>Basically you add the values to get the level of debugging level you want.</p>
<p>You might think that setting DBSLOG=99999 would give you everything you need, but that&#8217;s not always true. Some flags are mutually exlusive, and some flags add so much information as to make the file unreadable.</p>
<p>That&#8217;s why I always use DBSLOG=01570 which gives you:</p>
<pre>
General debug statements (1000) +
DBMS SQL query statements (400) +
DBMS input/output data on a level two query (100) +
Translation information (40) +
Table level action information (20) +
Row level action (read, modify, delete) information (10)
</pre>
<p>Unlike the bshell debugging commands DBSLOG is set via the environment so you would use</p>
<pre>
Unix:
export DBSLOG=01570
Windows
set DBSLOG=1570
Baan:
-- -set DBSLOG=1570
</pre>
<p>The logfile will be called dbs.log and will be located in your home directory in unix or $BSE/tmp in windows.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.davidmkerr.com/erp/howto-baan-tracing-dbslog-part-i/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HowTo: Baan Tracing bic_info6.1</title>
		<link>http://www.davidmkerr.com/erp/howto-baan-tracing-bic_info6-1/</link>
		<comments>http://www.davidmkerr.com/erp/howto-baan-tracing-bic_info6-1/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 04:52:25 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[ERP]]></category>
		<category><![CDATA[baan]]></category>

		<guid isPermaLink="false">http://www.davidmkerr.com/?p=135</guid>
		<description><![CDATA[Now that you know where your object is located. You probably need some more information about it. Before we saw that the object for my item master oitm0101 was located here: /apps/baan/bse/application/tiB40U_c4_stnd/otiitm/oitm0101 Now if we want some info we can use one of three commands what /apps/baan/bse/application/tiB40U_c4_stnd/otiitm/oitm0101 - or (if you're fancy) - what `explode6.1 [...]]]></description>
			<content:encoded><![CDATA[<p>Now that you know where your object is located. You probably need some more information about it.</p>
<p>Before we saw that the object for my item master oitm0101 was located here:</p>
<pre>/apps/baan/bse/application/tiB40U_c4_stnd/otiitm/oitm0101</pre>
<p>Now if we want some info we can use one of three commands</p>
<pre>
what /apps/baan/bse/application/tiB40U_c4_stnd/otiitm/oitm0101
- or (if you're fancy) -
what `explode6.1 otiitm0101`
- or -
bic_info6.1 -w oitm0101
</pre>
<p>You can use bic_info.exe for Windows.</p>
<p>Both will give the result below:</p>
<pre style="overflow-x:auto; overflow-y:hidden">
---------------------------OBJECT IDENTS--------------------------------
@(#)/b40c/bse/application/tiB40_c5/ptiitm/pitm0101g, 04/11/16 [20:34], From wtreur
@(#)-DREL6_1
@(#)4GLE_BUILD_BaanIVc7_1184 -- bic_global@@/main/bugfixB40c6/developmentB40c7/10
@(#)4GLE_BUILD_BaanIVc7_1184 -- bic_object@@/main/bugfixB40c6/developmentB40c7/2
@(#)4GLE_BUILD_BaanIVc7_1184 -- bic_event@@/main/bugfixB40c6/developmentB40c7/1
[....]
</pre>
<p>Here you can see the compile date of the object, this is critical with dealing with Baan support<br />
as they can usually map that object info to a defect or solution number assuming it&#8217;s a standard object.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.davidmkerr.com/erp/howto-baan-tracing-bic_info6-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HowTo: Baan Tracing DBGOBJ</title>
		<link>http://www.davidmkerr.com/erp/howto-baan-tracing-dbgobj/</link>
		<comments>http://www.davidmkerr.com/erp/howto-baan-tracing-dbgobj/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 04:32:11 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[ERP]]></category>
		<category><![CDATA[baan]]></category>

		<guid isPermaLink="false">http://www.davidmkerr.com/?p=123</guid>
		<description><![CDATA[dbgobj is one of the best bshell debugging options you have available to track down a problem. It will give you the actual path to an object: this is essential if you have multiple VRCs to find out the VRC that the bshell is using (not always what you expect, and not always the same [...]]]></description>
			<content:encoded><![CDATA[<p>dbgobj is one of the best bshell debugging options you have available to track down a problem.</p>
<p>It will give you the actual path to an object: this is essential if you have multiple VRCs to find out the VRC that the bshell is using (not always what you expect, and not always the same as explode6.x)</p>
<p>To execute this trace you add -dbgobj to your bshell.  it&#8217;s best to add two other debugging commands to your bshell so you can specify your logfile:<br />
-keeplog and -logfile</p>
<p>In Unix that would look like</p>
<pre>
ba6.1 -- -dbgobj -keeplog -logfile /tmp/bshell.log
</pre>
<p>In Windows you add it to the command line</p>
<pre>
Command: -- -dbgobj -keeplog -logfile c:\bshell.log
</pre>
<p>The output file will look like this:</p>
<pre style="overflow-x:auto; overflow-y:hidden">
---------------------------OBJECT HEADER--------------------------------
B:0000005:::(00001):Object      = otiitm0101
B:0000006:::(00001):Pathname    = /apps/baan/bse/application/tiB40U_c4_stnd/otiitm/oitm0101
B:0000007:::(00001):Magic               = [_bic_dll_]
B:0000008:::(00001):relno               = 61
B:0000009:::(00001):obj_revision        = 1
B:0000010:::(00001):object_flags        = 10
</pre>
<p>The key to look at is the path to the object. you can see here that I&#8217;ve got object otiitm0101 Installed in tiB40U_c4_stnd which is my standard update VRC for PMC. So we know that I haven&#8217;t customized my item master (thank goodness)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.davidmkerr.com/erp/howto-baan-tracing-dbgobj/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Error Tracing for End Users</title>
		<link>http://www.davidmkerr.com/misc/advanced-guide-to-error-tracing-for-end-users/</link>
		<comments>http://www.davidmkerr.com/misc/advanced-guide-to-error-tracing-for-end-users/#comments</comments>
		<pubDate>Sun, 08 Nov 2009 20:47:09 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[baan]]></category>

		<guid isPermaLink="false">http://www.davidmkerr.com/?p=114</guid>
		<description><![CDATA[I was going through some old documents of mine from back when I worked for Baan Support. I found a nice little guide that (I&#8217;m pretty sure I wrote) that may or may not still be available via support channels. I got to thinking about it, and decided that instead of linking an old doc [...]]]></description>
			<content:encoded><![CDATA[<p>I was going through some old documents of mine from back when I worked for Baan Support. I found a nice little guide that (I&#8217;m pretty sure I wrote) that may or may not still be available via support channels.</p>
<p>I got to thinking about it, and decided that instead of linking an old doc i wrote years ago I&#8217;d update it and post it in-line as a series.</p>
<p><a href="http://www.davidmkerr.com/?p=123">Baan Tracing DBGOBJ</a><br />
<a href="http://www.davidmkerr.com/?p=135">Baan Tracing bic_info6.1</a><br />
<a href="http://www.davidmkerr.com/?p=140">Baan Tracing DBSLOG (Part I)</a><br />
<a href="http://www.davidmkerr.com/?p=146">Baan Tracing DBSLOG (Part II)</a><br />
<a href="http://www.davidmkerr.com/?p=155">Baan Tracing DBSLOG (Part III)</a></p>
<p>Here&#8217;s a good start, I&#8217;m taking requests for any new topics! just leave a comment here with whatever section you&#8217;d like more details on, or any new topics and if i know about it i&#8217;ll create a new post! </p>
]]></content:encoded>
			<wfw:commentRss>http://www.davidmkerr.com/misc/advanced-guide-to-error-tracing-for-end-users/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Baan: Session Stats</title>
		<link>http://www.davidmkerr.com/software/session-stats/</link>
		<comments>http://www.davidmkerr.com/software/session-stats/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 03:45:26 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[baan]]></category>
		<category><![CDATA[perl]]></category>

		<guid isPermaLink="false">http://www.davidmkerr.com/?page_id=81</guid>
		<description><![CDATA[Session stats is a nice little way to parse your Baan TIME.HIS file and displays useage statistics per session/object. It can display output by user or by session. usage: session_stat.pl [] [] Flags: -c output by company -u output by user -s output by session Download session_stats.pl.tgz v1.0]]></description>
			<content:encoded><![CDATA[<p>Session stats is a nice little way to parse your Baan TIME.HIS file and displays useage statistics per session/object.<br />
It can display output by user or by session.</p>
<pre>
usage: session_stat.pl [<flags>] [<file>]
Flags: -c output by company
-u output by user
-s output by session
</file></flags></pre>
<p>Download <a href="/downloads/session_stats.pl.gz">session_stats.pl.tgz</a> v1.0 </p>
]]></content:encoded>
			<wfw:commentRss>http://www.davidmkerr.com/software/session-stats/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Baan: SLM Monitor</title>
		<link>http://www.davidmkerr.com/software/slm-monitor/</link>
		<comments>http://www.davidmkerr.com/software/slm-monitor/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 03:41:31 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[baan]]></category>
		<category><![CDATA[perl]]></category>

		<guid isPermaLink="false">http://www.davidmkerr.com/?page_id=78</guid>
		<description><![CDATA[SLM Monitor connects to your SLM server retrieves the XML output and parses it for a nice rolled up display like below. Product Id: 10996 User Count: 29 gomartin xx.yy.73.34 23847 bsp752t 0.0.0.0 6317 bsp xx.yy.135.9 2794 jmterbor xx.yy.21.104 15657 hxjoshi xx.yy.72.144 29975 bsp xx.yy.72.101 4817 sdchen xx.yy.72.108 16926 jamcginn xx.yy.19.144 5311 bsp715t 0.0.0.0 3848 [...]]]></description>
			<content:encoded><![CDATA[<p>SLM Monitor connects to your SLM server retrieves the XML output and parses it for a nice rolled up display like below.</p>
<pre>
Product Id: 10996
User Count: 29
gomartin         xx.yy.73.34     23847
 bsp752t             0.0.0.0     6317
     bsp         xx.yy.135.9     2794
jmterbor        xx.yy.21.104     15657
 hxjoshi        xx.yy.72.144     29975
     bsp        xx.yy.72.101     4817
  sdchen        xx.yy.72.108     16926
jamcginn        xx.yy.19.144     5311
 bsp715t             0.0.0.0     3848
     bsp       xx.yy.240.166     14560
</pre>
<p>To Configure the script modify it to add your servername and port.<br />
Edit this line:</p>
<pre>
SlmCmd -mondts <insert your server> -port </insert><insert your port>
</insert></pre>
<p>In the file.</p>
<p>You can download <a href="/downloads/slm_monitor.pl.gz">slm_monitor.pl.gz</a> v1.0<br />
Note: works with SLM 7.0.0.8 &#8211; I lost access to SLM around this time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.davidmkerr.com/software/slm-monitor/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
