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

  • 3
    Liked

    To find out the size occupied by indexes in a table

    The below procedure will return the size occupied by the indexes in a table. This will be helpful to measure the size before and after the maintenance activities. Create Proc SQLZealot_FindIndexSize( @OBJECT_NAME VARCHAR(255) ) As Begin DECLARE @temp TABLE ( indexID BIGINT, ......

    Latheesh NK  Posted on Oct 18 2011 1:40AM
    Profile
  • 0
    Liked
    2
    Comments

    Presence of a procedure in multiple databases in the same server

    I have come across many times in a situation that I need to check the existence of a procedure in multiple databases in a given server. Hope, this would help you guys too... Create Proc SQLZealot_FindProcInDBs (@ProcName Varchar(500)) As BEGIN Create Table #TempDBNames (ID int identity(1,1)......

    Latheesh NK  Posted on Oct 14 2011 5:58AM
    Profile
  • 0
    Liked

    Index size on a table

    It is often a requirement to understand the size of indexes on a table. Here is a script shared by one of my friend at my workspace... looks very useful!!! DECLARE @OBJECT_NAME VARCHAR(255) = 'trn_defect_tracking_history'; DECLARE @temp TABLE ( indexID BIGINT, ......

    Latheesh NK  Posted on Apr 14 2011 8:01AM
    Profile
  • 0
    Liked

    Table Information

    The below script provides a complete possible information on a table. /* First Resultset(Table Information) Table Name ObjectId Table Type Is replicated table or not Row count of the table Second Resultset(Column information) Third Resultset(Index Information) Name, Id, Seeks, scans, upda......

    Latheesh NK  Posted on Apr 14 2011 7:02AM
    Profile
  • 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

    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
  • 0
    Liked

    Calculating Working days

    Here is a script for finding out the calculating the work days (excluding the saturdays and sundays). The script can be altered also to accomodate local holidays in a separate table too. Only thing is to substract the count of the table for that period. Declare @StartDate Date, @EndDate Date Se......

    Latheesh NK  Posted on Feb 9 2011 1:33PM
    Profile
  • 0
    Liked

    Removing multiple spaces in data

    <p> I am certain some of us would have really come across a situation that the spaces between data becomes annoying and needs to be removed on request. Many of the solutions have come across multiple blogs and sites with while loop or cursor was really made to th......

    Latheesh NK  Posted on Jan 8 2011 10:25AM
    Profile
Previous 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | ... Next
    Copyright © Rivera Informatic Private Ltd Contact us      Privacy Policy      Terms of use      Report Abuse      Advertising      [ZULU1097]