By host on
8/31/2010 9:57 AM
SET operators are mainly used to combine the same type of data from two or more tables. Although more than one select statement will then be present, only one result set is returned.
Read More »
|
By host on
8/17/2010 11:31 PM
“Undocumented Extended Stored Procedures” is a dynamic link library that runs directly in the address space of SQL Server. We can create our own extended stored procedures using the C Language. Query Analyzer will help you to run the Extended Stored Procedures. Here we are going to explain some useful extended undocumented stored procedures.
Read More »
|
By host on
8/9/2010 11:47 PM
Visual Studio .NET 2005, ASP.NET 2.0, shipped with a lesser-known functionality called a “Partial Class”. A Partial class is a class defined in 2 or more files. Each source file contains a section of the class which will combine when the application is compiled.
Read More »
|
By host on
8/4/2010 3:23 AM
This is Part 4 of Tsql Features in Sql 2008. In this article we discussed about Table value parameters, Large user defined Types, Constructor support, The hieararcy id data type, DDL trigger enhancements and User defined Aggregate functions.
Read More »
|
By host on
8/2/2010 4:31 AM
Microsoft provides a standard mechanism for accessing the database engine using SOAP via HTTP in SQL server 2005. Web services are Application Programming Interfaces, or web APIs, that will be accessed via the Hypertext Transfer Protocol and can be executed on a remote system. In order to run the following example, you have to install IIS.
Read More »
|
By host on
7/29/2010 5:16 AM
State management is the process of maintaining state and web page information over multiple page requests.
Read More »
|
By host on
7/26/2010 3:57 AM
A constraint is a rule or condition defined on a table or table column(s) to prevent wrong data from being entered into the database. DML operations like INSERT, UPDATE or DELETE that violate the constraints are not allowed to modify the data and thus the constraints maintain the database integrity (i.e. the accuracy and reliability of the data in the database).
Read More »
|
By host on
7/22/2010 12:45 AM
The term “Garbage collection” can be defined as management of the allocation and release of memory in an application. Garbage collection is the mechanism to manage the memory by clearing up the memory allocated for unused objects in the application.
Read More »
|
By host on
7/16/2010 11:39 PM
Nullable types are the instance of the System.Nullable struct. A Nullable type can represent the normal range of values and a null value.
Read More »
|
By host on
7/12/2010 2:48 AM
Normally a view is just a SQL query which has only its definition but no data on its own until the view is executed. However, SQL Server allows us to create indexes on a view to significantly improve the performance of data retrieval operations.
Read More »
|
By host on
7/2/2010 2:42 AM
SQL Server provides many built-in functions that operate on a set of input values and result in a single output value. In this article, we are going to look at commonly used aggregate functions.
Read More »
|
By host on
6/29/2010 3:17 AM
SQL Trace provides a set of stored procedures to create traces on an instance of the SQL Server Database Engine. Through SQL Trace We can monitor events on SQL server without using SQL Profiler. Using SQL Trace we can find out who is using the database server, from which workstation or server, and which application is using it.
Read More »
|
By host on
6/22/2010 9:25 PM
Visual Basic .NET Collections are the data structures which hold the data in different ways for the operations. The important data structures in the collections are
- ArrayList
- HashTable
- Stack
- Queue
- Arrays
- Dynamic Arrays
Read More »
|
By host on
6/15/2010 10:15 PM
Microsoft introduced ranking functions in Sql Server 2005, which allows the sequential numbering of the result set. These functions are used in the SELECT query and are made to result in another new column. It displays the rank, an integer value for each row of the result set. There are four new ranking functions that have been added to SQL Server 2005.
Read More »
|
By host on
6/14/2010 9:23 AM
SQL Server provides built-in functions to handle strings. Each function performs an operation on a string and returns a string or numeric value.
Read More »
|