T-SQL script to get list of tables which dont have clustered index August 12, 2013 SELECT name AS Table_Name_WithoutClusteredIndex FROM SYS.TABLES WHERE OBJECTPROPERTY(OBJECT_ID,‘TableHasClustIndex’) = 0 ORDER BY NAME GO
Oracle – How to Connect to Oracle Database Using SQL Developer Oracle Database is a robust, enterprise-level relational database management system used worldwide for storing, managing, and retrieving structured data. It…
SQL Server – How to get total row count of a table in a faster way 1. Background The purpose of this article is to describe an efficient way of getting the row count of the…
How to process OLAP Cube using SQL Server Agent Job 1. Background The purpose of this document is to describe a way of processing OLAP cube using SQL Server Agent…