How to connect to a specific SID using sqlplus under Unix

A very easy way to connect to a specific SID (other than the default one) using sqlplus, is to make this SID “temporarily” the default SID.
Just change ORACLE_SID environment variable to the required SID name:
export ORACLE_SID=sid_name
Then connect using sqlplus to the default SID:
sqlplus / as sysdba
It may not be the ideal way, but it’s “simple and stupid” as  SoCRaT says 🙂

Posted in Uncategorized | Tagged | 1 Comment

My CRM Session @FCIH Intiatave Program

Last Wednesday, I’ve delivered a session about CRM “Customer Relationship Management” in my dear faculty “Faculty of Computers and Information – Helwan University” 🙂

Many many thanks to the organizers, and whoever made efforts to make this day successful. And for audiences, I wish you liked the session, and I’m waiting your feedback and opinions.

As I promised during the session, the following are some CRM resources and websites for those who are interested:

1. CRM:

2. Siebel CRM:

3. SAP CRM:

4. Open Source CRMs:

Posted in Uncategorized | Tagged , , , , | Leave a comment

Solution to Not Able to import PDF files on OpenOffice.org Lucid

Don’t manually download the extension from the website, install it from the repos instead “sudo apt-get install openoffice.org-pdfimport”

That’s it! Enjoy!

Tagged , , | Leave a comment

Huawei e156G 3G modem Connection not appearing in Network Manager Connections List in Ubuntu Lucid

  1. Insert the modem
  2. Right-click and select eject
  3. Unplug the modem
  4. Plug in the modem
  5. Done!

I’m using the USB Huawei e156g 3G modem on Ubuntu Lucid

Tagged , , , , | Leave a comment

Encrypt and Decrypt Text Files on AIX using OpenSSL

There are oodles of encryption algorithms and encrypting a file is quite simple.

Code:
# openssl enc -aes-256-cbc -in file -out file.enc
enter aes-256-cbc encryption password: password
Verifying - enter aes-256-cbc encryption password: password
#

To decrypt, simply swap your -in and -out file parameters and add a -d to the command line:

Code:
# openssl enc -d -aes-256-cbc -in file.enc -out file
enter aes-256-cbc encryption password: password
#

Source: http://www.unix.com/aix/28903-file-password-protection-encryption.html

Tagged , | Leave a comment