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
  • 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
  • 7
    Liked
    6
    Learned
    0
    Comments

    Heart and Parts of SSRS

    RSConfig.exe is used to define the connection properties from the SSRS instance to the Report Server database; RSKeyMgmt.exe performs encryption key operations and scale-out deployment setup; RS.exe runs Report Server Script files that can perfo......
    SQL Server Tips
    Alpesh Patel  Posted on Oct 21 2011 10:07AM
  • 6
    Liked
    5
    Learned
    2
    Comments

    Write the variable content to a file from sql server

    To write the variable content to a file from sql server, we can use xp_cmdshell Example DECLARE @cmd sysname, @var sysname SET @var = 'Hello world' SET @cmd = 'echo ' + @var + ' > myfile.txt' EXEC master..xp_cmdshell @cmd......
    SQL Server Tips
    RKA  Posted on Oct 20 2011 12:53PM
  • 6
    Liked
    6
    Learned
    2
    Comments

    Be careful with implicit conversions!

    This is a real bug I first introduced in my SP and then spent two rounds before fixing, so I thought I'd post it. I had the following code in my SP [code] declare @Log_no int EXECUTE get_unique_key2 'K_GST_ACTV', @NumberOut = @Log_no OUTPUT; ......
    SQL Server Tips
    Naomi  Posted on Oct 20 2011 8:25AM
  • 7
    Liked
    9
    Learned
    2
    Comments

    Using SSIS package as SSRS data source

    If you want to use Some data from other server or same server after some ETL work then use SSIS package as DataSource for SSRS report. But the question is how? Create datasource in SSRS and give the path of Package in Connection string as like -f ......
    SQL Server Tips
    Alpesh Patel  Posted on Oct 20 2011 4:27AM
  • 6
    Liked
    6
    Learned
    1
    Comments

    SQL Server - Activity Monitoring Script

    Here is the script to get details of current activities in all sessions in SQL Server [code] SELECT [Session ID] = s.session_id, [User Process] = CONVERT(CHAR(1), s.is_user_process), [Login] = s.login_name, [Database] = ISNULL(db_name(p.dbid)......
    SQL Server Tips
    Nirav  Posted on Oct 18 2011 11:47AM
Previous | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | ... Next
    Copyright © Rivera Informatic Private Ltd Contact us      Privacy Policy      Terms of use      Report Abuse      Advertising      [ZULU1097]