What is Meditation?
According to Wikipedia, Meditation is a practice in which an individual trains the mind or induces a mode of consciousness, either to realize some benefit or as an end in itself.
How to Calibrate Touch Screen on HTC Desire HD
As a HTC Desire HD user, you have noticed sometimes that your touch screen malfunctioning.
You can solve this problem by resetting touch screen calibration settings.
Follow the ...
Oracle Database 11g Release 2 Operating System Requirements for Windows
According to latest Oracle documentation, the following operating system or later versions are required to successful installation of Oracle Database 11g Release 2 on Windows. We have ...
How can I Quit vi Editor without Saving Changes?
To quit the vi editor without saving any changes you’ve made, perform the following command:
Type colon (:)
Type q! after colon and press enter
Any changes made are lost and quit ...
How to find Windows Install Date
Use the following command to find windows install date:
systeminfo | find /i “install date”
You will find the the result like this:
Original Install Date: 28/11/2011, ...
How to Configure XManager on Linux
Open /etc/gdm/custom.conf and edit the security and xdmcp section like the followings:
[daemon]
RemoteGreeter=/usr/libexec/gdmgreeter
[security]
AllowRemoteRoot=true
[xdmcp]
Enable=true
[gui]
[greeter]
[chooser]
[debug]
Restart ...
How to Zip a File in Linux
First navigate to the directory which the file resides:
cd /home/oracle
Then enter the following command:
zip data.zip SHLHCMDB_FULL_20130106.dmp
Press Enter
How to Count Records of All Tables in Oracle Schema
SELECT TABLE_NAME,
TO_NUMBER(
EXTRACTVALUE(
XMLTYPE(
DBMS_XMLGEN.GETXML(
'SELECT COUNT(1) C FROM ...
How to Set the Android TextView Width Property?
Android TextView Width property makes the TextView be exactly the parametric pixels wide. It should be done the same thing by mention this size in the LayoutParams. We can ...
Oracle SUBSTR Function
Oracle SUBSTR (SubString | Sub String) function lets you extract a portion of string from a given string.
Syntax of Oracle SUBSTR function:
SUBSTR(string, position [, length ])
Parameter ...
