SQL Server first determines existence of a index. Then query optimizer—the component responsible for generating the optimal execution plan for that query— then it determines is scanning a table or using the index is more efficient for accessing data. SQL Server accesses data in one of two ways: By scanning all the data pages in […]
Partition Table in Sql Server In this tutorial i will let you know that how to create a partition table in sql server.Partitioning makes large tables or indexes more manageable, because partitioning enables you to manage and access subsets of data quickly and efficiently. Partitioned tables and indexes are only supported in the SQL Server […]
A partition scheme in database is that maps the partitions of a partitioned table or index to filegroups. The number and domain of the partitions of a partitioned table or index are determined in a partition function. A partition function must first be created in a CREATE PARTITION FUNCTION statement before partition scheme. Permission can […]
In this tutorial you will learn how to define custom width for asp.net gridview coloumn width. Your asp.net grid view look like this in code view without specifying any custom coloumns or their width. <asp:GridView ID=”GridView1″ runat=”server”> </asp:GridView> But after the custom coloumn and their width this look like as shown below. <asp:GridView ID=”GridView1″ runat=”server”> […]