Scrutiny By Khimaanshu

  • Subscribe to our RSS feed.
  • Twitter
  • StumbleUpon
  • Reddit
  • Facebook
  • Digg

Wednesday, 11 June 2014

All about Triggers in Sql Server & Oracle

Posted on 03:00 by Unknown
Join us on Facebook 
What is a Trigger in SQL Server?
A Trigger is a database object that is attached to a table. In many aspects Trigger's are quite similar to a Stored Procedure. That's why, triggers are sometimes referred to as a 'special kind of stored procedure'. The main difference between a trigger and a stored procedure is that the former is attached to a table and is only fired when an INSERT, UPDATE or DELETE occurs or you can say a trigger is called automatically when a data modification event is made against a table whereas a stored procedure must be called explicitly.

Features Of Trigger:-
1. A batch of SQL code for an insert, update or delete command is executed.
2. Business rules can be enforced on modification of data.

Advantages of using SQL triggers:-
1. SQL triggers provide an alternative way to check the integrity of data.
2. SQL triggers can catch errors in business logic in the database layer.
3. SQL triggers provide an alternative way to run scheduled tasks. By using SQL triggers, you don’t have to wait to run the scheduled tasks because the triggers are invoked automatically before or after a change is made to the data in tables.
4. SQL triggers are very useful to audit the changes of data in tables.

Disadvantages of using SQL triggers:-
1. Does not accept arguments or parameters.
2. Cannot perform commit or rollback.
3. Can cause table errors if poorly written.
4. SQL triggers only can provide an extended validation and they cannot replace all the validations. Some simple validations have to be done in the application layer. For example, you can validate user’s inputs in the client side by using JavaScript or in the server side using server side scripting languages such as JSP, PHP, ASP.NET, Perl, etc.
5. SQL triggers are invoked and executed invisibly from client-applications therefore it is difficult to figure out what happen in the database layer.
6. SQL triggers may increase the overhead of the database server.

Types of Triggers:-
In Sql Server we can create four types of triggers:- and Logon triggers.
1). Data Definition Language (DDL) triggers: In SQL Server we can create triggers on DDL statements like CREATE, ALTER, and DROP and certain system defined stored procedures that perform DDL-like operations.

e.g. If you are going to execute the CREATE LOGIN statement or the sp_addlogin stored procedure to create login user, then both these can execute/fire a DDL trigger that you can create on CREATE_LOGIN event of Sql Server.

We can use only FOR/AFTER clause in DDL triggers not INSTEAD OF clause means we can make only After Trigger on DDL statements.

DDL trigger can be used to observe and control actions performed on the server, and to audit these operations. DDL triggers can be used to manage administrator tasks such as auditing and regulating database operations.

2). Data Manipulation Language (DML) triggers: In SQL Server we can create triggers on DML statements like INSERT, UPDATE, and DELETE and stored procedures that perform DML-like operations. DML Triggers are of two types:
2.1). After Trigger (using FOR/AFTER CLAUSE): This trigger fires after SQL Server finish the execution of the action successfully that fired it.

e.g: If you insert record/row in a table then the trigger related/associated with the insert event on this table will fire only after the row passes all the constraints, like as primary key constraint, and some rules. If the record/row insertion fails, SQL Server will not fire the After Trigger.

2.2). Instead of Trigger (using INSTEAD OF CLAUSE) : This type of trigger is fired before SQL Server starts the execution of the action that fired it. This is differ from the AFTER trigger, which fires after the action that caused it to fire. We can have an INSTEAD OF insert/update/delete trigger on a table that successfully executed but does not include the actual insert/update/delete to the table.

e.g: If you insert record/row in a table then the trigger related/associated with the insert event on this table will fire before the row passes all the constraints, such as primary key constraint and some rules. If the record/row insertion fails, SQL Server will fire the Instead of Trigger.

3). CLR Triggers: These are special type of triggers that based on the Common Language Runtime(CLR) in .net framework. CLR integration of triggers has been introduced with SQL Server 2008 and allows for triggers to be coded in one of .NET languages like C#, Visual Basic and F#.

4). Logon Triggers: These are special type of trigger that fire when LOGON event of Sql Server is raised. This event is raised when a user session is being established with Sql Server that is made after the authentication phase finishes, but before the user session is actually established. Hence, all messages that we define in the trigger such as error messages, will be redirected to the SQL Server error log. Logon triggers do not fire if authentication fails. We can use these triggers to audit and control server sessions, such as to track login activity or limit the number of sessions for a specific login.

Different modes of firing triggers?
After Trigger: An AFTER trigger fires after SQL Server completes all actions successfully

Instead of Triggers: An INSTEAD OF trigger causes SQL Server to execute the code in the trigger instead of the operation that caused the trigger to fire.

Differences between triggers and non-trigger stored procedures are (amongst others):
1). A non-trigger stored procedure is like a program that has to be invoked explicitly either from code or from a scheduler or from a batch job, etc. to do its work, whereas a trigger is a special type of stored procedure that fires as a response of an event rather than be directly executed by the user. The event may be a change of data in a data column for example.
2). Triggers have types e.g DDL Triggers and DML Triggers (of types: INSTEAD OF, For, and AFTER)
3). Non-Trigger Stored procedures can reference any type of object, however, to reference a view, you must use INSTEAD OF triggers.
4). In SQLServer, you can have any number on non-trigger stored procedures but only 1 INSTEAD OF trigger per table.
5). We can call a stored procedure from front end (.asp files, .aspx files, .ascx files etc.) but we can't call a trigger from these files.
6). Stored procedure can take the input parameters, but we can't pass the parameters as an input to a trigger.

Note:
* DML trigger can be composed by any T-SQL statements, except CREATE DATABASE, ALTER DATABASE, DROP DATABASE, LOAD DATABASE, LOAD LOG, RECONFIGURE, RESTORE DATABASE, and RESTORE LOG statements.
* You cannot create triggers against system tables or dynamic management views.
* Also, the TRUNCATE TABLE statement does not fire a trigger because this operation does not log individual row deletions.
* If you use the DATABASE option, the scope of your DDL trigger will be the current database. If you use the ALL SERVER option, the scope of your DDL triggers to the current server.

PL/SQL Syntax to write a trigger:

CREATE [OR REPLACE ] TRIGGER trigger_name
{BEFORE | AFTER | INSTEAD OF }
{INSERT [OR] | UPDATE [OR] | DELETE}
[OF col_name]
ON table_name
[REFERENCING OLD AS o NEW AS n]
[FOR EACH ROW]
WHEN (trigger_condition)
DECLARE
Declaration-statements
BEGIN
trigger_body
EXCEPTION
Exception-handling-statements
END;

# CREATE [OR REPLACE] TRIGGER trigger_name: Creates or replaces an existing trigger with the trigger_name.
# BEFORE specifies the trigger fires before the triggering event is performed.
# AFTER specifies the trigger fires after the triggering event is performed.
# INSTEAD OF specifies the trigger fires instead of performing the triggering event.The INSTEAD OF clause is used for creating trigger on a view.
# {INSERT [OR] | UPDATE [OR] | DELETE}: This specifies the DML operation.
# [OF col_name]: This specifies the column name that would be updated.
# ON table_name: This specifies the name of the table associated with the trigger.
# REFERENCING OLD AS o NEW AS n: This allows you to refer new and old values for various DML statements, like INSERT, UPDATE, and DELETE.
# FOR EACH ROW: This specifies a row level trigger, i.e., the trigger would be executed for each row being affected. Otherwise the trigger will execute just once when the SQL statement is executed, which is called a table level trigger.
# WHEN (trigger_condition): This provides a condition for rows for which the trigger would fire. This clause is valid only for row level triggers.
# trigger_body contains the SQL and PL/SQL statements that perform the trigger's task.

NOTE:
There are two types of triggers based on the which level it is triggered.
1) Row level trigger: An event is triggered for each row upated, inserted or deleted.
2) Statement level trigger: An event is triggered for each sql statement executed.
e.g Create a trigger to send an email to the Sales Manager when an order is entered whose priority is HIGH.

CREATE TABLE Orders
(Order_ID int IDENTITY,
Order_Priority varchar(10))

CREATE TRIGGER TR_Orders_INSERT
ON Orders
FOR INSERT
AS
IF (SELECT COUNT(*) FROM inserted WHERE Order_Priority = 'High') = 1
BEGIN
PRINT 'Send an email'
END

How to know information about triggers present?
USER_TRIGGERS is the data dictionary view, which can be used to obtain information about any trigger.
DESC USER_TRIGGERS;

----------------------------------------------
NAME Type
----------------------------------------------
TRIGGER_NAME VARCHAR2(30)
TRIGGER_TYPE VARCHAR2(16)
TRIGGER_EVENT VARCHAR2(75)
TABLE_OWNER VARCHAR2(30)
BASE_OBJECT_TYPE VARCHAR2(16)
TABLE_NAME VARCHAR2(30)
COLUMN_NAME VARCHAR2(4000)
REFERENCING_NAMES VARCHAR2(128)
WHEN_CLAUSE VARCHAR2(4000)
STATUS VARCHAR2(8)
DESCRIPTION VARCHAR2(4000)
ACTION_TYPE VARCHAR2(11)
TRIGGER_BODY LONG
----------------------------------------------

How to drop a trigger
DROP TRIGGER Trigger_name

How to disable a trigger
DISABLE TRIGGER {schema name} trigger name ON {object, database or ALL server}

-K Himaanshu Shukla...



Copyright © 2014 - ScrutinyByKHimaanshu

Email ThisBlogThis!Share to XShare to Facebook
Posted in Oracle, SQL, Technical, Triggers | No comments
Newer Post Older Post Home

0 comments:

Post a Comment

Subscribe to: Post Comments (Atom)

Popular Posts

  • Bigg Boss 8 got an extension of 4 weeks? Ex-contestants to enter as a wild card?
    Join us on Facebook   T his season of Colors' much talked reality show Bigg Boss which has bunch of wannabe's crossing the lines of ...
  • Lyrics & translation of Surya Mantra 'Tat Savitur Vrnimahe Vayam'..
    Join us on Facebook   N umber of beautiful hymns are present in our Veda's to praise the Sun (Surya devta). Today I heard one of the hym...
  • TAM RATINGS: TVM(TRP) & GVT(GRP) Ratings 2014- Week 20
    Join us on Facebook   Gross TVM's (Channel Wise) STAR PLUS Iss Pyaar Ko Kya Naam Doon 3.3 (3.2 ) Ek Ghar Banauga 2.9 (2.7) Saath Nibhana...
  • Serbian model Natasa Stankovic in Bigg Boss 8!!..
    Join us on Facebook   R emember hot and raunchy Natasa Stankovic? She shaked a leg along with Ajay Devgn on 'Aiyo ji hamri atariya mein...
  • Laut Aao Trisha to go off-air?
    Join us on Facebook   2 4 Frames' show 'Laut Aao Trisha' on Life OK, which marked small screen debut of Bhagyashree, is all set ...
  • #BiggBoss8 Day 8 Synopsis:The Great Divide
    Join us on Facebook   A s week 1 ended in Bigg Boss, a lot of stories unfolded. The happy family is taken by surprise as two new members of ...
  • Inner and Outer Joins!..
    Join us on Facebook   J OINS are basically used to combine the data from two tables. The temporary table is created based on column(s) that...
  • Padmini Kolhapure to play the other woman in Ekk Nayi Pehchaan!
    V eteran bollywood actress Padmini Kolhapure is roped to play pivotal role in Kinnari and Jay Mehta's Ekk Nayi Pehchaan on Sony Entertai...
  • Sunil Grover to return as Gutthi in Comedy Nights?
    Join us on Facebook   S unil Grover, who is well known as Gutthi is all set to return to Comedy Nights With Kapil. ..yes you read is right.....
  • Aditya Raj Kapoor to enter Ashutosh Gowariker's Everest as an NRI..
    Join us on Facebook   A ce director Ashutosh Gowariker's show Everest on Star Plus, which is a story about a girl's struggle to win ...

Categories

  • #HotGrapes
  • 24
  • Aaja Nachle
  • Aakanksha Singh
  • Aakansha Singh
  • Aamir Khan
  • Aamir Khan Nude
  • Aaradhna Uppal
  • Aashish Chaudhary
  • Aashka Goradia
  • Aasiya Kazi
  • Aastha Chaudhary
  • Abhishek Bachchan
  • Abhishek Rawat
  • ACP Pradyuman
  • Adah Sharma
  • Aditya Raj Kapoor
  • Agent Vinod
  • Airlines
  • Aishwarya Rai
  • Ajay Devgn
  • Ajaz Khan
  • Ajit Chandila
  • Akshay Kumar
  • Ali Asgar
  • Ali Quli Mirza
  • Alia Bhatt
  • Alisah Abdullah
  • Alok Nath
  • Alok Nath Upen Patel
  • Alzheimer
  • Amita Ka Amit
  • Amitabh Bachchan
  • Amrita Rao
  • Amrita Sher-Gil
  • Anas Rashid
  • Angels
  • Anil Kapoor
  • Anita Raj
  • Ankeet Chavan
  • Ankita Bhargava
  • Anshuman Jha
  • Anuj Sachdeva
  • Anup Soni
  • Anupam Kher
  • Anurag Kashyap
  • Anushka Sharma
  • Aparna Dixit
  • Apoorva Lakhia
  • Application Server
  • Archana Taide
  • Archangel Chamuel
  • Archangel Chamuel Prayer
  • Archangels
  • Arjun Kapoor
  • Armaan Kohli
  • Arya Babbar
  • Asha Negi
  • Ashish Sharma
  • Ashutosh Gowariker
  • Aur Pyaar Ho Gaya
  • Baaghi
  • Baal Veer
  • Baawre
  • Bade Acche Lagte Hain
  • Balaji Telefilms
  • Balika Vadhu
  • Bandit Queen
  • Bang Bang
  • Bani Ishq Da Kalma
  • Barun Sobti
  • Begum Nawazish Ali
  • Beintehaa
  • Bhagyashree
  • Bhanu Athaiya
  • Bharat Ka Veer Putra – Maharana Pratap
  • Bidaai
  • Bigg Boss
  • Bigg Boss 5
  • Bigg Boss 6
  • Bigg Boss 7
  • Bigg Boss 8
  • Bipasha Basu
  • Birthday
  • Blind Item
  • Bluffmaster
  • Bobby Darling
  • Bombay Velvet
  • Cartoon Network
  • Chak De India
  • Chakravartin Ashoka Samrat
  • Chandni Bhagwanani
  • Channel V
  • Chef Vikas Khanna
  • Chetan Hansraj
  • Chhanchhan
  • Chidiya Ghar
  • Children Of War
  • Chitrangada Singh
  • CID
  • Colors
  • Comedy Nights with Kapil
  • Connected Hum Tum
  • Daindra Soares
  • Damsharads
  • Dancing with the Stars
  • Daniel Weber
  • Dare To Dance
  • Darsheel Safary
  • Database
  • Dawood Ibrahim
  • Dayanand Shetty
  • Dayavan
  • DD
  • DDLJ
  • Debina Bonnerjee
  • Deepika Padukone
  • Deepika Singh
  • Deepshikha Nagpal
  • Delhi
  • Delhi Belly
  • Devoleena Bhattacharjee
  • Devon Ke Dev Mahadev
  • Dhoom
  • Diandra Soares
  • Digangana Suryavanshi
  • Dilwale Dulhania Le Jaayege
  • Dilwale Dulhania Le Jayenge
  • Dimple Kapadia
  • Dimpy Mahajan
  • Disney Channel
  • Divyanka Tripathi
  • Diya Aur Baati Hum
  • Diya Aur Baati Hum Written Episode Update
  • DJ's Production
  • Do Dil Bandhey Ek Dori Se
  • Doli Armaanon Ki
  • Dolly Bindra
  • Donde esta Elisa
  • Doordarshan
  • Drashti Dhami
  • Ek Haseena Thi
  • Ek Hazaaron Mein Meri Behena Hai
  • Ek Nanad Ki Khushiyon Ki Chaabi… Meri Bhabhi
  • Ek Nayi Pehchaan
  • Ekta Kapoor
  • Ela Bhatt
  • Emperor Ashoka
  • Emraan Hashmi
  • Endemol
  • Esha Gupta
  • Everest
  • Fahad Ali
  • Fanna
  • Farnaz Shetty
  • Fashion
  • Fear Factor Khatron Ke Khiladi
  • Finding Hanny
  • First Look
  • First Look of haider
  • Gangster
  • Gaurav Chopra
  • Gautam Gulati
  • Gautam Rode
  • Gay
  • Gay Couple
  • Geet Hui Sabse Parayi
  • Giaa Manek
  • Girvi
  • Gita Gopinath
  • Gold Awards
  • Got Talent World Stage Live
  • Govinda
  • Grand Masti
  • Gratitude
  • Guardian Angels
  • Gurmeet Choudhary
  • Gustak Dil
  • Gutthi
  • GVM
  • GVT
  • Haider
  • Happy New Year
  • Harshith Arora
  • Haseena
  • Haseena Parkar
  • Hate Story 2
  • Heropanti
  • Homi Adajania
  • Hot Grapes
  • Hotel
  • Hrithik Roshan
  • Humaima Malick
  • Humpty Sharma Ki Dulhaniyaa
  • Humshakals
  • Hungama
  • Hussain Kuwajerwala
  • Ibrahim Ismail Parkar
  • Imam Siddique
  • Inder Kumar
  • Inder Kumar Sarraf
  • India
  • India's Got Talent
  • Inner Join
  • Instagram
  • Interview Questions
  • IPL
  • Iqbal Khan
  • Irom Sharmila Chanu
  • Iron Lady
  • Iron Lady of Manipur
  • Ishita Ganguly
  • ITA Awards
  • Itna Na Karo Mujhe Pyaar
  • Itna Naa Karo Mujhe Pyaar
  • Jackie Shroff
  • Jacqueline Fernandes
  • Jamai Raja
  • Java
  • Java Interview Questions
  • Jay Bhanushali
  • Jeannie Aur Juju
  • Jennifer Winget
  • Jhalak Dikhhla Jaa
  • Jhalli Anjali
  • Jhalli Anjali Ke Tootey Dil Ki Amazing Story
  • Jhalli Anjali Written Episode Update
  • Jodha Akbar
  • Jodha Akbar Written Episode
  • Jyoti
  • Kainaat Arora
  • Kajol
  • Kanan Malhotra
  • Kanchi Singh
  • Kanpur
  • Kapil Nirmal
  • Kapil Sharma
  • Karan Johar
  • Karan Patel
  • Karan Sharma
  • Karan Singh Grover
  • Karanvir Bohra
  • Kareena Kapoor
  • Karishma Tanna
  • Katrina Kaif
  • Kaun Banega Crorepati
  • KBC
  • Khiladiyon Ka Khiladi
  • Kick
  • Kiku Sharda
  • Kinshuk Mahajan
  • Kiran Majumdar Shaw
  • KJO
  • kkusum
  • Koffee With Karan
  • Kriti Sanon
  • Kritika Kamra
  • Krystle D'Souza
  • KSG
  • Kuku Mathur Ki Jhand Ho Gayi
  • Kulbhushan Kharbanda
  • Kumkum Bhagya
  • Kunal Kohli
  • Kunwar Amarjeet Singh
  • Kushal Punjabi
  • Lata Mangeshkar
  • Laut Aao Trisha
  • Laxmi Narayan Tripathi
  • Life OK
  • Lost and Found
  • Love Sex Aur Dhokha
  • Loveleen Kaur Sasan
  • Luck By Chance
  • Maa Tujhe Salmaan
  • Mad In India
  • Madhubala... Ek Ishq Ek Junoon
  • Madhuri Dixit
  • Mahabharat
  • Mahakumbh
  • Maharakshak Aryan
  • Mahesh Bhatt
  • Main Lakshmi Tere Aangan Ki
  • Maine Gandhi Ko Nahin Mara
  • Maksim Chmerkovskiy
  • Maleeka R Ghai
  • Mandar Jadhav
  • Mandira Bedi
  • Manipur
  • Manish Paul
  • Mary Kom
  • Maryam Zakaria
  • Masoom
  • MasterChef
  • Meri Aashiqui Tumhi Se Hai
  • Meri Aashiqui Tumse Hi
  • Meri Bhabhi
  • Minissha Lamba
  • Mishal Raheja
  • Mishkat Verma
  • Miss Universe
  • Mohit Sehgal
  • Mouni Roy
  • Mrunal Jain
  • MTV
  • Mugdha Chapekar
  • Muh Boli Shadi
  • MySql
  • Na Aana Iss Desh Laado
  • Na Bole Tum Na Maine Kuch Kaha
  • Na Bole Tum Na Maine Kuuch Kaha
  • Nach Baliye
  • Naina Lal Kidwai
  • Namish Taneja
  • Nandish Sandhu
  • Naseeruddin Shah
  • Natasa Stankovic
  • Nausheen Ali Sardar
  • Navjot Singh Sidhu
  • Nawazuddin Siddiqui
  • Neelesh Misra
  • Neha Bagga
  • Neha Pednekar
  • Neil Bhoopalam
  • Neil Bhoopalam Bollywood
  • NH 10
  • Nia Sharma
  • Nick
  • Nigaar Khan
  • Nikhattu
  • Nirbhaak
  • Nisha Ke Cousins
  • Nisha Ke Cousins Written Episode Update
  • Nitin Vakaria
  • No Problem
  • Normalization
  • Olympian Meryl Davis
  • Oracle
  • Outer Join
  • Padmini Kolhapure
  • Painter
  • Pallavi Kulkarni
  • Pallavi Subhash
  • Panchi Bora
  • Pankaj Kapoor
  • Parag Tyagi
  • Parakh Madan
  • Pardes
  • Parichay Sharma
  • Paridhi Sharma
  • Parvati
  • Pavitra Rishta
  • Phir Se
  • PK
  • PK Poster
  • Pogo
  • Pooja Bhatt
  • Pooja Bose
  • Poonam Dhillon
  • Pragati Chourasiya
  • Prakash Jha
  • Praneet Bhatt
  • Preetika Rao
  • Priyanka Chopra
  • Pukaar- Call for the Hero
  • Puneet Isaar
  • Purab Kohli
  • Pyaar Ka Dard Hai
  • Pyaar Ka Dard Hai Meetha Meetha Pyaara Pyaara
  • Pyaar Tune Kya Kiya
  • Qubool Hai
  • Radhika Madan
  • Rafi Malik
  • Ragini MMS 2
  • Rahul Khanna
  • Rahul Mahajan
  • Raj Babbar
  • Raj Nayak
  • Raja Chaudhary
  • Raja Natwarlal
  • Rajan Shahi
  • Rajat Tokas
  • Ram Kapoor
  • Ranbir Kapoor
  • Randeep Hooda
  • Rangrasiya
  • Rannvijay Singh
  • Ranveer Shorey
  • Ranvir Shorey
  • Rape
  • RaQesh Vashisht
  • Rashami Desai
  • Rashmi Sharma
  • Ravi Dubey
  • Ravish Desai
  • Reliance
  • Remo D'Souza
  • Renne Dhyani
  • Richa Anirudh
  • Rishab Sinha
  • Rishtey
  • Riteish Deshmukh
  • Rithvik Dhanjani
  • RJ Malishka
  • RJ Preetam PYaare
  • Rohit Gandhi
  • Rohit Verma
  • Ronit Roy
  • Roopa Ganguly
  • Roopal Tyagi
  • Rucha Hasabnis
  • Ruslaan Mumtaz
  • S. Sreesanth
  • Saath Nibhana Saathiya
  • Sab TV
  • Sahil Anand
  • Saif Ali Khan
  • Sajid Khan
  • Sajid Nadiadwala
  • Sakshi Tanwar
  • Salman Khan
  • Samarth Shandilya
  • Sameer Soni
  • Sanam JOhar
  • Sanaya Irani
  • Sanjay Leela Bhansali
  • Sapne Suhane Ladakpan Ke
  • Saraswatichandra
  • Sarita Joshi
  • Satrangi Sasural
  • Satyagrah
  • Saubhagyavati Bhava
  • Saurabh Raj Jain
  • Saurabh Tiwari
  • Savdhaan India
  • Sayantani Ghosh
  • Secret Society
  • Seema Biswas
  • Shaandar
  • Shabana Azmi
  • Shabbir Khan
  • Shagufta Ali
  • Shah Rukh Khan
  • Shaheer Sheikh
  • Shahid Kapoor
  • Shahis Kapoor Shraddha Kapoor Kiss
  • Shahrukh Khan
  • Shakti Arora
  • Shakuntalam Telefilms
  • Shammi Kapoor
  • Shanti Dynamite
  • Shashi Sumeet Mittal
  • Shastri Sisters
  • Shastri Sisters Written Episode Update
  • Shefali Sharma
  • Shilpa Shirodkar
  • Shivaji Satam
  • Shivani Tomar
  • Shivin Narang
  • Shootout at Lokhandwala
  • Shot In The Dark
  • Shraddha Kapoor
  • Shruti Kanwar
  • Shubhangi Latkar
  • Shveta Salve
  • Shweta Salve
  • Shweta Tiwari
  • Siddharth Arora
  • Siddharth Kumar Tewary
  • Siddharth Shukla
  • Sidharth Shukla
  • Smita Bansal
  • Sneha Wagh
  • So you Think You Can Dance
  • Sonakshi Sinha
  • Sonal Vengurlekar
  • Sonali Raut
  • Sonam Kapoor
  • Soni Singh
  • Sony Pal
  • Sony TV
  • Sooraj Thapar
  • Sophie Choudry
  • South Africa
  • Sphereorigins
  • Splitsvilla
  • SQL
  • SQL Query
  • Sridevi
  • Star Parivaar Awards
  • Star Parivaar Awards 2014
  • Star Plus
  • Stored Procedure
  • Story
  • Struts
  • Sudhir Sharma
  • Sukriti Kandpal
  • Sumona Chakravarty
  • Sun Lust Pictures
  • Sunil Grover
  • Sunny Leone
  • Surbhi Jyoti
  • Surveen Chawla
  • Sushant Divakar
  • Sushant Divgikar
  • Sushmita Sen
  • Suyyash Rai
  • Swastik Productions
  • TAM ratings
  • Tammannah
  • Tanishaa Mukerji
  • Tanya Abrol
  • Tara Jean Popowich
  • Technical
  • Telly Diva
  • The Anupam Kher Show - Kucch Bhi Ho Sakta Hai
  • The Bold and the Beautiful
  • Tiger Shroff
  • Tina Dutta
  • Tisca Chopra
  • Toral Rasputra
  • Triggers
  • TRP
  • TRP of Indian Serials
  • TRP Ratings
  • Tum Aise Hi Rehna
  • Tumhare Sheher Mein
  • Tumhari Paakhi
  • TVM
  • TVT
  • Twitter
  • Udaan
  • Udann
  • Udann Written Episode Update
  • Ungli
  • Upasana Singh
  • Upen Patel
  • Urvashi Dholakia
  • Uttaran
  • Varun Dhawan
  • Vatsal Seth
  • Veera
  • Vibhav Roy
  • Vidya Balan
  • Vikas Bahl
  • Vikas Khanna
  • Vikram Bhatt
  • Vinita Joshi Thakkar
  • Vinod Khanna
  • Vipul Amrutlal Shah
  • Vishal Karwal
  • Vishal Pandya
  • Vishal Vashisht
  • Vishwapreet Kaur
  • Viveik Mishra
  • Vivek Mishra
  • Vivian D'Sena
  • Vivian Dsena
  • VJ Andy
  • Wanted
  • Web Server
  • Wicket
  • Will Smith
  • Written Episode
  • Yahaan
  • Yash Patnaik
  • Yash Puri
  • Ye Dil Sun Raha Hai
  • Yeh Hai Aashiqui
  • Yeh Hai Mohabbatein
  • Yeh Hai Mohabbatein Written Episode Update
  • Yeh Jawaani Hai Deewani
  • Yeh Rishta Kya Kehlata Hai
  • Yo Yo Honey Singh
  • Zaan Khan
  • Zalak Desai
  • Zee TV
  • Zing

Blog Archive

  • ▼  2014 (500)
    • ►  December (32)
    • ►  November (77)
    • ►  October (83)
    • ►  September (67)
    • ►  August (125)
    • ►  July (50)
    • ▼  June (51)
      • Anuj Sachdeva in Rajan Shahi's next on Sony Pal?
      • Sushmita Sen likely to pair opposite Manish Paul
      • 'Jhalli Anjali' Chandni Bhagwanani undergoes a mak...
      • Kainaat Arora to enter Jhalak!!..
      • Mahabharat gets a further extension!!..
      • Difference between static and dynamic inclusion in...
      • TAM RATINGS: TVM(TRP) & GVT(GRP) Ratings 2014- Wee...
      • TAM Ratings Week 25 highlights
      • Sanskari babuji Alok Nath joins Twitter..
      • Gay couple in Bigg Boss 8?
      • Bollywood celebrates Arjun Kapoor’s entry on Twitter
      • What is different between Web Server and Applicati...
      • Karan Johar to play father in Vikas Bahl's upcomin...
      • I am not doing Bigg Boss: Alok Nath
      • When Jennifer Winget forgot to wear jewellery!!
      • Star Parivaar Awards 2014 winners list!..
      • RJ Malishka Mendonca to enter Jhalak as wild card ...
      • Debina Bonnerjee to enter Jhalak as wild card?
      • After Andy, Purab Kohli evicted from Jhalak
      • Aakanksha Singh in DJ's Production's next on Sony ...
      • Manish Paul in..Drashti Dhami’s Jhalak journey com...
      • TAM RATINGS: TVM(TRP) & GVT(GRP) Ratings 2014- Wee...
      • Amrita Rao to debut on television with Shashi Sume...
      • TAM Ratings Week 24: Colors bounces back to No. 3
      • Randeep Hooda to play Dawood's brother-in-law in ...
      • I'm extremely disturbed with the end result of Hum...
      • Databse Joins example!
      • What is database normalization?
      • First Look of Leela: Raunchy Sunny Leone as the ro...
      • TAM RATINGS: TVM(TRP) & GVT(GRP) Ratings 2014- Wee...
      • Life OK continues to be No. 3 in Week 23
      • Rithvik Dhanjani, Kunwar Amarjeet Singh & Sayantan...
      • Tiger Shroff and Shraddha Kapoor in Shabbir Khan's...
      • All about Mysql Stored Procedure..
      • All about Triggers in Sql Server & Oracle
      • Difference Between Struts 1.x And Struts 2.x
      • Rape accused actor Inder Kumar Saraf gets bail
      • Sajid Nadiadwala unveiled the first look of Salman...
      • Tiger Shorff in CID..
      • Please don't have a lot of expectations from me as...
      • TAM RATINGS: TVM(TRP) & GVT(GRP) Ratings 2014- Wee...
      • Soon you are going to see me in an Indian avatar: ...
      • Life OK beats Colors on TAM chart
      • Shaleen Malhotra & Diksha Rampal Marriage Pictures!..
      • Jay Bhanushali & Surveen Chawla's love-making scen...
      • Alia Bhatt had a peek-a-boo moment with her inner ...
      • Angelina Jolie's birthday wish is for her children...
      • I am open to do daily soaps: Madhuri Dixit
      • Whoever had written that I am dating Sidharth shou...
      • Rural Development Minister Gopinath Munde dies in ...
      • ‘Jhalak Dikhhla Jaa’ is back with 'alag' season..
    • ►  May (15)
Powered by Blogger.

About Me

Unknown
View my complete profile