Getting Started with Adobe After Effects - Part 6: Motion Blur

Liked



Upload Image Close it
Select File

My experiences and references in SQL server
Browse by Tags · View All
SQL Server 14
#SQLServer 14
SQL Scripts 13
#TSQL 6
TSQL 6
SQL Serevr - Issues and Resolutions 3
SQL Server - Best Practises 3
SQL server - Misconceptions 3
SQL server - Statistics 2
SQL Server - Wait stats and Queues 2

Archive · View All
October 2011 8
March 2011 7
April 2011 4
May 2011 3
November 2011 3
December 2010 3
December 2011 2
June 2008 2
February 2011 2
February 2012 1

SQLZealot's Blog

  • 0
    Liked

    Identity Saturation

    Identity saturation is one of a major check we need to have as a DBA for a big projects.The below script would detail the curretn identity and the percentage used for all table objects of a database. SELECT QUOTENAME(SCHEMA_NAME(t.schema_id)) + '.' + QUOTENAME(t.name) AS TableName, c.name AS Co......

    Latheesh NK  Posted on Mar 28 2011 10:56AM
    Profile
  • 0
    Liked

    Hide/Show Tables from Object Explorer

    Just thought of sharing an information about how to hide/show tables from your object explorer. The below query has to cut and paste in your query and “CNTRL+SHIFT+M” to input your parameters. One more thing… CNTRL+SHIFT+M work like a programming language giving us an opportunity ......

    Latheesh NK  Posted on Mar 28 2011 5:55AM
    Profile
  • 0
    Liked

    Statistics - An Important Factor

    Update statistics are important for SQL server database as the query plan generation heavily depends on the histogram of the data been passed for the very first execution. The DBA should have given with sysadmin fixed server role or ownership of the database. When do I need a ......

    Latheesh NK  Posted on Mar 25 2011 6:52AM
    Profile
  • 0
    Liked

    DBCC CHECK* would cause blocking

    DBCC CHECK* would never cause a blocking as early days. SQL Server 2005 ownwards, DBCC CHECK* works on snapshot.DBCC CHECK* will not cause any blocking on concurrency as user process is never going to affect by DBCC and vice versa.However, as long as we do DBCC operation on Sna......

    Latheesh NK  Posted on Mar 23 2011 7:18AM
    Profile
  • 0
    Liked

    Importance of Column order on a Table

    Here Let us see what is the significance of of columns on a table. Create a Test Table with 10 columns having first two column as default(for easy purpose)and the rest with null to test the table size. Create Table Table_Size ( Col1 int Default(1), Col2 Varchar(50) Default 'Test', Col3 Varc......

    Latheesh NK  Posted on Mar 11 2011 9:36AM
    Profile
  • 0
    Liked

    Memory Pressure and its resolutions

    1. How much space been occupied by single adhoc plans? The below query would give you information about how much space been used for single adhoc. This is a wastage of memeory. We can think of some useful setting at server level to have Optimize for adhoc settings. Optimize for adhoc will never s......

    Latheesh NK  Posted on Mar 10 2011 7:18AM
    Profile
  • 0
    Liked

    Finding out blocks/locks in your db(Mail Notification)

    Blocking and locking is a main area for performance tuning and to ensure a good health of production system. Here is a script to notify DBAs about the locking occurs in the production system.It uses service brokers to notify the lock information. As a first step, we need to set a threshold value fo......

    Latheesh NK  Posted on Mar 4 2011 7:24AM
    Profile
    Copyright © Rivera Informatic Private Ltd Contact us      Privacy Policy      Terms of use      Report Abuse      Advertising      [ZULU1097]