Search Result

Collapse
4 results in 0.0042 seconds.
Keywords
Members
Tags
pl/sql
  •  

  • zaffer
    started a topic PL/SQL return count for all dates

    PL/SQL return count for all dates

    Code:
    SELECT trunc(sysdate) dt, count(*) as count
    FROM ATM_MONITOR.ATM_PROBLEM
    WHERE trunc(sysdate) = trunc(create_time)
    union
    SELECT trunc(sysdate)-1 dt, count(*) as count
    FROM ATM_MONITOR.ATM_PROBLEM
    WHERE trunc(sysdate)-1 = trunc(create_time)
    union
    SELECT trunc(sysdate)-2 dt, count(*) as count
    FROM ATM_MONITOR.ATM_PROBLEM
    WHERE trunc(sysdate)-2 = trunc(create_time)
    ...
    See more | Go to post

  • S Kajim
    started a topic Calculate leap year days between two dates

    Calculate leap year days between two dates

    Hi there,

    I need to calculate leap year days between two dates in PL/SQL. Will someone be able to help?
    See more | Go to post

  • Returning an Oracle generated GUID through an out parameter

    I am returning the following error when i try to pass an oracle generated GUID through an out parameter. Here is the following error message from SQL+ worksheet:

    BEGIN Project.spm_Dat aInsertTest ( ' ', :out_PPLorgGUID , :out_SubNo); END;

    *
    ERROR at line 1:
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    ORA-06512: at line 1

    Below is the Test Stored Procedure...
    See more | Go to post

  • 0301102
    started a topic slipt a string into 2 word in Oracle PL?SQL

    slipt a string into 2 word in Oracle PL?SQL

    Hi,

    I have a input parameter call DOMAIN_NAME (Example: seng.com.my), and i need slipt it into 2 word, becasue "seng" is the label and ".com.my" is the zone,
    so my i know how to slpit it into two word? Or any one have a better idea to solve the mentioned problem? Your help will be appreciated. Thx.


    Thanks & Regards
    seng
    See more | Go to post
Working...