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

Liked



Upload Image Close it
Select File

Learned something today? Share it, or learn from what others have learned today
  • 13
    Liked
    11
    Learned
    9
    Comments

    Output table as HTML table

    I've been writing a blog post and needed a way to generate HTML table from the SQL table. From this thread in MSDN forum http://social.msdn.microsoft.com/Forums/en-US/sqlgetstarted/thread/c0ce48e5-ad7d-451a-9a7e-5f1e74d06698 I learned about Tony R blog ......
    SQL Server Tips
    Naomi  Posted on Jun 6 2011 8:50PM
  • 17
    Liked
    16
    Learned
    8
    Comments

    Trick in SQL Server 2012 Shift+Alt+Selection

    In SQL Server 2008, We have a feature to select multiple lines with specific characters. In SQL Server 2012, we can append the same text to multiple lines. Below images will give the clear picture to understand this feature. Some times we need to add s...
    SQL Server Tips
    abhIShek BandI  Posted on Aug 13 2012 12:00AM
    Last reply by Bala Krishna at 2013-01-24 00:42:26
  • 15
    Liked
    12
    Learned
    8
    Comments

    $IDENTITY - Identity Column values

    There is something $IDENTITY to get the identity value for a table contained the identity column. [Code] create Table T1(Col1 int identity(1,5),Col2 int) Go Insert into T1(Col2) Select 100 Go 100 Select $Identity,* From T1 [/Code]......
    SQL Server Tips
    Latheesh NK  Posted on Oct 22 2011 12:48AM
  • 5
    Liked
    6
    Learned
    8
    Comments

    SSMS Connection Problem and workaround

    I just want share one problem faced by me. this morning.... last night I were playing with network options and today I got one error while establishing connection with ssms A network-related or instance-specific error occurred while establishing a......
    SQL Server Tips
    Shivendra Kumar Yadav  Posted on Sep 24 2011 1:37PM
  • 21
    Liked
    16
    Learned
    8
    Comments

    SQL Server - Select top count dynamically

    While trying to retrieve the select top count dynamically, initially tried this way [code] Declare @noOfRowsPerChunk int set @noOfRowsPerChunk = 5 select top @noOfRowsPerChunk RecordID from myTable [/code] which throwed the syntax error. Fix:......
    SQL Server Tips
    RKA  Posted on Sep 21 2011 3:33AM
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]