Forum Replies Created

Viewing 15 posts - 16 through 30 (of 216 total)

  • RE: Assigning categories to values 2

    Easy one compared to yesterday QOTD. yesterday i got it wrong. i did not verify verify between operation -1 and -10.

    Malleswarareddy
    I.T.Analyst
    MCITP(70-451)

  • RE: Assigning categories to values 1

    Raghavendra Mudugal (5/14/2013)


    Really Good one, Hugo, thank you for posting (so basic and so much of valuable point)

    (Not sure and can't think of why one would use as "BETWEEN -1...

    Malleswarareddy
    I.T.Analyst
    MCITP(70-451)

  • RE: Index defaults 2

    Even though i know the answer i got it wrong . I got confused with question

    Malleswarareddy
    I.T.Analyst
    MCITP(70-451)

  • RE: The Subquery

    nenad-zivkovic (5/9/2013)


    Toreador (5/9/2013)


    A good question, but I'm not so sure about the explanation.

    If a column is referenced in a subquery that does not exist in the table referenced by the...

    Malleswarareddy
    I.T.Analyst
    MCITP(70-451)

  • RE: The Subquery

    I faced this issue when coding for my project work. We follow naming conventions and we use '_' for oltp tables. Before doing the functional testing I usually test...

    Malleswarareddy
    I.T.Analyst
    MCITP(70-451)

  • RE: Timestamps

    Nice question. Thanks for author for submitting. Please keep posting this type of good questions.

    Malleswarareddy
    I.T.Analyst
    MCITP(70-451)

  • RE: Distinct

    Simple and an Easy one

    Malleswarareddy
    I.T.Analyst
    MCITP(70-451)

  • RE: Identity Insert

    Lokesh Vij (5/4/2013)


    Good one!

    I remember posting a similar Qotd last year. Here is the link: http://www.sqlservercentral.com/questions/T-SQL/93222/%5B/url%5D

    +1

    Malleswarareddy
    I.T.Analyst
    MCITP(70-451)

  • RE: Multiple reference to a single column

    Because Id value 4 is not exits in t2 table. Thats why you getting error.

    If you have foreign key then the reference column value must exists in parent table.

    below...

    Malleswarareddy
    I.T.Analyst
    MCITP(70-451)

  • RE: Divide by zero

    Koen Verbeeck (12/26/2012)


    Checked 1 and 4 and then stopped thinking because I only had to select two 😀

    Same thing happened for me also

    Malleswarareddy
    I.T.Analyst
    MCITP(70-451)

  • RE: Table Alias

    Easy Question

    Malleswarareddy
    I.T.Analyst
    MCITP(70-451)

  • RE: Problem with connection argument in CMDEXEC command

    hey am not expert in ssis.but i think you need to put equal for CONNECTION ="MySecond.Connection.String";

    Malleswarareddy
    I.T.Analyst
    MCITP(70-451)

  • RE: count(*) vs count(1) or count(id)

    http://msdn.microsoft.com/en-us/library/ms175997.aspx

    Malleswarareddy
    I.T.Analyst
    MCITP(70-451)

  • RE: why there are no sql server services listed in configuration manager

    It will show in white color when your service getting started.wait for some time. if still it is showing in white color right click on instance and restart the instance

    Malleswarareddy
    I.T.Analyst
    MCITP(70-451)

  • RE: is it possible to union all two CTEs?

    You can use multiple ctes like this

    create table #temp (ID int, Name varchar(20))

    insert into #temp

    values

    (10, 'Helen'),

    (20, 'Joe'),

    (30, 'Blake');

    ;with cte as

    (select * from #temp)

    ,

    cte1 as

    (

    select * from #temp

    union all

    select...

    Malleswarareddy
    I.T.Analyst
    MCITP(70-451)

Viewing 15 posts - 16 through 30 (of 216 total)