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

Liked



Upload Image Close it
Select File

This blog incorporates articles about ASP.Net 3.5 and 4.0. Also good amount of concentration is laid on .net projects,book reviews,C# articles,jobs in present industry and some general topics.
Browse by Tags · View All
ARTICLE 61
SQL Server 31
TSQL 30
C# 16
ASP.Net 11
JumpStart 8
GENERAL 8
ASP.Net MVC 7
C# 4.0 6
ASP.Net 4.5 5

Archive · View All
December 2012 22
July 2012 12
May 2012 8
January 2013 7
April 2013 4
March 2013 4
February 2013 4
January 2012 4
August 2012 2
May 2013 1

Rami Vemula's Blog

  • 1
    Liked

    ESCAPE Special Characters in TSQL

    At times, we might need to search a string in TSQL using LIKE operator for a special character (%,_,[,]). These special characters do have different meaning in normal string comparisons so we need to escape them for making them to be a part of search patte...

    rami  Posted on Dec 30 2012 12:00AM
    Profile
  • 1
    Liked

    Performance head of using SELECT * in query

    In some cases we tend to write ‘SELECT * …’ in our queries. Even though we have code maintenance issues with ‘SELECT * …’ query (say for example in case a new column gets in to the schema, application coding against this query breaks), most important issue...

    rami  Posted on Dec 30 2012 12:00AM
    Profile
  • 1
    Liked

    RANKING using OVER Clause in TSQL

    There are majorly 4 different ranking functions in SQL Server. They are – ROW_NUMBER() RANK() DENSE_RANK() NTILE(INT) They all are different and in my own terminology they can be used to define row versions in programmatic point of view. I mea...

    rami  Posted on Dec 28 2012 12:00AM
    Profile
  • 1
    Liked

    Comparison of ISNULL and COALESCE in TSQL

    Check out the following sample code to understand the basic differences between ISNULL and COALESCE functions in SQL Server. Code is self explanatory and comments are provided for ease of understanding. /****************************************************...

    rami  Posted on Dec 27 2012 12:00AM
    Profile
  • 1
    Liked

    Delete duplicate rows from a table using TSQL

    Imagine you have a table Employee with no identity column, and by mistake you got a ETL package executed twice and landed up duplicate information twice. So now its time for you to clean up duplicate data. There are many ways to do the same, say with curso...

    rami  Posted on Dec 15 2012 12:00AM
    Profile
  • 1
    Liked

    Dirty Reads and Phantom Reads in TSQL

    Dirty Reads and Phantom Reads are the concurrency problems which one can land up in case transactions are not planned correctly. Dirty reads results when a particular select statement retrieve data which is still uncommitted, in this case data can be chang...

    rami  Posted on Dec 15 2012 12:00AM
    Profile
  • 1
    Liked

    Transaction Isolation Level in SQL Server

    Transaction Isolation levels in SQL Server controls how locks are will be placed on data while running different concurrent sessions of queries. This concept is very important, as it directly influences how and what data will be returned and saved on diffe...

    rami  Posted on Dec 15 2012 12:00AM
    Profile
  • 1
    Liked

    Creating PIVOT resultset in SQL Server

    PIVOT rotates a table-valued expression by turning the unique values from one column in the expression into multiple columns in the output, and performs aggregations where they are required on any remaining column values that are wanted in the final output...

    rami  Posted on Dec 12 2012 12:00AM
    Profile
  • 1
    Liked

    Exception Handling and Error logging in TSQL

    Most of the times it would be tricky on how to catch exceptions of different types such as business errors, data sanitation errors and logical errors etc. In this small tutorial I am planning to show how to capture different types of errors and log them in...

    rami  Posted on Dec 11 2012 12:00AM
    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]