Posts

Hand Work will lead us to success

Image
Success story of my Babai (father's brother) published in our local news paper. He inspired me. Keep going Sesha Reddy Gongal Reddy :)

Remove Custom Service from Sterling Integrator

If we need to uninstall a custom service in IBM B2B Sterling Integrator follow the blow steps. Please note you have to clean from File system and from database as well. File System Cleanup C:\Sirish\SterlingIntegrator\install\installed_data\ Your  Custom Service Name directory. C:\Sirish\SterlingIntegrator\install\jar\ Your  Custom Service Name directory. C:\Sirish\SterlingIntegrator\install\properties\lang\en\Your  Custom Service Name_en.properties C:\Sirish\SterlingIntegrator\install\properties\services\Your  Custom Service Name.xml Database Cleanup select * from service_def_guid where current_id = 461; select * from service_def_parms where def_id = 461 select * from service_def where def_lookup_name like '%com.mypackage%';   Note:   Please check def_look_up name in service instance page under Development --> Services --> Installation/Setup   delete from service_def_guid where current_id = 461; delete fr...

IBM B2B Sterling Integrator - Oracle Database User and Table Space creation Scripts

Below process explains how to create Oracle database for Sterling Integrator with all required user permissions. 1. Create a new database using Oracle Database Configuration Assist for Sterling Integrator with all required Initilation perameters. Initilation perameters are very critical so refer installation document very carefully while creating new database. 2. Log on to Database as a Power User (system or sys as sysdba) and create new table space,        CREATE TABLESPACE SI_TABLESPACE DATAFILE        '/u01/app/sterling/SI52.DBF' SIZE 2000M AUTOEXTEND ON NEXT 500M MAXSIZE UNLIMITED         LOGGING         ONLINE         PERMANENT         EXTENT MANAGEMENT LOCAL AUTOALLOCATE         BLOCKSIZE 8K         SEGMENT SPACE MANAGEMENT AUTO; 3. Log on ...

Robin Sharma's Little Black Book For Stunning Success

http://www.robinsharma.com/pdf/stunningsuccess.pdf

JMS Clients

JMS Clients http://queuemanager.nl/offline-installation/   Hermes is an interactive JMS browser and administration tool. We can Download JNLP file from http://www.hermesjms.com/ . Hermes is an interactive JMS browser (Useful with JBoss)

IBM Smarter Commerce Tech talks - Introduction to Smarter Commerce

Image

Startup Tools | Steve Blank

Good read for startup, http://steveblank.com/tools-and-blogs-for-entrepreneurs/

Beautiful Sunset, King of Prussia, PA on November 9th 2012

Image
Beautiful Sunset, King of Prussia, PA on November 9th 2012.

Why Startup Founders are Always Unhappy — jessblog

Good read... http://www.jessyoko.com/blog/2012/11/07/why-startup-founders-are-always-unhappy/

IBM Support Portal How-to videos on YouTube

IBM Electronic Support Channel   IBM Support Portal How-to videos on YouTube via IBM Sterling B2B Support Blog Electronic Support Channel (all videos are posted here by scrolling down to "Uploaded Videos" section) - http://www.youtube.com/IBMElectronicSupport What is the IBM Support Portal? - http://www.youtube.com/watch?v=0VzVfdKA8zo IBM Support Portal Overview - http://www.youtube.com/watch?v=laOCDj5xdAs Getting started with IBM Support Portal using Quick Start - http://www.youtube.com/watch?v=2mORmlZGLWI Inside and IBM Support Centre - http://www.youtube.com/watch?v=TUy2cq8IPL0 Managing Your Product List in the IBM Support Portal - http://www.youtube.com/watch?v=P7vqYH6pH0E Getting Started with IBM Support: How to Obtain an IBM ID - http://www.youtube.com/watch? v=afQmxE4wjIg&feature=results_main&playnext=1&list=PL421D5E967BB1398D Downloading Products from Passport Advantage  - http://www.youtube.com/watch?v=HuatqV8jpu4&f...

Sterling Integrator - Database to XML Mapping

Here is the process for oracle and I am sure it's gonna be same for other databases as well, 1. Install Oracle Client Software. (Not Server). 2. Put database server entry in tnsnames.ora file. 3. Go to Control Panel where you installed Map editor create System DSN. When you click on    Add you should see Oracle client there. (If you installed oracle client property) 4. Provide required database credentials and complete DNS creations. 5. Bring up your map editor create new map choose data format as SQL (Database     Connectivity). 6. Go to Source Side properties in map editor go to Data Source tab select your DNS name and     it will list all your tables and when you select table you can auto generate fields. From here regular mapping. Be careful while editing tnsnames.ora.

Join DropBox

A cool website for sharing and storing pictures, Join here http://db.tt/xMMRuufS

Override Persistence Level in Business Process

Here is how we can override persistence level in Workflow dynamically, <assign to="WF_RUNTIME_OVERRIDE_PERSISTENCE_LEVEL">PERSISTENCE_FULL</assign> <assign to="WF_RUNTIME_OVERRIDE_PERSISTENCE_LEVEL">PERSISTENCE_MINIMAL</assign>