Liu Wuhua's Technology and Learning Notes

Oracle; Misys; Banking Terms.

2016年5月20日星期五

Requirements in the China core banking products

›
Worked in a project to gathering/analysis core banking requirements for the China market. Had been working for banking technology for like ...

JSON vs WSDL/SOAP integration

›
Recently worked for 2 banks for integrating the front office(the corporate channel) with their back office system(core banking systems T24)...
2011年12月14日星期三

Weblogic’s config of trust keystore and identity keystore to call https service

›
  When access a https service in the web browser, the service provider should provide some certificate on its site which proves it’s the au...
2011年10月17日星期一

Log4j, isDebugEnabled check necessary when logging a debug message?

›
  logger.debug() method in Log4j already checks isDebutEnabled, maybe it’s not necessary to check isDebugEnabled() before every debug() met...

SWIFT Message Type

›
SWIFT provides a network to allow financial and non-financial institution(e.g. corporates) to transfer financial transactions through a ‘fin...
2011年10月12日星期三

BIC code and IBAN code

›
Technorati 标签: banking ISO 9362, also known as SWIFT-BIC, BIC code, SWIFT ID or SWIFT code, is a standard format of Business Identifier Cod...
2011年7月31日星期日

Add Web Projects from Eclipse to Tomcat

›
I have a Java projects workspace, with several pure Java projects and several Web J2EE projects. When import the existing projects into the ...
2011年7月28日星期四

Install erlang in CentOS 6

›
 In order to learn more about concurrent programming language, I decide to learn erlang programming in the Linux platform. Here are the inst...
2011年6月27日星期一

RPA---Repayment pending Appropriation

›
In case the customer pays a single or multiple installment amounts before it is due, then the system applies the amount as per the appropria...
2011年6月13日星期一

Oracle Tips 20110614- about data type conversion

›
This post explains how to use the Explain plan for Oracle's SQL execution to debug sqls. First create two tables: create table char_tabl...
2011年6月3日星期五

Arrears Appropriation Sequence

›
  The sequence which determines the order in which arrears are to be paid in a loan account. At the product level, the bank can set the ru...
2011年6月2日星期四

Algorithm of Fibonacci numbers

›
  long fibonacci(int n){   assert(n>=0);   if(n == 0) return 1;   if(n == 1) return 1;   return fibonacci(n-1) + fibonacci(n-2); } long ...
2011年6月1日星期三

CASA: Current And Saving Account

›
RD in FCR is implemented as a variant of CASA. For CASA. there are four things to do when configure a CASA account and make a transaction. ...
2011年5月30日星期一

Humble thoughts on data structure

›
  Technorati Tags: data structure Data structure actually contains two words. The first one is data, which is the abstract representation ...

Equilibrium array

›
Technorati Tags: Algorithm , Equibilbrium array , data structure Equilibrium index of a sequence is an index such that the sum of elements ...

Given a positive integer number, how to find if it’s anagram.

›
Technorati Tags: Algorithm , Anagram of integer public class Symmetric {     // Solution A     int[] digits = new int[] {};     boolean ...
2011年5月24日星期二

Rownum in Oracle for filtering

›
 It's a traditional question in Oracle:   How to select the 11th record to the 20 th record in a database table. A. The simplest form:  ...
2011年5月16日星期一

Automating Oracle 10g Database Startup and shutdown on Linux

›
  Steps to configure the automatically startup and shutdown on Linux    Once the instance is created, edit the "/etc/oratab" file ...
2011年5月6日星期五

Tablespaces, Datafiles, and Control files

›
Tablespace---The primary logical database structures of any oracle database. datafiles correspond to each tablespace. Oracle stores data lo...
2011年5月4日星期三

Logical storage structures in Oracle database

›
Oracle allocates logical database space for all data in a database. The units of database space allocation are data blocks, extents, and seg...

Data Integrity and Triggers

›
An integrity constraint is a declarative way to define a business rule for a column of a table.  If an integrity constraint is created for a...
2011年5月3日星期二

Structures used for recovery

›
Oracle uses several structures to provide complete recovery from an instance or disk failure: the redo log, undo records, a control file, a...

Concurrency

›
Concurrency is the simultaneous access of the same data by many users. Without adequate concurrency controls, data could be updated or chang...

How Oracle works

›
Most basic level of operations that Oracle performs. User and associated server process are on separate computers.     1. An instance has s...

Overview of Accessing the database

›
Network connections Oracle Net Services is Oracle’s mechanism for interfacing with the communication protocols used by the networks that fa...

Oracle instance

›
Technorati Tags: Oracle instance An oracle database server consists of an Oracle database and an Oracle instance. Every time a database is ...

Schema and common schema objects

›
Technorati Tags: Oracle schema A schema is a collection of database objects. A schema is owned by a database user and has the same name as ...
2011年4月14日星期四

Oracle Database Concept

›
The database has logical structure and physical structures. Physical and logical structures are separate, the physical storage of data can b...
2011年4月8日星期五

Login the Linux using single user mode

›
I Technorati Tags: Linux , Single user mode t’s common to boot a Unix/Linux system into single user mode to debug boot problems. 1.  Sele...
2011年4月7日星期四

Linux command

›
locate and which:   using locate to find files in the file system. using which to locate command/shells under the $PATH. dmesg   print the b...
›
主页
查看网络版本

我的简介

我的照片
Wuhua Liu
查看我的完整个人资料
由 Blogger 提供支持.