Let’s discuss the processes running in Oracle database and their functions.
DBW`: Database Writer, this process writes the data from buffer cache to the DB file and this operation of reading and writing is done in blocks. The default block size in Oracle is 8192 bytes, however it can be modified as required. Starting from Oracle 9i onwards, we can have multiple block sizes. The block size can be checked as follows:
SQL> show parameter db_block_size;
Usually, we use the SCOTT/tiger account to login to the system after installing the database but that account is locked in the beginning for security reasons. So, if you try to enter using that user, you get the following error:
C:\Documents and Settings\Administrator>sqlplus
SQL*Plus: Release 10.1.0.2.0 – Production on Sun Feb 20 21:15:21 2011
Copyright (c) 1982, 2004, Oracle. All rights reserved.
Enter user-name: SCOTT
Enter password:
ERROR:
ORA-28000: the account is locked
As you see, we get error code 28000. To unlock your accounts, you can use the following method:
The function of short message center is to receive, store and schedule messages for delivery. There are mainly three network flows involved in the message receiving and delivery. They are as follows:
1) Mobile Origination
2) Mobile Termination
3) Alert Message Flow
Lets analyze the flows one by one.
1) Mobile Origination
Most of the times, it is referred to as MO. This flow involves the sending of message from mobile originator to the short message center. The message is sent to the air interface to the BSC which forwards it to MSC which in turn sends this short message to the signaling gateway followed by actual short message server. The following diagram shows the simple operation of the MO flow.
Tags: ALERT, MO, Mobile Origination, Mobile Termination, MT, SRI
The default port to access iSQL*PLUS is 5560. You can access iSQL*PLUS with the following URL given that the oracle is installed on the local host ‘http://localhost:5560/isqlplus/’
To change the port number, modify the file “http-web-site.xml” as given below:
Tags: iSQL plus port, isqlplus url