Forum Replies Created

Viewing 15 posts - 31 through 45 (of 216 total)

  • RE: Table Variable

    Nice question. thanks

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

  • RE: Nested triggers 1

    Nice question. But little bit lengthy code.

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

  • RE: FK to IDENTITY

    Excellent question with nice explanation. Keep posting

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

  • RE: Create Table

    Yes you are right.I have verified with temp table.

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

  • RE: Create Table

    Thanks for nice question.

    ---Statement 1

    CREATE TABLE #table1

    (

    ID int PRIMARY KEY,

    Name varchar(20)

    CONSTRAINT UN_Name UNIQUE(Name)

    );

    CREATE TABLE #table2

    (

    ID int PRIMARY KEY,

    PersonName varchar(30) REFERENCES #table1(Name)

    );

    go

    select * from #table1

    select * from #table2

    drop...

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

  • RE: DATETIME - 4

    Nice question and nice explanation

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

  • RE: CHOOSE - 1

    i did not like the question because of insufficient information was provided.

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

  • RE: SubQuery

    "Must include an ORDER BY clause when a TOP clause is specified"

    I feel this statement is wrong.

    "Must include TOP clause when an order by is specified"

    this is correct.other wise will...

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

  • RE: SET Options - 1

    Thanks for great question. Please keep on posting QOTD Ron. You question and answers are always good.

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

  • RE: RAID

    Thanks for simple question. RAID is applicable for other databases also. Thanks for author for providing the wiki link.

    Wishing happy new YEAR TO ALL

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

  • RE: What will the max id be?

    Easy one.

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

  • RE: Which Statement will execute sucessfully

    call.copse (12/7/2012)


    I thought the question was clearly not about rights, but uniqueness in schemas, and thus not ambiguous, of course it might have been helpful to indicate rights were available....

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

  • RE: Which Statement will execute sucessfully

    Yes. You are right. This question is not about schema permissions, it’s only about uniqueness of schema. Under normal settings dbo is the default schema. From next time onwards...

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

  • RE: Defaults

    Easy one

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

Viewing 15 posts - 31 through 45 (of 216 total)