Creation Zone

  • Subscribe to our RSS feed.
  • Twitter
  • StumbleUpon
  • Reddit
  • Facebook
  • Digg

Thursday, 28 February 2008

2Q08 Market Development Excellence Award

Posted on 02:14 by Unknown
Just for the records ..

Couple weeks ago my department within Sun Microsystems, Market Development, handed me over an award {title says it is for exceptional pace} for my recent work in the world record Siebel 8.0 10,000 user benchmark on Sun SPARC Enterprise T5x20 systems.

The award itself isn't much of a deal; but the visibility and the 15 second fame it brought along excited me a bit. I didn't get a chance to respond back to all those folks who congratulated me through the e-mail medium. So, here it is: Thank you folks.
--

Incidentally I received a similar award back in 2004 (I was a contractor then) for similar effort, Siebel 7.5.2 PSPP benchmark on Sun.
Read More
Posted in | No comments

Monday, 18 February 2008

Oracle 10g: Setting up The Oracle Enterprise Manager Console

Posted on 17:22 by Unknown
(This blog post assumes that the reader is already familiar with the idea behind the Oracle Enterprise Manager (OEM). Hence there won't be any introductory paragraphs around the OEM. And although I haven't tested it on other operating systems, I believe the steps mentioned in this blog post are applicable on all platforms.).

  1. Create the repository for the Oracle Enterprise Manager Console.
    % emca -repos create

    STARTED EMCA at Feb 14, 2008 1:52:03 AM
    EM Configuration Assistant, Version 10.2.0.1.0 Production
    Copyright (c) 2003, 2005, Oracle. All rights reserved.

    Enter the following information:
    Database SID: TEST <- you may have to input your database's SID
    Listener port number: 1521
    Password for SYS user: change_on_install <- choose any string you like
    Password for SYSMAN user: manager <- choose any string you like

    Do you wish to continue? [yes(Y)/no(N)]: y
    Feb 14, 2008 1:52:39 AM oracle.sysman.emcp.EMConfig perform
    INFO: This operation is being logged at /export/home/oracle/cfgtoollogs/emca/TEST/emca_2008-02-14_01-52-03-AM.log.
    Feb 14, 2008 1:52:39 AM oracle.sysman.emcp.EMReposConfig createRepository
    INFO: Creating the EM repository (this may take a while) ...
    Feb 14, 2008 1:54:33 AM oracle.sysman.emcp.EMReposConfig invoke
    INFO: Repository successfully created
    Enterprise Manager configuration completed successfully
    FINISHED EMCA at Feb 14, 2008 1:54:33 AM

    emca is the Enterprise Manager Configuration Assistant. And the repository that we just created will hold a set of tables containing the internal state information of Enterprise Manager for the managed environment.

  2. Dynamically increase the maximum number of processes that can be created for the execution of jobs, JOB_QUEUE_PROCESSES.
    % sqlplus / as sysdba

    SQL*Plus: Release 10.2.0.3.0 - Production on Thu Feb 14 01:54:57 2008
    Copyright (c) 1982, 2006, Oracle. All Rights Reserved.

    SQL> alter system set job_queue_processes = 2;

    System altered.

  3. Unlock the accounts of OEM super admin user, SYSMAN; and the database monitoring agent, DBSNMP.
    % sqlplus / as sysdba

    SQL> alter user dbsnmp identified by dbsnmp account unlock;

    User altered.

    SQL> alter user sysman identified by manager account unlock;

    User altered.

  4. Configure the database control for the database that we just created (step #1)
    % emca -config dbcontrol db

    STARTED EMCA at Feb 14, 2008 1:55:35 AM
    EM Configuration Assistant, Version 10.2.0.1.0 Production
    Copyright (c) 2003, 2005, Oracle. All rights reserved.

    Enter the following information:
    Database SID: TEST
    Listener port number: 1521
    Password for SYS user: change_on_install
    Password for DBSNMP user: dbsnmp
    Password for SYSMAN user: manager
    Email address for notifications (optional):
    Outgoing Mail (SMTP) server for notifications (optional):
    -----------------------------------------------------------------

    You have specified the following settings

    Database ORACLE_HOME ................ /export/home/oracle

    Database hostname ................ ben05
    Listener port number ................ 1521
    Database SID ................ TEST
    Email address for notifications ...............
    Outgoing Mail (SMTP) server for notifications ...............

    -----------------------------------------------------------------
    Do you wish to continue? [yes(Y)/no(N)]: y
    Feb 14, 2008 1:56:17 AM oracle.sysman.emcp.EMConfig perform
    INFO: This operation is being logged at /export/home/oracle/cfgtoollogs/emca/TEST/emca_2008-02-14_01-55-35-AM.log.
    Feb 14, 2008 1:56:20 AM oracle.sysman.emcp.util.DBControlUtil startOMS
    INFO: Starting Database Control (this may take a while) ...
    Feb 14, 2008 1:57:57 AM oracle.sysman.emcp.EMDBPostConfig performConfiguration
    INFO: Database Control started successfully
    Feb 14, 2008 1:57:57 AM oracle.sysman.emcp.EMDBPostConfig performConfiguration
    INFO: >>>>>>>>>>> The Database Control URL is http://ben05:1158/em <<<<<<<<<<<
    Enterprise Manager configuration completed successfully
    FINISHED EMCA at Feb 14, 2008 1:57:57 AM

    % netstat -a | grep 1158
    *.1158 *.* 0 0 799744 0 LISTEN

  5. Grant sysdba privileges to the sys user.
     % sqlplus / as sysdba

    SQL> grant sysdba to sys;

    Grant succeeded.

    Note:
    If the grant sysdba .. command fails with an ORA-01994: GRANT failed: password file missing or disabled, make sure the parameter REMOTE_LOGIN_PASSWORDFILE is set to EXCLUSIVE, not to NONE. Also create the orapw<ORACLE_SID> file as shown in the following steps.

    SQL> grant sysdba to sys;
    grant sysdba to sys
    *
    ERROR at line 1:
    ORA-01994: GRANT failed: password file missing or disabled

    SQL> show parameter password

    NAME
    ------------------------------------
    TYPE
    --------------------------------------------------------------------------------
    VALUE
    ------------------------------
    remote_login_passwordfile
    string
    NONE

    Set REMOTE_LOGIN_PASSWORDFILE to EXCLUSIVE in the init<ORACLE_SID> file, shutdown the database instance.

    Login as the same OS user that owns the file $ORACLE_HOME/bin/oracle and (re)create the passwordfile as shown below.
    % orapwd file=$ORACLE_HOME/dbs/orapw$ORACLE_SID password=newsyspassword entries=16 force=y
    % chown oracle:dba $ORACLE_HOME/dbs/orapw$ORACLE_SID <- replace the user id and the group with yours
    % chmod 4640 $ORACLE_HOME/dbs/orapw$ORACLE_SID

    eg.,
    % ls -l $ORACLE_HOME/dbs/orapw$ORACLE_SID
    -rw-r----- 1 oracle dba 39424 Feb 14 02:12 /export/home/oracle/dbs/orapwTEST


    Start up the database and run the grant sysdba .. command again.

  6. At this point, you should be able to access the Oracle Enterprise Manager Console through a web browser using the URL emitted in the emca -config dbcontrol db step (http://ben05:1158/em in this case).

  7. Commands to start, stop and check the status of the console

    • To start the console:
      emctl start dbconsole

      eg.,% emctl start dbconsole
      Oracle Enterprise Manager 10g Database Control Release 10.2.0.3.0
      Copyright (c) 1996, 2006 Oracle Corporation. All rights reserved.
      http://ben05:1158/em/console/aboutApplication
      Starting Oracle Enterprise Manager 10g Database Control ............................ started.
      ------------------------------------------------------------------
      Logs are generated in directory /export/home/oracle/ben05_TEST/sysman/log

    • To stop the console:
      emctl stop dbconsole

      eg., % emctl stop dbconsole
      Oracle Enterprise Manager 10g Database Control Release 10.2.0.3.0
      Copyright (c) 1996, 2006 Oracle Corporation. All rights reserved.
      http://ben05:1158/em/console/aboutApplication
      Stopping Oracle Enterprise Manager 10g Database Control ...
      ... Stopped.

    • To check the status of the console
      emctl status dbconsole

      eg., % emctl status dbconsole
      Oracle Enterprise Manager 10g Database Control Release 10.2.0.3.0
      Copyright (c) 1996, 2006 Oracle Corporation. All rights reserved.
      http://ben05:1158/em/console/aboutApplication
      Oracle Enterprise Manager 10g is not running.

  8. Finally if you want to drop the database console, use this command:
    % emca -deconfig dbcontrol db

________________________
Technorati Tags:
 Oracle |  Database |  Oracle Enterprise Manager
Read More
Posted in | No comments

Friday, 15 February 2008

Testing Siebel Server Database Connectivity

Posted on 00:07 by Unknown
(There are multiple ways of testing it -- this blog entry touches only one of them)

Assuming the RDBMS is up and running, first make sure the database client connects to the Siebel database instance from the command line interface. For example, if Oracle is the RDBMS, then:

  • Check the $TNS_ADMIN/tnsnames.ora ($TNS_ADMIN\tnsnames.ora on Windows)

    eg.,
    % cat $TNS_ADMIN/tnsnames.ora

    siamst =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (SDU = 15360)
    (TDU = 15360)
    (ADDRESS = (PROTOCOL = TCP)(HOST = ben07)(PORT = 1521))
    )
    (CONNECT_DATA =
    (SERVICE_NAME = siamst)
    )
    )

  • Make sure you can ping the listener running on the database server

    eg.,
     % tnsping siamst

    TNS Ping Utility for Solaris: Version 11.1.0.6.0 - Production on 15-FEB-2008 11:06:02
    Copyright (c) 1997, 2007, Oracle. All rights reserved.

    Used parameter files:
    /export/home/oracle/network/admin/sqlnet.ora

    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS_LIST = (SDU = 15360) (TDU = 15360)
    (ADDRESS = (PROTOCOL = TCP)(HOST = ben07)(PORT = 1521))) (CONNECT_DATA = (SERVICE_NAME = siamst)))
    OK (10 msec)

  • Finally using the command line utility, sqlplus, connect to the Oracle database instance with the table owner for the Siebel database schema. The following example assumes 'oraperf' is the table owner for the Siebel database schema.

    eg.,
     % sqlplus oraperf/oraperf@siamst

    SQL*Plus: Release 11.1.0.6.0 - Production on Fri Feb 15 11:11:54 2008
    Copyright (c) 1982, 2007, Oracle. All rights reserved.

    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options

    SQL> set head off
    SQL> select * from s_app_ver;

    0-70 01-JAN-80 0-1 16-FEB-01 0-1
    16 0 V8.0
    13 29
    43 Y 0
    Database Schema for Siebel 2005 43r88_HEM17_06_SIA

    1 0
    88
    71

    HQ


    SQL> quit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options

  • If the above step fails to connect to the Oracle database instance, check the connect string, table owner etc., fix them if needed and repeat the above step.

Usually the above steps are good enough to test the database connectivity. However it is recommended to test the database connectivity using Siebel's odbcsql utility as well, just to make sure that there won't be any trouble for the Siebel servers in communicating with the database server.
  1. Set the required environment variables
    eg.,
    % source $SIEBEL_HOME/siebenv.sh (csh)
    % . $SIEBEL_HOME/siebenv.sh (ksh)

  2. Bring up the odbcsql command line interface (CLI), connect to the Oracle database instance using the table owner login/password

    eg.,
    % odbcsql
    ODBCSQL - ODBC SQL Interface program
    Copyright (c) 2001 Siebel Systems, Inc. All rights reserved.

    Type help for usage information.

    ODBC> set source=siebsrvr_siebel

    ODBC> login oraperf/oraperf
    SQL DBMS: Oracle version 10.02.0000 Oracle 10.2.0.1.0
    ODBC driver: SEor821.so version 05.10.0017 (B0011, U0004)
    (login time: 0.73s)

    ODBC> quit
    Outstanding transaction committed.

    Alternatively it can be tested in a single line as shown below:
    % odbcsql /s siebsrvr_siebel /u oraperf /p oraperf
    ODBCSQL - ODBC SQL Interface program
    Copyright (c) 2001 Siebel Systems, Inc. All rights reserved.

    Type help for usage information.

    Logging into "siebsrvr_siebel" as "oraperf" ...
    SQL DBMS: Oracle version 10.02.0000 Oracle 10.2.0.1.0
    ODBC driver: SEor821.so version 05.10.0017 (B0011, U0004)
    (login time: 0.67s)

    ODBC> quit
    Outstanding transaction committed.

If it fails to connect, double check the connect string specified during the installation of Siebel server.
____________________________
Technorati Tags:
 Oracle |  Siebel |  CRM |  Database
Read More
Posted in | No comments

Sunday, 3 February 2008

Win32 : Life Cycle of a WDM Driver

Posted on 17:31 by Unknown
There are three types of WDM Drivers.
  1. Bus Drivers, responsible for enumerating the devices on the bus. Device object associated with this kind of driver is Physical Device Object (PDO).

  2. Function Drivers, responsible for handling read , write, and device power policies for the devices. These drivers provide operational interface for its devices. Device object associated with this kind of driver is Functional device Object (FDO).

  3. Filter Drivers, to add additional value for the devices. Device object associated with this kind of driver is Filter Device Object (Filter DO). These are optional drivers.

Typical Windows device driver code will have DriverEntry(), AddDevice(), I/O Request Packet routines like IRP_MJ_CREATE, IRP_MJ_CLOSE, IRP_MJ_READ, IRP_MJ_WRITE and DriverUnload().

DriverEntry:

A driver's entry point is through the DriverEntry routine.The IO Manager calls the DriverEntry as soon as the driver is loaded.
Syntax:


NTSTATUS DriverEntry(PDRIVER_OBJECT DriverObject, PUNICODE_STRING RegistryPath)
{
DriverObject->MajorFunction[IRP_MJ_CREATE] = XXXXDispatchCreate;
DriverObject->MajorFunction[IRP_MJ_CLOSE] = XXXXDispatchClose;
DriverObject->MajorFunction[IRP_MJ_PNP] = XXXXDispatchPnp;
DriverObject->MajorFunction[IRP_MJ_POWER] = XXXXDispatchPower;
DriverObject->MajorFunction[IRP_MJ_READ] = XXXXDispatchRead;
DriverObject->MajorFunction[IRP_MJ_WRITE] = XXXXDispatchWrite;
DriverObject->MajorFunction[IRP_MJ_DEVICE_CONTROL] = XXXXDispatchDeviceControl;
DriverObject->DriverUnload = XXXXUnload;
DriverObject->DeviceExtension->AddDevice = XXXXAddDevice;
}

where XXXX is a user specified name eg. GdpDispatchCreate.

The DriverEntry gets pointer to its own driver object (DriverObject).DriverEntry initializes entry points for other routines of the driver and stores their pointers in the DriverObject. DriverEntry also initializes DriverUnload routine and AddDevice routine.

AddDevice:

Syntax:


NTSTATUS XXXXAddDevice(PDRIVER_OBJECT DriverObject, PDEVICE_OBJECT DeviceObject)
{
//.....
}

AddDevice routine is called after the devices get enumerated. AddDevice routine is like a DriverEntry for Plug and Play (PNP). AddDevice routine is responsible for creating Device Objects for the devices enumerated by the PNP Manager This routine calls IoCreateDevice and IoCreateSymbolicLink and IoAttachDeviceToDeviceStack functions mainly. IoCreateDevice function creates Device Object.It returns pointer to the Device Object. After creating the Device Object IoCreateSymbolicLink function is used to create link between the device object name and the user visible name of the device so that the device is visible to Win32. IoAttachDeviceToDeviceStack function is used to attach the device object created by IoCreateDevice to the stack.

DriverUnload :

Syntax:


NTSTATUS XXXXUnload(PDRIVER_OBJECT DriverObject)
{
//…………..
}

Unload routine checks if the device object is deleted or not.It frees up any memory allocated in the driver entry time.Unload routine gets called when the driver is Unloaded or reloaded or replaced with another driver or by the PNP Manager when there are no more device objects after IRP_MN_REMOVE_DEVICE is called .

Apart from DriverUnload and AddDevice rest all routines initialised in DriverEntry share same signature.


NTSTATUS XXXX(PDEVICE_OBJECT DeviceObject, PIRP Irp);

IRP_MJ_CREATE :

Syntax:


NTSTATUS XXXXDispatchCreate(PDEVICE_OBJECT DeviceObject, PIRP Irp)
{
//…………
}

This IRP is called when CreateFile function is called to open a handle to file object or a device object.Win32 makes a call to CreateFile function.Most of the drivers set STATUS_SUCCESS in the IO block and complete the request but this irp can be used to reserve any subsequent IO requests for that handle. The functionality implimented is based on the driver.

All dispatch routines must make a call to the function IoGetCurrentIrpStackLocation to get driver’s associate stack location. Also all dispatch routines must to fill out the PIRP and complete the routine through IoCompleteRequest.

PIRP can be filled as below:


Irp->IoStatus.Status = STATUS_SUCCESS;
Irp->IoStatus.Information = 0;
IoCompleteRequest( Irp,IO_NO_INCREMENT);

IRP_MJ_CLOSE :

Syntax:


NTSTATUS XXXXDispatchClose(PDEVICE_OBJECT DeviceObject, PIRP Irp)
{
//…………
}

This IRP is called when CloseHandle function is called to close the handle created by CreateFile function.Win32 makes a call to CloseHandle function.Most of the drivers set STATUS_SUCCESS in the IO block and complete the request .Additional functionality implimented will be dependent on the driver.Mostly it undos what ever is done by IRP_MJ_CREATE with CreateFile function.

IRP_MJ_PNP:

Syntax


NTSTATUS XXXXDispatchPnp(PDEVICE_OBJECT DeviceObject, PIRP Irp)
{
//…………
}

This IRP is called by the PnP manager during enumeration or device rebalancing or any other tine plug and play activity occurs.

Plug-n-Play (PNP) is acombination of hardware and softawre support that enables a computer to recognize and adapt to new hardware configuration change with little or no user intervension (i.e) user can add or remove devices at run time.

PNP's main responsibilities:

  • Automatic detection of hardware installation changes
  • Loading appropriate drivers during run time.

When a device is added to the system at run time some of the steps to be taken care of can be describe briefly as:

  • The user plugs in the device in a free slot
  • Function driver on the bus determines that there is a new device on the bus
  • Function driver notifies the PNP Manager about the new device addition
  • PNP manager send an IRP and the function driver of the bus handles the IRP and creates the PDO for the new device.
  • PNP manager gathers the information about the device through various IRPs and stores the information in the registry.
  • User mode setup components call kernel mode to help them call AddDevice routine.
  • PNP manager helps call the drivers DriverEntry and attaches the device to the stack
  • Resources necessary for the device are added and the device is started.

PnP has minor functions to support each PnP request accordingly. Few of the required function codes are:

IRP_MN_START_DEVICE
IRP_MN_QUERY_REMOVE_DEVICE
IRP_MN_REMOVE_DEVICE
IRP_MN_CANCEL_REMOVE_DEVICE
IRP_MN_QUERY_STOP_DEVICE
IRP_MN_ STOP_DEVICE
IRP_MN_CANCEL_STOP_DEVICE
IRP_MN_SURPRISE_REMOVAL

IRP_MN_START_DEVICE:

PNP Manager sends this IRP after it has assigned hardware resources to the device.The device may have been recently enumerated and is being started for the very first time or is restarting after being stopped. It an also be sent when driver currently in use requires new set of resources.

IRP_MN_QUERY_REMOVE_DEVICE:

This IRP is sent to query if the device if the device can be removed with out disturbing the system. In response to this IRP drivers inform whether the device can be removed or not.

IRP_MN_REMOVE_DEVICE:

This IRP is used to remove to device’s software representations like device object from the system. This IRP is called when the device is removed in orderly fashion or plugged out with out prior notification or when the driver needs an update.

IRP_MN_CANCEL_REMOVE_DEVICE:

This IRP is sent to inform the driver that the device will not be removed from the system. The status prior to the IRP_MN_QUERY_REMOVE_DEVICE will be restored in this case.

IRP_MN_QUERY_STOP_DEVICE:

This IRP is sent to query whether a device can be stopped to rebalance the resources. In response to this IRP the device informs if it is safe to stop the device or not.

IRP_MN_ STOP_DEVICE:

This IRP is sent to stop the device to reconfigure the hardware resources. In response to this IRP driver stops the device and releases the hardware resources being used by the device.

IRP_MN_CANCEL_STOP_DEVICE:

This IRP is sent to inform the driver that the device will not be stopped for rebalancing of the resources. In response to this IRP the driver must return the device to the started state.

IRP_MN_SURPRISE_REMOVAL:

This IRP is sent to the drivers for a device to inform that the device is no longer available for I/O operations. This may happen for reasons like:-

  • The bus has hot-plug notification and it notifies the device's parent bus driver that the device has disappeared.
  • When the bus is enumerated the surprise removed device will not be there on the bus.

In response to this IRP, Some of the steps to be taken care of are:

  • Ensure that the device is not available
  • Release the device’s hardware resources
  • Notify the power manager with PoSetPowerState and power down the bus slot of the device if possible
  • Prevent further I/O operations and fail the outstanding ones.
  • Process subsequent cleanup and close operations to the device.
  • After this IRP succeeds IRP_MN_REMOVE_DEVICE must be called.

IRP_MJ_POWER :

Syntax


NTSTATUS XXXXDispatchPower(PDEVICE_OBJECT DeviceObject, PIRP Irp)
{
//…………
}

Power manager can send this IRP any time the operating system is running. System power ranges from S0 to s5 and Device power state ranges from D0 to D3. Higher the number lowers the power consumption in either of the cases.
The minor IRPs supported by this IRP are:
IRP_MN_POWER_SEQUENCE
IRP_MN_SET_POWER
IRP_MN_WAIT_WAKE
IRP_MN_QUERY_POWER

IRP_MN_POWER_SEQUENCE:

This IRP is for optimization and is sent to determine whether its device actually entered a specific power state or not. IRP returns the power sequence values for the device.

IRP_MN_SET_POWER:

This IRP is sent to notify the drivers of the change to the system power state or to change the power state of a device for which the power manager is performing idle detection. PoRequestPowerIrp must be called to send this IRP.

IRP_MN_WAIT_WAKE:

This IRP is used to awaken a system/device from sleep state.

IRP_MN_QUERY_POWER:

This IRP is sent to query whether the system power state or the device power state can be changed.PoRequestPowerIrp must be called to send this IRP.

IRP_MJ_DEVICE_CONTROL :

Syntax


NTSTATUS XXXXDeviceControl(PDEVICE_OBJECT DeviceObject, PIRP Irp)
{
//…………
}

Every driver whose device objects belong to a particular device type and has a set of system-defined I/O control codes (IOCTLs) support this IRP. A driver receives this I/O control code because user-mode thread has called the Microsoft Win32 DeviceIoControl function, or a higher-level kernel-mode driver has set up the request. On receipt of a device I/O control request for most I/O control codes, device drivers transfer a small amount of data to or from the buffer.

IRP_MJ_READ :

Syntax


NTSTATUS XXXXDispatchRead(PDEVICE_OBJECT DeviceObject, PIRP Irp)
{
//…………
}

If the driver needs to transfers data from its device to the system it must handle read requests through this IRP. It can also be invoked when a user application or Win32 requested data transfer from the device.

IRP_MJ_WRITE :

Syntax


NTSTATUS XXXXDispatchWrite(PDEVICE_OBJECT DeviceObject, PIRP Irp)

{
//…………
}

This IRP is sent by IO manager and is invoked when Win32 calls functions such as WriteFile.

References:

Windows® 2000 Device Driver Book: A Guide for Programmers, Second Edition
MSDN
___________________
Technorati tags:

 Win32 |  Windows |  WDM |  Device Drivers |  Programming

Read More
Posted in | No comments
Newer Posts Older Posts Home
Subscribe to: Posts (Atom)

Popular Posts

  • *nix: Workaround to cannot find zipfile directory in one of file.zip or file.zip.zip ..
    Symptom: You are trying to extract the archived files off of a huge (any file with size > 2 GB or 4GB, depending on the OS) ZIP file with...
  • JDS: Installing Sun Java Desktop System 2.0
    This document will guide you through the process of installing JDS 2.0 on a PC from integrated CDROM images Requirements I...
  • Linux: Installing Source RPM (SRPM) package
    RPM stands for RedHat Package Manager. RPM is a system for installing and managing software & most common software package manager used ...
  • Solaris: malloc Vs mtmalloc
    Performance of Single Vs Multi-threaded application Memory allocation performance in single and multithreaded environments is an important a...
  • C/C++: Printing Stack Trace with printstack() on Solaris
    libc on Solaris 9 and later, provides a useful function called printstack , to print a symbolic stack trace to the specified file descripto...
  • Installing MySQL 5.0.51b from the Source Code on Sun Solaris
    Building and installing the MySQL server from the source code is relatively very easy when compared to many other OSS applications. At least...
  • Oracle Apps on T2000: ORA-04020 during Autoinvoice
    The goal of this brief blog post is to provide a quick solution to all Sun-Oracle customers who may run into a deadlock when a handful of th...
  • Siebel Connection Broker Load Balancing Algorithm
    Siebel server architecture supports spawning multiple application object manager processes. The Siebel Connection Broker, SCBroker, tries to...
  • 64-bit dbx: internal error: signal SIGBUS (invalid address alignment)
    The other day I was chasing some lock contention issue with a 64-bit application running on Solaris 10 Update 1; and stumbled with an unexpe...
  • Oracle 10gR2/Solaris x64: Fixing ORA-20000: Oracle Text errors
    First, some facts: * Oracle Applications 11.5.10 (aka E-Business Suite 11 i ) database is now supported on Solaris 10 for x86-64 architectur...

Categories

  • 80s music playlist
  • bandwidth iperf network solaris
  • best
  • black friday
  • breakdown database groups locality oracle pmap sga solaris
  • buy
  • deal
  • ebiz ebs hrms oracle payroll
  • emca oracle rdbms database ORA-01034
  • friday
  • Garmin
  • generic+discussion software installer
  • GPS
  • how-to solaris mmap
  • impdp ora-01089 oracle rdbms solaris tips upgrade workarounds zombie
  • Magellan
  • music
  • Navigation
  • OATS Oracle
  • Oracle Business+Intelligence Analytics Solaris SPARC T4
  • oracle database flashback FDA
  • Oracle Database RDBMS Redo Flash+Storage
  • oracle database solaris
  • oracle database solaris resource manager virtualization consolidation
  • Oracle EBS E-Business+Suite SPARC SuperCluster Optimized+Solution
  • Oracle EBS E-Business+Suite Workaround Tip
  • oracle lob bfile blob securefile rdbms database tips performance clob
  • oracle obiee analytics presentation+services
  • Oracle OID LDAP ADS
  • Oracle OID LDAP SPARC T5 T5-2 Benchmark
  • oracle pls-00201 dbms_system
  • oracle siebel CRM SCBroker load+balancing
  • Oracle Siebel Sun SPARC T4 Benchmark
  • Oracle Siebel Sun SPARC T5 Benchmark T5-2
  • Oracle Solaris
  • Oracle Solaris Database RDBMS Redo Flash F40 AWR
  • oracle solaris rpc statd RPC troubleshooting
  • oracle solaris svm solaris+volume+manager
  • Oracle Solaris Tips
  • oracle+solaris
  • RDC
  • sale
  • Smartphone Samsung Galaxy S2 Phone+Shutter Tip Android ICS
  • solaris oracle database fmw weblogic java dfw
  • SuperCluster Oracle Database RDBMS RAC Solaris Zones
  • tee
  • thanksgiving sale
  • tips
  • TomTom
  • windows

Blog Archive

  • ►  2013 (16)
    • ►  December (3)
    • ►  November (2)
    • ►  October (1)
    • ►  September (1)
    • ►  August (1)
    • ►  July (1)
    • ►  June (1)
    • ►  May (1)
    • ►  April (1)
    • ►  March (1)
    • ►  February (2)
    • ►  January (1)
  • ►  2012 (14)
    • ►  December (1)
    • ►  November (1)
    • ►  October (1)
    • ►  September (1)
    • ►  August (1)
    • ►  July (1)
    • ►  June (2)
    • ►  May (1)
    • ►  April (1)
    • ►  March (1)
    • ►  February (1)
    • ►  January (2)
  • ►  2011 (15)
    • ►  December (2)
    • ►  November (1)
    • ►  October (2)
    • ►  September (1)
    • ►  August (2)
    • ►  July (1)
    • ►  May (2)
    • ►  April (1)
    • ►  March (1)
    • ►  February (1)
    • ►  January (1)
  • ►  2010 (19)
    • ►  December (3)
    • ►  November (1)
    • ►  October (2)
    • ►  September (1)
    • ►  August (1)
    • ►  July (1)
    • ►  June (1)
    • ►  May (5)
    • ►  April (1)
    • ►  March (1)
    • ►  February (1)
    • ►  January (1)
  • ►  2009 (25)
    • ►  December (1)
    • ►  November (2)
    • ►  October (1)
    • ►  September (1)
    • ►  August (2)
    • ►  July (2)
    • ►  June (1)
    • ►  May (2)
    • ►  April (3)
    • ►  March (1)
    • ►  February (5)
    • ►  January (4)
  • ▼  2008 (34)
    • ►  December (2)
    • ►  November (2)
    • ►  October (2)
    • ►  September (1)
    • ►  August (4)
    • ►  July (2)
    • ►  June (3)
    • ►  May (3)
    • ►  April (2)
    • ►  March (5)
    • ▼  February (4)
      • 2Q08 Market Development Excellence Award
      • Oracle 10g: Setting up The Oracle Enterprise Manag...
      • Testing Siebel Server Database Connectivity
      • Win32 : Life Cycle of a WDM Driver
    • ►  January (4)
  • ►  2007 (33)
    • ►  December (2)
    • ►  November (4)
    • ►  October (2)
    • ►  September (5)
    • ►  August (3)
    • ►  June (2)
    • ►  May (3)
    • ►  April (5)
    • ►  March (3)
    • ►  February (1)
    • ►  January (3)
  • ►  2006 (40)
    • ►  December (2)
    • ►  November (6)
    • ►  October (2)
    • ►  September (2)
    • ►  August (1)
    • ►  July (2)
    • ►  June (2)
    • ►  May (4)
    • ►  April (5)
    • ►  March (5)
    • ►  February (3)
    • ►  January (6)
  • ►  2005 (72)
    • ►  December (5)
    • ►  November (2)
    • ►  October (6)
    • ►  September (5)
    • ►  August (5)
    • ►  July (10)
    • ►  June (8)
    • ►  May (9)
    • ►  April (6)
    • ►  March (6)
    • ►  February (5)
    • ►  January (5)
  • ►  2004 (36)
    • ►  December (1)
    • ►  November (5)
    • ►  October (12)
    • ►  September (18)
Powered by Blogger.

About Me

Unknown
View my complete profile