With Oraclemix.com You can 
Connect and ask the Oracle Experts
Write Articles and Write blogs
Ask questions and help others by answering 
Interview Questions
Participate in Discussion and many more .. 

Database Articles

  • Synonyms

    When you reference an object in a SQL command that is owned by another user, you must preface the object name with the owner’s username. SELECT * FROM scott.dept ; A synonym is an alternate na…

    Read More...

  • Indexes

    A database index is a table that contains data values, along with a corresponding column that specifies the physical locations of the records (ROWID) that contain the associated sorted data values.…

    Read More...

  • Database Views

    A view does not physically exist in the database. It is derived from other database tables. When the data in its source table is updated , the view reflects the updates as well. If structure of a v…

    Read More...

  • Selecting Records For Update

      When you enter a SELECT command to query database records, no locks are placed on the selected records, and other database users can use view and update these records at the sane time you are viewin…

    Read More...

  • Using Set Operators to Combine Query Results

    Set Operator Purpose UNION Returns all rows from both queries, but displays duplicate rows only once. UNION ALL Returns all rows from both queriesi and displ…

    Read More...

  • Creating Nested Query

    A nested query is created when a second query, called a subquery, is nested within a main query. The main query is the first query that is listed in the SELECT command. The subquery is used to s…

    Read More...

  • Joins - Joining Multiple Tables

    The general syntax of a SELECT statement that joins two tables is : SELECT column1, column2, … FROM table1, table2 WHERE table1.join_column = table2.join_column ; r ( Equality ) Join…

    Read More...

  • Oracle SQL Group Functions

    Function Description Example Result AVG (fieldname) Returns the average value of a numeric column’s returned values AVG (capacity ) 33.23030768…

    Read More...

  • Oracle SQL Group Functions

    Function Description Example Result AVG (fieldname) Returns the average value of a numeric column’s returned values AVG (capacity ) 33.23030768…

    Read More...

  • Functions

    SELECT inv_id, item_size, color, price,qoh, price * qoh FROM inventory WHERE item_id = 897; SELECT s_id, s_last, SYSDATE – s_dob FROM student ; SELECT s_id, s_last, ( SYSDATE – s_do…

    Read More...

Datawarehousing Articles

  • Snowflake Schema

    A snowflake schema is a term that describes a star schema structure normalized through the use of outrigger tables. i.e dimension table hierachies are broken into simpler tables.…

    Read More...

  • Star Schema

    When we consider an example of an organization selling products throughtout the world, the main four major dimensions are product, location, time and organization.…

    Read More...

  • Data warehouse and Data Mart

    Data Warehouse & Data MartA data warehouse is a relational/multidimensional database that is designed for query and analysis rather than transaction processing. A data warehouse usually contains histo…

    Read More...

  • Datawarehouse defintion and Architecture

    What is a Data Warehouse? According to Inmon, famous author for several data warehouse books, "A data warehouse is a subject oriented, integrated, time variant, non volatile collection of data in supp…

    Read More...

  • Datawarehouse Vs Data Mart

        Datawarehouse Data Mart Scope & Application Application Independent Specific Application A Data Warehouse is single point repository and its data can be used for any…

    Read More...

  • Comparison of Data Warehouse and Operational Data

    HOW IS THE WAREHOUSE DIFFERENT?The data warehouse is distinctly different from the operational data used and maintained by day-to-dayoperational systems. Data warehousing is not simply an “access wr…

    Read More...

  • Data Warehouse Definitions

    The data warehouse is that portion of an overall Architected Data Environment that serves as the singleintegrated source of data for processing information. The data warehouse has specific characteris…

    Read More...