User Profile

Collapse

Profile Sidebar

Collapse
zaffer
zaffer
Last Activity: Nov 7 '11, 09:13 AM
Joined: Oct 19 '11
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • How can I make virtual table whitout create privilege?

    Is there a way to create virtual table if I don't have create privilege??
    See more | Go to post

  • 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
No activity results to display
Show More
Working...