Today when we wrote a program for online job portal. On that time i want to show the job detail from job table using single English alphabet letter. So first of all i bind Dropdownlist with the alphabet letters then also bind Grid...
Thursday, April 30, 2015
Sunday, February 1, 2015
Data Definition Language (DDL) Triggers in SQL
A DDL trigger is fired in response to DDL statements, such as CREATE TABLE or ALTER TABLE. DDL triggers can be used to perform administrative tasks, such as database auditing.
Database auditing helps in monitoring the DDL operat...
Wednesday, November 19, 2014
Data Modification Language (DML) Triggers in SQL
A DML trigger is fired when data in the underlying table is affected by DML statements, such as INSERT, UPDATE, or DELETE. These triggers help in maintaining consistent, reliable, and correct data in tables. They enable the perfo...
Sunday, November 9, 2014
Execute Batches multiple times using Stored Procedures in SQL
Batches are temporary in nature. To execute a batch more than once, you need to recreate SQL statements and submit them to the server. This leads to an increase in the overhead, as the server needs to compile and create the execu...
Implementing Triggers and its Types in SQL
In a relational database, data in a table is related to other tables. Therefore, while manipulating data in one table, you need to verify and validate its effect on data in the related tables. In addition, you might need to manip...
Wednesday, November 5, 2014
Creating Table-Valued Functions in SQL
A table-valued function returns a table as an output, which can be derived as a part of a SELECT statement. Table-valued function return the output as a table data type. The table data is a special data type used to store a set o...