User Profile

Collapse

Profile Sidebar

Collapse
rajanbabu23
rajanbabu23
Last Activity: Oct 10 '07, 02:20 PM
Joined: Jul 16 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • rajanbabu23
    replied to Grant problem
    try it...

    create or replace view employees as
    select * from star.employees ;


    select * from employees ;
    See more | Go to post

    Leave a comment:


  • Try it....
    [code=oracle]
    select DISTINCT a.out_tar||'~'| | a.out_csi_id||' ~'||a.out_cust_ name||'~'||a.ou t_id| |'~'||b.out_id| |'~'||a.out_cat egory||'~'||
    b.out_category| |'~'||
    to_char(a.out_s tart_date, 'fm dd-mon-yyyy hh24:mi') ||'~'||
    to_char(a.out_e nd_date, 'fm dd-mon-yyyy hh24:mi') ||'~'||
    to_char(b.out_s tart_date, 'fmdd-mon-yyyy hh24:mi') ||'~'||
    to_char(b.out_e nd_date, 'fmdd-mon-yyyy hh24:mi')||'~'| |c.ots_inst_lab el...
    See more | Go to post
    Last edited by debasisdas; Jul 24 '07, 10:15 AM. Reason: added code tags

    Leave a comment:


  • rajanbabu23
    started a topic Table Partition

    Table Partition

    dear friends,

    If i insert a row into table SALES ...If created_dt , Jan or Feb or Mar ...it will store separate partition...I tried the below script ..it's was not working.,

    Script :

    CREATE TABLE sales
    ( prod_id NUMBER(6),
    create_dt DATE
    )
    PARTITION BY LIST (to_char(create _dt,'MON'))
    (PARTITION SALES_JAN VALUES ('JAN'),
    PARTITION SALES_FEB...
    See more | Go to post

  • New PL/SQL Feature in Oracle 11g: CONTINUE keyword

    PL/SQL "continue" keyword - This will allow a "C-Like" continue in a loop, skipping an iteration to bypass any "else" Boolean conditions. A nasty PL/SQL GOTO statement is no longer required to exit a Boolean within a loop. Oracle professional has an excellent PL/SQL example of the PL/SQL continue clause in-action:
    begin
    for i in 1..3
    loop
    dbms_output.put _line('i='||to_ char(i));
    if (...
    See more | Go to post
No activity results to display
Show More
Working...