Blog Posts


Categories

Functional  Technical 

Extract file from MAS OCP cluster

Technical 0 Comments

Extract files from MAS OCP Cluster

  1. Login to OCP cluster using OC command line
  2. Switch to Manage project
  3. Execute rsync command
  4. oc rsync inst1-masdev-manage-maxinst-****:/opt/IBM/SMP/maximo/applications/maximo/businessobjects/classes/com/....

Test

Functional 0 Comments

This is test

....

Delete message tracking records

Technical 0 Comments

Delete processed messaged from message tracking application. 

 

Connect to the Maximo database as the Maximo schema owner.

delete from MAXINTMSGTRKDTL where meamsgid in (select meamsgid from maxintmsgtrk where status = 'PROCESSED');


delete ....

Create read only user for Maximo DB2 database

Technical 0 Comments

Follow below steps

---------------------------------
 - Login to the database server
 - Create an operating system user 'maxread'
 - Set password
 - Launch DB2 command line - administrator mode
 - Set db2instance=ctginst1

Skip doclinks copy on object duplication

Technical 0 Comments

Problem

Skip doclinks duplication when an object is duplicated. 

 

Solution

Create an automation script with one line code below

 

# Clear duplicated doclinks mboset....

Get Maximo location hierarchy

Technical 2 Comments

Get location hierarchy in tree format

 

select lpad(' ',2*(level-1)) || to_char(location) s, level
from (select * from lochierarchy where siteid = 'BEDFORD')
start with parent is null
connect by prior location = parent;

....

Sync node from command line

Technical 0 Comments

Sync Maximo nodes from command line

-------------------------------------------------------------

 

D:

cd D:\IBM\WebSphere\AppServer\profiles\ctgAppSrv01\bin

stopNode.bat -username wasadmin -password password

syncNode.bat localhost 8879 -userna....

Count rows in Maximo schema tables

Technical 0 Comments

Problem

------------------

How do I get count of all tables in Maximo with on single query?

 

Solution

-----------------

Just three steps, thats all .. 

--; Create function
create or replace
function      ....

Force launch Maximo 7.6 installer in english

Technical 0 Comments

Problem

--------------

If the local language of the client machine is other than English, IBM Installation Manager launches in that language. Need is to launch it in English.

 

Solution

------------

Launch installation manager from command line....

Multi-language label for custom fields in Maximo

Technical 0 Comments

Working in multi-language Maximo environment, it could be difficult to add custom labels in different languages. Steps below can help

 

--1.Navigate to application designer, add new custom label. Override the label i.e.specify a custom label.Save record
--2.Copy th....

Find and compile invalid Maximo objects

Technical 0 Comments

Got too many invalid objects in Maximo database. Recompile and make them valid quickly.

 

SELECT 
       'alter '|| object_type || ' "MAXIMO"."'|| object_name || '"  compile;'
FROM   sy....

Load Maximo 7.X classification

Technical 0 Comments

Loading classification data in Maximo could be quite complex, especially when it is being migrated from an earlier version of Maximo along with reference asset, location, item etc. data. Here is a techie's scratchpad for loading classification, read one line at a time :)


-....

AD Authentication in Maximo 7.6 fails

Technical 0 Comments

Problem

----------------

AD Authentication fails. 

 

Solution

--------------

Make sure login ID of maximo is excatly same as AD ID (case sensitive).

....

Get locked tables and release it

Technical 0 Comments

Find locked tables

---------------------------------------
select
oracle_username,
os_user_name,
locked_mode,
object_name,
object_type
from
v$locked_object a,dba_objects b
where
a.object_id = b.object_id;

 

R....

Change NLS_LENGTH_SEMANTICS to CHAR

Technical 0 Comments

Problem

------------------

Maximo 7.6 was installed and planned to be used for multilingual environment but later we noticed that NLS_LENGTH_SEMANTICS of the oracle database was set to BYTE. This is going to be a problem in usage and getting support from IBM. How do I change to CH....

Bulk add/remove of access rights

Technical 0 Comments

Problem

------------------

It is time-consuming in Maximo to individually pick and grant access to applications to a security group. One common problem is to grant all access to maxadmin in newly setup maximo environment or remove access to all applications of a module.

So....

Manual webserver creation for Maximo cluster

Technical 0 Comments

Create webserver manually for Maximo cluster configuration.

--------------------

 

Refer steps below, its raw format but it works ;)

----------------------

 

STEPS TO CREATE A NEW WEBSERVER DEFINITION (Report Webserver)

The followi....

Get open cursors

Technical 0 Comments

Get open cursors by Maximo session

------------------------------------------------------

--total cursors open, by session
select a.value, s.username, s.sid, s.serial#
from v$sesstat a, v$statname b, v$session s
where a.statistic# = b.statistic#  and s.sid=a....

Websphere 8.5 node sync fails

Technical 0 Comments

Problem

-----------------

Node synchronization fails for below setup of Maximo

 - WebSphere 8.5 cluster with two node

 - LDAP authentication is enabled 

 - WebSphere admin username in internal repository and federated LDAP repository are....

LinkedIn

© 2017 ChandanSingh. All rights reserved.