Sql Server Articles (246) - Page 15

Articles posted by registered members of DotNetFunda.com. You can also post an article and win monthly prizes as well as gain community credit points.

246 records found.
 
Abhisek
Triggers in SQL 
Last updated on: 29 Nov 2009 09:36:28 AM by Abhisek | Views: 9852 | Category: Sql Server |
This article describes you how to use triggers in SQL.
Sudhakarj21
Load Test SSRS Report 
Last updated on: 26 Nov 2009 10:02:21 PM by Sudhakarj21 | Views: 12502 | Category: Sql Server |
SQL Server Reports are one of the key components in many of the applications and when we do Load test on an application we also make sure that the SQL Server is also capable of delivering the report in time on Load Conditions during concurrent scenarios. This Article will help to create a Web Test using Visual Studio Test Edition and and run the load test with.
Mouli
Programming and Performance Tips for ADO .NET applications using Sql Server 
Last updated on: 20 Sep 2009 05:45:33 AM by Mouli | Views: 7361 | Category: Sql Server |
This articles shares the better programming standards and practices in database application programming using C# and Sql Server.
Lakhangarg
Querying and Modifying XML Data in SQL Server 2005 
Last updated on: 16 Sep 2009 11:36:19 PM by Lakhangarg | Views: 10190 | Category: Sql Server |
Querying XML instances stored in an XML column requires parsing binary XML data in the column. Parsing binary XML is much faster than parsing the text form of the XML data.
Virendradugar
SET NOCOUNT (Transact-SQL) 
Last updated on: 14 Sep 2009 03:10:03 AM by Virendradugar | Views: 17630 | Category: Sql Server |
Votes: 1 | Rating: 4 out of 5
This article explains the SET NOCOUNT keyword's importance.
Virendradugar
TOP WITH TIES clause in SELECT queries 
Last updated on: 11 Sep 2009 05:44:14 AM by Virendradugar | Views: 5508 | Category: Sql Server |
Votes: 1 | Rating: 4 out of 5
This article explains the TOP with TIES clause.
Goldytech
How to use XML Data Type in SQL Server 2005 
Last updated on: 30 Aug 2009 10:17:28 PM by Goldytech | Views: 9053 | Category: Sql Server |
Votes: 1 | Rating: 4 out of 5
This post describes how to use XML DataType and shows varrious methods to query it.
  • Syedshakeer
    How to calculate total at the BackEnd using Trigger? 
    Last updated on: 25 Aug 2009 06:14:14 PM by Syedshakeer | Views: 11853 | Category: Sql Server |
    In General we take input values what we had entered in textboxes and calculating displaying the result through front end coding.But this may not be secure to your data.so calculation have to be done at the Back end in Sqlserver using Triggers.Trigger will take input of inserted values from a table,after calculating them it insert the result at the particular result column.
    Lakhangarg
    Read Data From XML File in SQL Server 
    Last updated on: 18 Aug 2009 06:00:23 AM by Lakhangarg | Views: 18964 | Category: Sql Server |
    Read Data From XML File in SQL Server using OPENXML
    Lakhangarg
    Difference Between SCOPE_IDENTITY() and @@IDENTITY 
    Last updated on: 18 Aug 2009 05:45:47 AM by Lakhangarg | Views: 15101 | Category: Sql Server |
    Both SCOPE_IDENTITY() and @@IDENTITY will return the last identity value generated in the table.
    Pandians
    Checking Integrity Constraint - SQL Server 
    Last updated on: 15 Aug 2009 02:42:42 AM by Pandians | Views: 11858 | Category: Sql Server |
    While loading data into a table I am disabling all the integrity constraints and after once I finished loading I am enabling all of them. Now the problem is some data which is not at all valid(Referred data not exists in parent table). How can I perform the integrity check on the loaded data and remove the unwanted same ?
    Virendradugar
    Weird Thing with Inner Queries in SQL SERVER 2005 
    Last updated on: 11 Aug 2009 10:38:23 PM by Virendradugar | Views: 4835 | Category: Sql Server |
    Votes: 1 | Rating: 5 out of 5
    This article demonstrated how inner queries work in SQL Server and what problems it can create if not used in best way.
    Goldytech
    Common Table Expressions in SQL Server 
    Last updated on: 08 Aug 2009 09:53:35 PM by Goldytech | Views: 11199 | Category: Sql Server |
    In one of my recent project works, I was assigned to deliver the silverlight 2.0 solution to display Organization Chart. I was required to represent the flat or relational data into a hierarchy. Though there are number of traditional ways of achieving the same. I wanted to do something new which can increase the weightage of my decision to use Microsoft Technologies.
    Pandians
    SQL Server SUBSTRING - Explained 
    Last updated on: 23 Jul 2009 06:05:27 PM by Pandians | Views: 63350 | Category: Sql Server |
    Votes: 1 | Rating: 5 out of 5
    We have used SUBSTRING in many ways/scenarios. This article explains how it works.
    Pandians
    Data Concatenation - SQL Server 
    Last updated on: 23 Jul 2009 06:21:17 PM by Pandians | Views: 13048 | Category: Sql Server |
    Votes: 1 | Rating: 5 out of 5
    In this article, I shall show how to concatenate data from COLUMN1 by grouping against COLUMN2 without looping CURSOR.