oracle sql syllabus for payilagam training institute in chennai

7

Click here to load reader

Upload: payilagam-software-training-institute

Post on 26-May-2015

86 views

Category:

Education


0 download

DESCRIPTION

We are a team of young blood. Some of our Payilagam team mates are Childhood friends, few college mates and few other as Colleagues in Professional life and ended as friends. One common thing about the Payilagam team is we have around Five Years of experience in the Software field. When we came out of our college campus the entire world was new to us. Though we were alumni of various leading government and private engineering colleges, we experienced difficult situations and the road to reach this position had lot of hurdles. Each of us realized that there is a huge gap between the 10+2+4 education system and the Jobs field what we want to be in. During our initial days of job hunt, we found many software training centers with fake promises of placement and career. Some of our friends believed those fake promises, joined there with dreams and hopes but all went in vain. None of the claims of these institutes were true, are true and neither will be. These so called “Best Software Training Institutes” captivate the students not for the welfare of the students but for their own profit margins. These taught us strong lesson not to believe these software training institutes in Chennai. All these experience fed us thought for starting a software training institute in Chennai and in turn saw the seed ‘Payilagam’. We don’t endorse ‘Payilagam’ as the best, We don’t endorse ‘Payilagam’ as No 1 institute in Chennai, But we endorse ‘Payilagam’ with its moral. We started Payilagam Software Training Institute with the moral vision to nurture professionals of high academic caliber and perfect character, nurture with a strong motivation and commitment to serve humanity. We aim at training our trainees to become not only skilled professionals but also excellent human beings to influence the quality of life of people around. There were no one to guide us when we were about to start our career, But Payilagam is there for you.

TRANSCRIPT

Page 1: Oracle sql syllabus for payilagam training institute in chennai

Payilagam Software Training Institute,No:4/67E, Sri Balaji’s Ishwarya,Vijaya Nagar 3rd Cross Street, Velachery, Chennai – 600042. 044-22592370, 8344777333, 8883775533.Mail : [email protected], Website : www.payilagam.com

Oracle Standard SQL contents (Includes ANSI SQL / ISO SQL)

Many new topics added apart from Oracle Standard curriculum based on real-time requirements in various domain(Manufacturing / Finance / Human resource / Inventory / Insurance) various Data Warehouse.

1. Basic DATABASE Concept and SQL

Basic history of database concept: DBMS, RDBMS, ORDBMSAdvantage of ORACLE database and version informationInterface tools usage: sqlplus, isqlplus, sqldeveloper, ToadSQL Language overview: DQL, DML, DDL, DCL, TCLWhat is the usage of ANSI standard?SELECT Command - Column Alias Rules, String data,Concatenations with various dataNull Value handling with number and characters,Arithmetic OperatorConcatenation Operator,Eliminating Duplicate Rows

2. Restricting and Sorting Data

WHERE Clause - Character Strings and Dates, numberGeneral Comparison Conditions = > >= < <= <>Other Comparison BETWEEN, IN, LIKE, NULLLogical Conditions AND OR NOTORDER BY Clause, Sorting by Column Alias, Column Position, Multiple Columns

3. Single-Row Functions

Character Functions: UPPER, LOWER, INITCAP, LENGTH, SUBSTR, INSTR, LPAD, RPAD,CONCAT, LTRIM, RTRIM, TRIM, REPLACE, TRANSLATE, AND REVERSENumber Functions: ROUND, TRUNC, MOD, POWER, CEIL, FLOOR, ABS

1 Payilagam software training institute |

Page 2: Oracle sql syllabus for payilagam training institute in chennai

Dates Functions: SYSDATE, MONTHS_BETWEEN, NEXT_DAY,LAST_DAY, ADD_MONTHS, ROUND, TRUNC, Arithmetic on DateConversion Functions: Implicit Data-Type Conversion & Explicit Data-Type Conversion,TO_CHAR, TO_NUMBER, TO_DATEGeneral Functions: NVL, NVL2, NULLIF, COALESCECASE Expression, DECODENested function with real-time usage

4. JOINS

EQUI JOIN / SIMPLE JOIN / NORMAL JOINANSI JOIN, LEFT OUTER, RIGHT OUTER, FULL OUTERNATURAL JOIN, NATURAL OUTER JOINSINNER JOIN, JOIN ... USING clause, JOIN ... ON clause,CROSS JOIN, NON-EQUI JOIN, SELF JOINORACLE STANDARD OUTER JOINS.Multi table Joins, Complex Joins – How to simplified complex joins.

5. Multi-row Functions

Group Functions Rules, SUM, MIN, MAX, COUNT, AVGCreating Groups of Data: GROUP BY ClauseFiltering Group Results: The HAVING Clause

6. Sub-queries

Single-Row Subqueries- Rules, Operators: = > >= < <= <>Null Values in a SubqueryMulti-Row Subqueries- Rules, Operators: IN, ANY, ALL

7. Reporting data using interface commands

pagesize, linesize , column heading , column format , colseptTitle , bTitle , break on column, spool , CSV file generation, Text file generation

8. Data Manipulation Language DML and Transaction Control Language TCL

DML: INSERT, UPDATE, DELETE, MERGETCL: COMMIT, ROLLBACK, SAVEPOINT

9. Data Definition Language - DDL

2 Payilagam software training institute |

Page 3: Oracle sql syllabus for payilagam training institute in chennai

DDL: CREATE, ALTER, RENAME, DROP, TRUNCATEDEFAULT OPTION.Constrain table copy

10. Constraints

NOT NULL, UNIQUE, PRIMARY KEY, FOREIGN KEY, CHECKColumn Level Constraint, Table Level Constraint – Naming constraints and usageAdding a Constraint, Dropping a Constraint,Disabling Constraints, Enabling ConstraintsValidating Constraints

11. Views

Simple Views and Complex Views – Create, Drop, Source CodeRules for Performing DML Operations on a ViewWITH CHECK OPTION, WITH READ ONLYInline ViewsMaterialized View – Create, Refresh, Drop - Usage

12. Other Database Objects

Sequence- NEXTVAL and CURRVALIndex - When to Create an Index, When Not to Create an Index.Synonyms

13. DCL COMMANDS

Creating UsersGranting / Revoking PrivilegesCreating and Granting Privileges to a Role

14. Dictionary Tables

Tables, Views, Synonyms, Index, Sequence, Constrains, Source and other Dictionary

15. SET Operators

UNION,UNION ALL,INTERSECT,MINUS

3 Payilagam software training institute |

Page 4: Oracle sql syllabus for payilagam training institute in chennai

16. Advanced Date-time Functions

TIME ZONES,SYSDATE, SYSTIMESTAMP,CURRENT_DATE, CURRENT_TIMESTAMPSESSIONTIMEZONE,Storing time zone data in TableEXTRACT,TO_YMINTERVAL

17. Advanced GROUP BY Clause

Group by with ROLLUP,Group by with CUBE,GROUPING SETS

18. Advanced Sub queries

Pair wise Comparison Sub query,Non pair wise Comparison Sub queryCorrelated Sub queries,Correlated UPDATE,Correlated DELETEEXISTS, NOT EXISTS Operator

19. Hierarchical Retrieval

The Tree: From the Bottom Up, From the Top DownLEVEL Pseudo column,Connect by prior,

20. Multi-table Insert

Unconditional INSERT ALLConditional INSERT ALLConditional FIRST INSERT

21. DATA LOADER

SQLLDR – Loading CSV file / Flat file into ORACLE table.

4 Payilagam software training institute |

Page 5: Oracle sql syllabus for payilagam training institute in chennai

22. Analytic Functions

WM_CONCAT, LAG, LEAD, RANK, DENSE_RANKQuery_by partition_clause with sum, min, max, avg, count,order_by_clause with sum, min, max, avg, count,Psudo column: Rownum, Rowid, - Elimination duplicate dataConnect by rownum , Connect by Level – Generating random numbers, random dates,Quote Operator syntax and usage

23. Backup

Export / Import SCHEMA- using TOAD- using ORACLE direct command

24. General

What is migration?Migration Estimating, Planning, Preparation – Simple Scenario / Complex Scenario.

Warm Regards

Payilagam software training institute,8344777333, 8883775533.Mail: [email protected] Website: www.payilagam.com

5 Payilagam software training institute |