Getting Started with Adobe After Effects - Part 6: Motion Blur
Webmasters should consider changing their hosting plans into business hosting, especially those that have big sites.

Liked



Upload Image Close it
Select File

Browse by Tags · View All
sql_server 217
t-sql 211
tsql 116
sqlserver 96
BRH 78
#SQLServer 66
#TSQL 56
SQL Server 34
function 11
SSMS 9

Archive · View All
August 2007 17
August 2010 8
June 2012 7
June 2011 7
November 2007 7
August 2012 6
May 2012 6
November 2011 6
August 2011 6
October 2011 6

Madhivanan's TSQL Blog

  • 0
    Liked

    Find Alphanumerals only

    Sometimes when you import data from other system, you may need to clean the data by removing unwanted data. Consider you import data where you want to keep only those which are purely alphanumerals. Here is a way to find out declare @table table(data varchar(20)) Insert into @table select......
    Blogs »  Madhivanan's TSQL Blog
    Madhivanan  Posted on Feb 16 2009 1:52PM
    Profile · Blog · Facebook · Twitter
  • 0
    Liked

    Happy New Year

    Set the result mode to text and run this query set nocount on select space(7-len(replicate(char(42),no)))+ replicate(char(42),no*2-1) from ( select top 5 row_number() over (order by name) as no from sysobjects ) as t union all select space(5)+replicate(char(124),3) union all selec......
    Blogs »  Madhivanan's TSQL Blog
    Madhivanan  Posted on Dec 31 2008 9:47AM
    Profile · Blog · Facebook · Twitter
  • 0
    Liked

    NULL on joined columns

    You know that NULL values on joined columns are omitted from comparision when tables are joined Consider this example Declare @t1 table(col1 int, col2 varchar(10)) insert into @t1 select 1, 'test1' union all select 2, 'test2' union all select NULL,'test3' union all select 5,' test4' ......
    Blogs »  Madhivanan's TSQL Blog
    Madhivanan  Posted on Dec 24 2008 12:00AM
    Profile · Blog · Facebook · Twitter
  • 1
    Liked

    Script of DDL triggers

    How do I view the script of the DDL triggers? The answer is not sp_helptext 'DDL trigger' Because DDL triggers are defined at database/server level and not at any table level So they are not stored in a system objects like sys.objects and the usage of sp_helptext,object_name, etc wont wor......
    Blogs »  Madhivanan's TSQL Blog
    Madhivanan  Posted on Dec 11 2008 1:28PM
    Profile · Blog · Facebook · Twitter
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]