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

  • 0
    Liked

    SQL Functions – PATINDEX()

    CHARINDEX() can only be used to search a literal string in the specified expression. In other words you cannot use wildcards. PATINDEX() provides this capability. It takes two arguments, the pattern to be searched and the expression. – © 2011 – Vishal (http://S......

    Vishal Gajjar  Posted on Jul 5 2011 7:52PM
    Profile · Blog
  • 0
    Liked

    SQL Functions – CHARINDEX()

    CHARINDEX() returns the starting position of an expression in another expression. It takes below arguments: CHARINDEX ( exp1, exp2, position ) Where, exp1 = expression to be searched, exp2 = the main expression which contains exp1, position = this is optional, it spe......

    Vishal Gajjar  Posted on Jul 4 2011 1:59PM
    Profile · Blog
  • 0
    Liked

    SQL Functions – ROW_NUMBER()

    ROW_NUMBER() can be used to generate a sequential number for each row in the result set. Unlike RANK() and DENSE_RANK(), ROW_NUMBER() in case of ties it does not generate same number, it simply ignores the tie and generates sequential numbers for each of ......

    Vishal Gajjar  Posted on Jul 1 2011 8:16PM
    Profile · Blog
  • 0
    Liked

    SQL Functions – NTILE()

    NTILE() distributes the result set into specified number of ordered partitions. For each row in result set NTILE() will returns a group number to which the row is associated. This is very useful while distributing the result set into multiple groups in case you need to di......

    Vishal Gajjar  Posted on Jun 30 2011 8:32PM
    Profile · Blog
  • 0
    Liked

    SQL Functions – RANK() & DENSE_RANK()

    The RANK() functions ranks each row of a result set. It can also be used to partition the data for ranking. It takes two arguments, PARTITION BY clause and ORDER BY clause. As the name suggests PARTITION BY clause is used to partition the result set into chunks, and ORDER BY def......

    Vishal Gajjar  Posted on Jun 29 2011 8:46PM
    Profile · Blog
  • 0
    Liked

    SQL Functions – LOGINPROPERTY()

    The LOGINPROPERTY() SQL function can be used to retrieve policy settings related to logins. It takes two arguments, Login Name and Property Name as below: LOGINPROPERTY('Login Name','Property Name') Where, Login Name = SQL Login Name, and Property Name can be: 1. BadPasswordCount – Number ......

    Vishal Gajjar  Posted on Jun 27 2011 8:09AM
    Profile · Blog
  • 0
    Liked

    Using Catalog Views – sys.database_principals

    While sys.server_principals contains all logins/roles created on the server. sys.database_principals contains all users/roles in the current database. Some of the columns returned by sys.database_principals are as below: 1. Name – name of the principal – user/role name, 2. Principal_id......

    Vishal Gajjar  Posted on Jun 23 2011 6:55AM
    Profile · Blog
  • 0
    Liked

    Using Catalog Views – sys.identity_columns

    sys.identity_columns contains a list of all identity columns in the database, some of the columns returned by sys.identity_columns are as below: 1. Object_id – object id of the parent table, 2. Name – column name for the identity column, 3. Column_id – id of the columns in the t......

    Vishal Gajjar  Posted on Jun 21 2011 7:06AM
    Profile · Blog
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]