Pages

Sunday 29 September 2013

INTRODUCTION TO ORCLE AND SUB LANGUAGES COMMANDS


oracle

INTRODUCTION TO ORACLE

ORACLE is a powerful rdbms product that provides efficient and effective solutions for major database.An oracle data base system can easily take advantage of distributed processing by using its client/server architecture.
                  ORACLE IS A COMBINATION OF SQL AND PL/SQL.
FIRST KNOWN SQL:
WHAT IS SQL:
           SQL stands for structured query language.SQL is used to communicate with a database.According to ANSI(american national standards institute),it is the standard language for relational database management syatems.SQL statements are used to perform tasks such as update data on a database.or retrieve data from database.some common relational database management systems that use SQL are:oracle,sybase,microsoft sql server,access,ingres,etc.
                                               it is non procedural language which is used to communicate with any type of database.this language was developed by german scientist mr E.F CODD AT 1968 in 1970 ANSI approved this language and 1972 sql was released in the market.
FEATURES OF SQL:
  • it is a non-procedural language
  • it can also pronounced as SEQUEL
  • it is not a case sensitive language.
  • it can be called as natural language interface because almost all sql commands similar to normal english language
  • it is the common language to interact with any type of database such as oracle,db2 etc.
SUB LANGUAGES OF SQL:
          it was divided into following types.
  • data defination language(DDL)
  • data manipulation language(DML)
  • data retrieval language(DRL)
  • transaction control language(TCL)
  • data control language(DCL)

PROPERTIES OF RDBMS:

1.data should store in the form of a table.a table can be different as collection of rows&columns
A horizontal lines as Rows or Records/touples
A vertical lines are known as fields or attributes/columns
the intersection of  rows&columns is known as cell
                              a cell is a place where we can store or a data.the other name of table can be known as entity/object.
 table/entity/object:
             fields/attributes/columns

 rows/records/touples


2.table should not contain duplicate column 3.while do inserts the records the table user no need to follow any specific order.
4.data base should not contain duplicate objects 
5.while do defines columns in the table user follow no need to order

E-R DIAGRAMS:


          this concept was developed by a u.s scientist MR PETER CHAN ,this is the diagramatical representation of manual database when we design E-R diagrams we need to use following symblos.

→  Connection

ex:draw E-R diagram which represent the relation between sales representive and customer

SUB LANGUAGE COMMANDS:

 1.DATA DEFINATION LANGUAGE COMMANDS:

                   WHAT IS DATA DEFINITION LANGUAGE?
this is first sub language in sql which is used to define database objects such as table,view,stored procedure,function and trigger etc.a data definition language has a pre-defined syntax for describing data
    this language contains 5 commands those are
  1. CREATE
  2. ALTER
  3. RENAME
  4. TRUNCATE
  5. DROP
CREATE:
           this command is used to create databse objects such as table,view,synonym,trigger,stored procedure etc.,
syntax:
      CREATE TABLE table-name(column 1 data-type-for-column1,
                                           column 2 data-type-for-column2,
............);
ex:
CREATE TABLE user(name char(50),villagename char(50),mobilenum number(10));
RULES FOR CREATING A TABLE:
  1. table name should start with an alphabet and it contains minimum 1 character and maximum 30 characters and it should not allow any space or any special chartcters except _,#,$ and 0 to 9 numbers
  2. a table can have minimum 1 column and maximum 1000 columns
  3. a table can have minimum 0 records and maximum n number of records upto harddisk capacity
  4. oracle keywords should not be used as column names or table names
  5. column name should start with an alphabet and it contains minimum 1 character and maximum 30 characters and it should not allow any space or any special chartcters except _,#,$ and 0 to 9 numbers
ALTER:
      this command is used to modify the structure of the table.
using this command we can perform 4 different operations on the table
  • alter-modify
  • alter-add
  • alter-rename
  • alter-drop
alter-modify:
         this command is used to increse or decrese the size of the column or we can change the data type of the column.
RENAME:
   This command is used to change the table name.
syntax:
          rename old-table-name to new-table-name;
ex:
 rename user to cust;
TRUNCATE:
  This command is used to delete the records from the existing table permanently.
syntax:
          truncate table
;

ex:
           truncate table user;
DROP:
   This command is used to drop the table from the data base.
syntax:
       drop table
;

ex:
       drop table user;
using drop command once we drop the table those tables are not dropped permantely from the database.
                       thosetables are gone to recycle bin.if you want to get back the table from the recycle bin then we have to use followin command.
FLASHBACK COMMAND:
           This command was introduced from oracle log onwords and which is used to retrieve back the table from the recycle bin
  syntax:
          FLASHBACK table
to before drop;

ex:
      flashback table user to before drop;
permantely delete from the database :
     following this two commands
drop table
purge;

purge table
;

Friday 13 September 2013

WINZIP 16 PRO 100% WORKING SERIAL KEY,CRACK,PATCHES DOWNLOAD HERE



WinZip 16



Zip, protect and share anywhere with the world's #1 zip utility.

  • Zip and unzip files and folders instantly
  • Protect files by encrypting as you zip
  • Convert to PDF, add watermarks and resize photos
  • Share large files anywhere—email etc...

Unzip all major formats
With just a click, open all major compression file types, including Zip, Zipx, RAR, 7Z, TAR, GZIP and more.
Protect your files
Easily encrypt files as you zip to keep information and data secure. Add watermarks to deter unauthorized copying.
Do more with your files
Convert Microsoft Office files to PDF and easily resize photos to more convenient sharing sizes as you zip.
Share anywhere
Connect to your cloud services, and share via social media and email while keeping your files secure.
download here winzip 16 click here 
                                            and click regular download
download serial key click here

Thursday 12 September 2013

WHAT IS SQL

ORACLE is a powerful rdbms product that provides efficient and effective solutions for major database.An oracle data base system can easily take advantage of distributed processing by using its client/server architecture.
                  ORACLE IS A COMBINATION OF SQL AND PL/SQL.
FIRST KNOWN SQL:
WHAT IS SQL:
           SQL stands for structured query language.SQL is used to communicate with a database.According to ANSI(american national standards institute),it is the standard language for relational database management syatems.SQL statements are used to perform tasks such as update data on a database.or retrieve data from database.some common relational database management systems that use SQL are:oracle,sybase,microsoft sql server,access,ingres,etc.
                                               it is non procedural language which is used to communicate with any type of database.this language was developed by german scientist mr E.F CODD AT 1968 in 1970 ANSI approved this language and 1972 sql was released in the market.
FEATURES OF SQL:
  • it is a non-procedural language
  • it can also pronounced as SEQUEL
  • it is not a case sensitive language.
  • it can be called as natural language interface because almost all sql commands similar to normal english language
  • it is the common language to interact with any type of database such as oracle,db2 etc.
SUB LANGUAGES OF SQL:
          it was divided into following types.
  • data defination language(DDL)
  • data manipulation language(DML)
  • data retrieval language(DRL)
  • transaction control language(TCL)
  • data control language(DCL)
INTRO

Wednesday 31 July 2013

FOLDER LOCK 7 WITH SERIAL KEY DOWNLOAD HERE

FEATURES:

 LOCK FILES:
 Protect your data from unwanted access and visibility by blocking access to the files, folders, drives, and programs.
  •    Windows kernel level locking and filter driver makes it possible to lock files and folders in Windows  Safe Mode.
  • Folder Lock's easy to use and understand user-interface allows single-click data protection straight from the Context Menu.
  • SECURE BACKUP:
    • Upload all your private data you keep in your Lockers onto a cloud server without manually managing your backups.
    • Secure backup process is automatic and real-time, all changes or modification to your files in your 'Lockers' are synched.
    • Folder Lock is the only solution that offers this patent pending technology providing end-to-end data encryption and backup simultaneously.
    •  
      ENCRYPT FILES:
      • With Folder lock you can encrypt your personal files using 256-bit on-the-fly military grade encryption technology.
      • Create storage lockers which keep your important files encrypted, ensuring the integrity of your data's security.
      • Encrypted lockers are dynamic, smaller in size when created and grow as your data storage need increases.
      PROTECT USB/CD:
      • the Protect USB Drive feature.
      • With protect CD/DVD option; you can convert existing lockers to become portable and executable, enabling you to burn lockers onto a CD/DVD.
      • Send private and confidential email securely with encrypt email attachment feature, it allows users to send sensitive data over the internet securely.

      SHARED FILES:
      • Folder Lock's shred file feature enables you to securely delete personal data, removing all traces leading to your personal identity.
      • You can shred entire hard-drives to ensure that all data contained within that drive is securely deleted and cannot be recovered.
      • With Folder Lock's shred file feature, there's no limit to how many or what type of files you can delete.
      • and extra features also present folder lock 7. 


      download folder lock 7 software click here
      serial keys download here click

TRACE THE LOST MOBILE WITH THE IMEI NUMBER

FOLLOW THIS STEPS :
STEP 1:
             first  know your mobile imei number dial your phone *#06#. if your phone already lost then just look at the box at which your phone was packed just look at the sides of that box given there

     note:so write down the imei number some where as this will help you get back your lost mobile
STEP 2:
          next send the details of this email  cop@vsnl.net

sending details:
 NAME:
 ADDRESS:
 IMEI NUMBER:
 MODEL:
COMPANY:
 LAST USED NUMBER:
YOUR E MAIL FOR OMMUNICATION:
MISSED DATE:


             just send the details of this email cop@vsnl.net  and respond the within 24 hours your mobile is tracing and send where is your mobile present.

so another way of tracing your lost mobile and that is through this website
visit website:
                        http://www.trackimei.com

note down your imei number very useful if in future you lost your mobile number.

Tuesday 30 July 2013

INTERVIEW QUESITIONS(WRITE ANSWERS IN COMMMENT BOX)

1.WHAT IS DIFFERENCE BETWEEN VARCHAR AND VARCHAR2?
2.WHAT IS FIRST OBJECT ORIENTED PROGRAMMING LANGUAGE?