DevTech101

DevTech101

Month: April 2014

How to add users to OIM with CSV

http://www.xoracle.com/?page=postDetailReplyList&post=376 http://rite-oim.blogspot.com/2013/07/flat-file-reconciliation-oim-11g.html http://www.oracle.com/webfolder/technetwork/tutorials/obe/fmw/oim/10.1.4/oim/obe12_using_gtc_for_reconciliation/using_the_gtc.htm   Fixing issues http://www.iamidm.com/2013/04/error-while-running-gtc-trusted-recon.html

How to create an OIM account with xelsysadm privileges

How to add a new admin account in Oracle IDM Steps (OIM 11gR2) To be part of the SYSTEM ADMINISTRATORS role you need to be assigned to the corresponding admin role in the Top organization, here's how to do it: Login to the Identity Self-Service as xelsysadm Create the administrative user's account if it does not …

How to create an OIM account with xelsysadm privileges Read More »

How To Measure Network Latency With Ping And Dtrace in Solaris.

Measuring Network Latency In Solaris Use the below dtrace script (SuperPing.d) to measuring Network Latency. #!/usr/sbin/dtrace -s #pragma D option quiet #pragma D option switchrate=10hz mib:::rawipOutDatagrams /pid == $target/ { start = timestamp; } mib:::icmpInEchoReps /start/ { this->delta = (timestamp – start) / 1000; printf(“dtrace measured: %d us\n”, this->delta); @a[“\n ICMP packet delta average (us):”] …

How To Measure Network Latency With Ping And Dtrace in Solaris. Read More »