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

Liked



Upload Image Close it
Select File

Blog about SQL Server and related technologies.
Browse by Tags · View All
SQL Server 20
Database Administration 12
TSQL 10
Denali 10
SQLServer Denali 9
SQL Server 2012 8
#SQLServer 7
SQLServer 2012 6
PowerShell 4
Performance 4

Archive · View All
August 2011 6
September 2011 4
October 2011 3
November 2011 3
February 2013 2
January 2013 2
December 2011 2
January 2012 2
April 2013 1
November 2012 1

  • 1
    Liked

    SQL Server: Simple Parameterization

    Simple parameterization is SQL Server feature which allow the optimizer to parameterize submitted queries. If submitted query has no parameters and has constant values plugged in, the optimizer can choose to treat constant values as parameters and automatically create parameterized query and executi......

    Ana  Posted on Oct 31 2011 12:00AM
    Profile
  • 1
    Liked
    1
    Comments

    SQL Server: Find statistics information in a database

    Recently I worked on a performance tuning of a database and noticed a lot of user created statistics. I checked few of them and saw that lots of user created statistics are multi-column statistics and some of them have a filter defined. There was no documentation of created statistics and I wanted t......

    Ana  Posted on Oct 13 2011 12:00AM
    Profile
  • 1
    Liked

    UPDATE STATISTICS: How to cheat the optimizer

    Did you ever need to see what execution plan will optimizer choose for your query on large set of data but you have a really small test database? Or you are testing your notification system for sort warning, for example, and you need to force query optimizer to think that tables used in a query are ......

    Ana  Posted on Oct 10 2011 12:00AM
    Profile
  • 4
    Liked
    3
    Comments

    How to change/reset SQL login password

    Yesterday I saw a question about required permission for changing SQL Server login password and I decided to write a blog post about it. Question was: I have a SQL logins: Login1 and Login2. I gave ALTER LOGIN permission on Login1 to Login2 so that Login2 can change the password for Login1. But when......

    Ana  Posted on Sep 23 2011 12:00AM
    Profile
  • 4
    Liked
    2
    Comments

    SQL Server Denali – FORMAT() string function

    SQL Server Denali brings us new string function, FORMAT function. It will make formatting of date/time and number values easier. Syntax: FORMAT (value, format [,culture]) Formatting Date/Time Let’s see how it works: DECLARE @a datetime = getdate() -- If the culture argument is not provide......

    Ana  Posted on Sep 2 2011 6:30AM
    Profile
  • 1
    Liked

    SQL Server Denali – CONCAT() string function

    CONCAT() is new string function in SQL Server Denali. It returns a string that is the result of concatenating two or more string values (or values that can be converted to string). Syntax: CONCAT (string_value1, string_value2 [, string_valueN ] ) With CONCAT function, you can concatenate between 2......

    Ana  Posted on Aug 28 2011 12:00AM
    Profile
  • 2
    Liked
    1
    Comments

    SQL Server Denali – IIF() and CHOOSE() functions

    SQL Server Denali introduced 2 new logical functions: IIF and CHOOSE. IIF function IIF function returns one of two values, depending on whether Boolean expression evaluates to true or false. Syntax:  IIF (boolean_expression, true_value, false_value) IIF function is simple replacement for: Case ......

    Ana  Posted on Aug 22 2011 12:00AM
    Profile
  • 0
    Liked

    SQL Server Denali – EOMONTH()

    SQL Server Denali introduces 7 new date and time built-in functions. One of these functions is EOMONTH(). EOMONTH() returns the date value that represents the last day of the month for given date. Syntax: EOMONTH( start_date [, months_to_add] ) Pre- Denali, to calculate the date value that represe......

    Ana  Posted on Aug 3 2011 12:00AM
    Profile
  • 0
    Liked

    SQL Server Denali– TRY_CONVERT() conversion function

    TRY_CONVERT is new conversion function in SQL Server Denali. Unlike the CAST and CONVERT functions, TRY_CONVERT allows us to test whether it is possible to convert a value to specific data type. TRY_CONVERT converts passed value to the specified data type, if conversion isn’t possible null is retur......

    Ana  Posted on Aug 1 2011 12:00AM
    Profile
  • 0
    Liked

    SQL Server Denali– PARSE() and TRY_PARSE() conversion functions

    SQL Server Denali introduced new conversion functions: PARSE() and TRY_PARSE(). PARSE() function PARSE() function converts expression (string value) to date/time and number data types if conversion is possible. If conversion isn’t possible it raises an error. -- Parse to datetime specifying cul......

    Ana  Posted on Jul 30 2011 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]