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

  • 1
    Liked

    Limit the number of connection at DB level or Server level ???

    How to restrict number of connections to a database Today, one of my friend at workstation asked me "How to restrict the number of users connected to a DB in a SQL server"? Initially, my answer was as easy as to configure the user connection option to the required number using sp_configure. sp_con......

    Latheesh NK  Posted on Oct 20 2011 7:13AM
    Profile
  • 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

    Implicit Conversion

    In this post, am going to explain how implicit conversion would lead to a performance issues in query processing. Implicit conversions are results of mixing various datatypes for processing. When implicit conversion happens in a query, it denotes with a “Compute Scalar”operator. A very ......

    Latheesh NK  Posted on Oct 14 2011 2:35AM
    Profile
  • 0
    Liked

    Back To Basics - Update Statement in SQL Server

    All of us know the basic statement of SQL as insert/update/delete. And am sure of one thing Insert is for inserting the data and delete is for deleting the data.Both are in-place operation. Have you ever thought What is an Update in SQL server? - Is it an in-pace operation or multi-phase(delete fo......

    Latheesh NK  Posted on Oct 4 2011 5:53AM
    Profile
  • 0
    Liked

    Fragmentation on Heap

    Do you think a Heap would have a Page fragmentation? As long as a heap is not logically ordered, do you think a heap would undergo a page fragmentation??? Fragmentation happens when logical ordering is different from the physical ordering. A heap will not have ......

    Latheesh NK  Posted on Jun 16 2011 6:10AM
    Profile
  • 0
    Liked

    Procedure Header Comments

    It is always good to have a clear precise header for stored procedure for tracking and understanding the functionality implemented. The following is the one I use in my procedures.Please comment if you can add more info to the same. /********************************** Author : Created Date : Sto......

    Latheesh NK  Posted on May 25 2011 7:38AM
    Profile
  • 0
    Liked

    Does rebuild/re-organize index update the statistics?

    This is a very good question. I guess it can be a good question in interviews too. Coming to the answer, am answering the question as two parts: There are two types of statistics:Index stats(stats created on index) and column stats(stats created on individaul column) 1.Does rebuild index update t......

    Latheesh NK  Posted on May 16 2011 7:13AM
    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]