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

Liked



Upload Image Close it
Select File

Learn about SQL Server DBA, SQL Server database performance,SQL Server optimisation,database tuning,t-sql,ssis
Browse by Tags · View All
DBA Scripts 51
performance 37
SQL Server 29
Object Management 24
#SQLServer 24
Backup and Restore 20
Security Management 20
Powershell 17
Indexes 14
DBA 14

Archive · View All
June 2011 38
January 2011 33
May 2011 32
August 2011 27
July 2011 26
January 2012 24
February 2011 19
April 2011 19
March 2011 17
March 2012 17

Jack Vamvas's Blog

  • 1
    Liked

    Arithmetic overflow error and isdate sql

    Executing a t-sql statement with a convert function convert(datetime, my_date_column) , threw an arithmetical overflow error with the message : Message Arithmetic overflow error converting expression to data type datetime. [SQLSTATE 22003] (Error 8115) The statement has......

    Jack Vamvas  Posted on Jan 6 2012 12:00AM
    Profile · Blog · Twitter
  • 0
    Liked

    DATEADD and variables in SQL

    To make the T-SQL function DATEADD more dynamic use variables. The example below, accepts an input parameter, in this case “4”. All events older than 4 months from now will be deleted. DECLARE @months int SET @months = 4 DELETE FROM [Events] WHERE [EventDate] Republished from http://www......

    Jack Vamvas  Posted on Dec 6 2011 12:00AM
    Profile · Blog · Twitter
  • 0
    Liked

    SQL Table variable and temporary table

    Table variables and Temporary tables are used interchangeably – but they were designed for different purposes. Temporary tables were designed for storage and manipulation of temporal data. Table variables were designed to return User Defined Function (UDF) datasets. Which type should be used ?......

    Jack Vamvas  Posted on Dec 1 2011 12:00AM
    Profile · Blog · Twitter
  • 0
    Liked

    JOIN IN SQL FAQ

    1) What types of JOINS exist? Inner Joins Outer Joins (LEFT JOIN, LEFT OUTER JOIN, RIGHT JOIN, RIGHT OUTER JOIN, FULL JOIN , FULL OUTER JOIN) Cross Joins (aka Cartesian Join) 2) Where are JOINS used? Joins are implemented in either the FROM or WHERE clause 3) Why use JOINS? JOINS are use......

    Jack Vamvas  Posted on Oct 19 2011 12:00AM
    Profile · Blog · Twitter
  • 0
    Liked

    SQL SELECT INTO

    A regular question is how to transfer data from one table to another efficiently. I'm including an example of one method. But as with all approaches - ensure you have relevant SQL Server BACKUP and RESTORE for easy rollback. Keep in mind - the structure of the new table is defined by the SELECT s......

    Jack Vamvas  Posted on Aug 24 2010 7:07AM
    Profile · Blog · Twitter
  • 0
    Liked

    SQL and Markov Chains in Tennis

    I’ve just completed a project at tennismatchodds which required the analysing probabilities of outcomes in the sport of tennis. An algorithm created the likely outcome of the event. A further requirement of the project was to calculate likely outcomes of the event, from different points an......

    Jack Vamvas  Posted on May 19 2009 4:24AM
    Profile · Blog · Twitter
    Copyright © Rivera Informatic Private Ltd Contact us      Privacy Policy      Terms of use      Report Abuse      Advertising      [ZULU1097]