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

Liked



Upload Image Close it
Select File

My Experiments with SQLServer
Browse by Tags · View All
SQLServer 126
SQLServer 2008 R2 91
SQLServer 2008 86
SQLServer 2005 82
SQL 60
Database 59
Sql And Me 57
Tips & Tricks 28
SQL Server 27
SQL FAQ 26

Archive · View All
May 2011 25
June 2011 21
July 2011 21
August 2011 19
April 2011 16
January 2013 4
May 2012 3
April 2012 3
October 2011 3
February 2013 2

Vishal Gajjar's Blog

  • 1
    Liked
    3
    Comments

    SQL Server – Hide an Instance of SQL Server

    You can browse available SQL Instances on network by choosing "" from Server Name drop-down list in "Connect to Server" dialog box in Management Studio: As you can see from the screen shot, all of my instances are visible on the network. If I want to hide this information fro......

    Vishal Gajjar  Posted on Aug 23 2011 12:00AM
    Profile · Blog
  • 3
    Liked
    2
    Comments

    SQL Server – ALTER COLUMN – Management Studio v. T-SQL

    Whenever we need to update a column length, we can do the same by using wither Table designer in Management Studio or by using T-SQL. Changing this using Management Studio adds an overhead of recreating the table, which can cause external fragmentation in the database. Let’s compare both these......

    Vishal Gajjar  Posted on Aug 4 2011 12:16AM
    Profile · Blog
  • 0
    Liked
    1
    Comments

    SQL Server – Finding currently running queries

    You can use sys.dm_exec_requests DMV to list all requests. This view also contains a hash map of the SQL text – sql_handle, which can be passed to DMF sys.dm_exec_sql_text to get the query text: SELECT REQUEST.session_id, REQUEST.start_time, QUERY.text FROM sys.dm_exec_requests R......

    Vishal Gajjar  Posted on Aug 10 2011 12:23AM
    Profile · Blog
    Copyright © Rivera Informatic Private Ltd Contact us      Privacy Policy      Terms of use      Report Abuse      Advertising      [ZULU1097]