Blogspot - its-easy-for-u.blogspot.com - @ Basic Programming @
General Information:
Latest News:
Rollup function in group by clause 25 Jun 2010 | 04:30 pm
Rollup function in group by clause source: Need more Create Table: ............................................................................... create table Employee( ID VARCHAR2(4 BYTE) NOT NULL...
C# Tips(Just Basic) 25 Jun 2010 | 04:47 am
# What is Class, Object, Properties ? @ Just follow the example: Person - Class Utpal, Tirtha (Just any name) - Object Age, Height, Hair color - Properties (( Any Person may be Utpal or Tirtha . An...
ORACLE JOIN 25 Jun 2010 | 12:23 am
Oracle Join > Join Demo Tables CREATE TABLE person ( person_id NUMBER(10), first_name VARCHAR2(25) NOT NULL, last_name VARCHAR2(25) NOT NULL, title_1 VARCHAR2(5), title_2 VARCHAR2(5)) PCTFREE 20; A...
Objects & Classes in C# 25 Jun 2010 | 12:06 am
Objects & Classes in C# source: http://www.csharphelp.com/2007/03/objects-classes-in-c/ In this article we will understand some of the concepts of object-oriented programming in C# like objects and ...
Star schema in Oracle 23 Jun 2010 | 05:51 am
Star schema in Oracle SET SERVEROUT ON; spool create_sample_star_schema.log; /* Drop the Sample Tables */ DROP TABLE batting_fact; DROP TABLE game_dim; DROP SEQUENCE game_dim_seq; DROP DIMENSION ga...