Forum Replies Created

Viewing 9 posts - 16 through 24 (of 24 total)

  • RE: Help with variable in a Trigger

    Whether we not concanate the two variable like

    @Var1 + @Var2 ??

  • RE: qUERY Performance

    Hi,

    Can you please check your query one more time, as it seems not right.

    As the query itself will return 0 records.

    select A.Column1, B.Column1, count(A.Column1) as Frequency

    ,sum(B.Column2-A.Column2) as Difference

    from TEST_TABLE 1...

  • RE: IF EXISTS Default Value constraint

    Hi

    I find a script which also get the default constraints.

    This script I already added to my blog.

    http://matespoint.blogspot.com

    Thanks.

  • RE: count(*)

    Hi,

    Colud you please check you column values.

    If it containings null values, while counting null values the query will not count it as a record , but while count(*) it will...

  • RE: IF EXISTS Default Value constraint

    Your query looks great!!

    After this article I tried here and there but colud not get a compact solution, however I get a query to get all the constraints for a...

  • RE: Synonym Schema

    I am confused with this question which somewhere says it takes the default schema if you dont provide one.

    Please check http://msdn2.microsoft.com/en-us/library/ms177544.aspx

  • RE: Synonyms

    I could not understand this question clearly.

    May be someone please elaborate this.

  • RE: Join Predicate

    Nice twisted question, people had to think once again, i get it wrong although i was knowing that no middle join is there, but do not beyond that it can...

  • RE: Question of the Day for 22 Dec 2006

    It just doing simple mathmetical expression,

    For ex -

    declare @i int

    select @i = -5

    select @i*@i

    Answer = 25

    declare @i int

    select @i = 5

    select @i*-@i

    Answer = -25

    declare @i int

    select @i = 5

    select...

Viewing 9 posts - 16 through 24 (of 24 total)