Archive for 2013

A glimpse Of Shaheed Kerbala

February 1st, 2013, posted in Muharram
Share

A wonderful blog where you would get a glimpse of Imam Aalee MuqaamImam Hussain (A.S)Shaheed Kerbala​ :

http://www.sufiblog.com/#!imam-hussain/c157h

Share

If You Get What I Mean

January 31st, 2013, posted in BoYs, LoVE, MESSAGEs
Share

If You Get What I Mean,brother,love,respect,lover

Share

ORACLE : How to Add or Remove List Text Anywhere from List Item?

January 30th, 2013, posted in Oracle
Share

Here we will talk a trick of Oracle List Item for Forms Version 10g and 6i.

If you want to remove list text and values from a oracle forms list item.
How will you do this ?
When there is no remove icons and Backspace and Delete key doesn’t work, both just lest blank spaces.

Try the following shortcut keys:

  • “Ctrl + Shift + >” – add list element.
  • “Ctrl + Shift + <” – remove list element.
  • Share

    A Comic Of Jehan Ara

    January 29th, 2013, posted in COMiCS, PAKiSTAN
    Share

    A Comic Of Jehan Ara,comic,Jehan Ara,Jehan ,Ara,IT,Pasha

    Share

    ORACLE : How to Show / Get, Year Month and Date between two date ?

    January 28th, 2013, posted in Oracle Queries
    Share

    Use bellow sql to show year month and date :

    SELECT    TRUNC (MONTHS_BETWEEN (:END_DATE, :START_DATE) / 12) as YEARS,
    MOD(TRUNC (MONTHS_BETWEEN (:END_DATE, :START_DATE)), 12) as MONTHS,
    (  TO_DATE (:END_DATE)- ADD_MONTHS (:START_DATE,TRUNC (MONTHS_BETWEEN (:END_DATE, :START_DATE))))  as Date
    FROM DUAL;

    *********************************************************************************************************************
    Note : Please not do make backups before using these queries and also confirm them yourself or by aother means as
     well.
    *********************************************************************************************************************
    Share