Getting Started with Adobe After Effects - Part 6: Motion Blur
A collection of quick technology learning tips from what people around you learn every day


  • 3
    Liked
    3
    Learned
    13
    Comments

    GO statment

    Today i studied an interesting thing related to GO statment See in the following queries executed .***The batch preceding GO will execute the specified number of times***. create table test( id int not null identity (1, 1) primary key) go ...
    SQL Server Tips  · TSQL Tips
    Deepak kelath  Posted on Mar 3 2013 12:00AM
    Last reply by Bala Krishna at 2013-03-15 01:35:21
  • 6
    Liked
    0
    Learned
    13
    Comments

    How to split string efficently

    It's quite old, but new for me. Great method to parse string is using of recursive CTE, as showed in Table Function: CREATE FUNCTION fn_SplitString(@str NVARCHAR(MAX), @sep NVARCHAR(MAX)) RETURNS TABLE AS RETURN ( WITH sepPos ...
    SQL Server Tips
    Adam Tokarski  Posted on Mar 9 2012 12:00AM
  • 17
    Liked
    10
    Learned
    12
    Comments

    Get random row from the table

    Sometimes it happens that we need random row (or set of randoms rows) from table. Itzik Ben-Gan shows us, in one of his book, the efficient way to do this: SELECT TOP(1) * FROM someTable ORDER BY NEWID() Changing the value in TOP operator, we can, in...
    SQL Server Tips
    Adam Tokarski  Posted on Feb 21 2012 12:00AM
  • 16
    Liked
    12
    Learned
    11
    Comments

    Replacing "Select * " to "Select Column list"

    Hi, We know the hint , how to get all the column names of a table into query window using drag and drop of Columns Folder under TableName. ![SSMS Hint][1] Today , i learned another method to do the same, **Select the query** and **right click** on...
    SQL Server Tips
    abhIShek BandI  Posted on Jul 8 2012 12:00AM
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]