SQL Server

SQL Server

Tips for using SQL Server 2016 cursors

Tips for using SQL Server 2016 cursors Reduce the number of rows to process in the cursor. To reduce the cursor result set use the WHERE clause in the cursor’s select statement. Do not forget to close SQL Server 2016 cursor when its result set is not needed. To close SQL Server cursor, you can use CLOSE {cursor_name} command. This […]

SQL Server

Information Modeling By means of Entity Relationship (ER) Method Part – 6

Information Modeling By means of Entity Relationship (ER) Method Part – 6 Columns or Attributes Columns or attributes are information objects which either classify or define entities. Columns or attributes which classify entities are known as important columns or attributes. Columns or attributes which define an entity are known as non important columns or attributes. Important columns or attributes will […]

SQL Server

Information Modeling By means of Entity Relationship (ER) Method Part – 5

Information Modeling By means of Entity Relationship (ER) Method Part – 5 Phases in Constructing the Information Model Though Entity Relationship (ER) diagram lists as well as describes the concepts which are mandatory for building an information model, but still there is no regular manner for completing so. A number of practices insist on a bottom up progress method where […]

SQL Server

SQL Server 2016 Reporting Services Optimization Tips

SQL Server 2016 Reporting Services Optimization Tips Use Reporting Services web portal. The Reporting Services web portal introduces in SQL Server 2016 and replaces Report Manager from previous releases. This is a modern portal which incorporates KPIs (Key performance indicators), Mobile Reports, Paginated Reports, Excel and Power BI Desktop files. Consider using the Chart data region. SQL Server 2016 supports […]

SQL Server

Information Modeling By means of Entity Relationship (ER) Method Part – 4

Information Modeling By means of Entity Relationship (ER) Method Part – 4 Database Design with Information Modeling The information modeling is one portion of the abstract design procedure. The other portion is known as the function modeling. The information modeling emphases on what information must be kept in the database on other hand the function modeling focus on by what […]

SQL Server

Guidelines for Scaling your Reporting solution

Guidelines for Scaling your Reporting solution Author: Basit A. Farooq You will not always find it practical to conduct your own performance tests on a new configuration before you deploy it. When this happens, you should use monitoring to establish baseline performance measures on your existing system. You should then repeat the monitoring with the new configuration to assess the […]

SQL Server

Tips for using constraints in SQL Server 2016

Tips for using constraints in SQL Server 2016 Try to create a single column constraint. The more columns the constraint will have, the slowly it will work and the more stored space it will require. Use default constraints instead of DEFAULT objects. DEFAULT object are provided for backward compatibility and has been replaced by default definitions (default constraints) created using […]