Users Pricing

category

home / developersection / category
Date and Time function in SQL Server
database 31 Jan 2011
Date and Time function in SQL Server

In SQL Server, the following date and time function are used: Dateadd()It is used to add an interval to a date.Syntax:DATEADD (datepart, number, expr

Triggers in Database
database 06 Jan 2011
Triggers in Database

A database trigger is a stored procedure that is invoked automatically when a predefined event occurs. check this article ... http://www.mindst

Indexes in SQL Server
database 01 Jan 2011
Indexes in SQL Server

Indexes in SQL Server are similar to the indexes in books. They help SQL Server retrieve the data quicker. Indexes are of two types. Clustered index

Subqueries in Database
database 13 Dec 2010
Subqueries in Database

A sub-query is a query embedded in another query. The subquery can be embedded in another SELECT, INSERT, UPDATE, or DELETE statement,or inside anothe

Creating and Using Stored Procedure
database 02 Dec 2010
Creating and Using Stored Procedure

Using Stored ProceduresStored procedures are an important aspect in all database programs. VB.NET applications are no exceptions to this rule. Stored

Difference Between Function and Stored Procedure
database 24 Nov 2010
Difference Between Function and Stored Procedure

1. A function is a subprogram written to perform certain computations and return a single value.  2. Functions must return a value (using the RETURN

Aggregate functions in Database
database 16 Nov 2010
Aggregate functions in Database

Aggregate functions are applied to agroup of data values from a column. Aggregate functions always return a singlevalue.How database supports followin