Forum Replies Created

Viewing 15 posts - 1,051 through 1,065 (of 1,251 total)

  • RE: Laptop Dreams

    Robert Sterbal-482516 (5/25/2014)


    Am I spoiled by the fact that I'm willing to lug my digital SLR virtually everywhere?

    My wife's the same. I've got a smaller, lighter mid-range compact that...


    On two occasions I have been asked, "Pray, Mr. Babbage, if you put into the machine wrong figures, will the right answers come out?" ... I am not able rightly to apprehend the kind of confusion of ideas that could provoke such a question.
    —Charles Babbage, Passages from the Life of a Philosopher

    How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537

  • RE: Match Procs Across Servers

    Thanks for the replies but I think I've now got more questions than I had before. What's the best way of checking that clustering, mirroring and replication are set...


    On two occasions I have been asked, "Pray, Mr. Babbage, if you put into the machine wrong figures, will the right answers come out?" ... I am not able rightly to apprehend the kind of confusion of ideas that could provoke such a question.
    —Charles Babbage, Passages from the Life of a Philosopher

    How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537

  • RE: Today's Random Word!

    TomThomson (5/24/2014)


    SQLRNNR (5/23/2014)


    whereisSQL? (5/23/2014)


    TomThomson (5/23/2014)


    Revenant (5/23/2014)


    Ed Wagner (5/23/2014)


    SQLRNNR (5/23/2014)


    Ed Wagner (5/23/2014)


    crookj (5/23/2014)


    Ed Wagner (5/23/2014)


    BWFC (5/23/2014)


    Ring

    Rule

    Decree

    Dictate

    PotatoHead

    Toy

    Story

    Board

    Chalk

    ongle

    scratch

    Fever


    On two occasions I have been asked, "Pray, Mr. Babbage, if you put into the machine wrong figures, will the right answers come out?" ... I am not able rightly to apprehend the kind of confusion of ideas that could provoke such a question.
    —Charles Babbage, Passages from the Life of a Philosopher

    How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537

  • RE: Are the posted questions getting worse?

    Steve Jones - SSC Editor (5/23/2014)


    BWFC (5/23/2014)


    Does anybody else feel a bit frustrated when there is no response from the OP after you post an answer to a question? ...


    On two occasions I have been asked, "Pray, Mr. Babbage, if you put into the machine wrong figures, will the right answers come out?" ... I am not able rightly to apprehend the kind of confusion of ideas that could provoke such a question.
    —Charles Babbage, Passages from the Life of a Philosopher

    How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537

  • RE: Are the posted questions getting worse?

    Ed Wagner (5/23/2014)


    Koen Verbeeck (5/23/2014)


    BWFC (5/23/2014)


    Does anybody else feel a bit frustrated when there is no response from the OP after you post an answer to a question? I...


    On two occasions I have been asked, "Pray, Mr. Babbage, if you put into the machine wrong figures, will the right answers come out?" ... I am not able rightly to apprehend the kind of confusion of ideas that could provoke such a question.
    —Charles Babbage, Passages from the Life of a Philosopher

    How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537

  • RE: Are the posted questions getting worse?

    Does anybody else feel a bit frustrated when there is no response from the OP after you post an answer to a question? I know that this is a...


    On two occasions I have been asked, "Pray, Mr. Babbage, if you put into the machine wrong figures, will the right answers come out?" ... I am not able rightly to apprehend the kind of confusion of ideas that could provoke such a question.
    —Charles Babbage, Passages from the Life of a Philosopher

    How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537

  • RE: Today's Random Word!

    Ring


    On two occasions I have been asked, "Pray, Mr. Babbage, if you put into the machine wrong figures, will the right answers come out?" ... I am not able rightly to apprehend the kind of confusion of ideas that could provoke such a question.
    —Charles Babbage, Passages from the Life of a Philosopher

    How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537

  • RE: Return parent record of child record

    Try this

    create table #Parent

    (

    PKint primary key not null,

    Descrvarchar(10) not null,

    Reference_PKint null

    )

    insert into #Parent

    select 1, 'Gautham',nullunion all

    select 2, 'Harsha',nullunion all

    select 3, 'Kamal',1union...


    On two occasions I have been asked, "Pray, Mr. Babbage, if you put into the machine wrong figures, will the right answers come out?" ... I am not able rightly to apprehend the kind of confusion of ideas that could provoke such a question.
    —Charles Babbage, Passages from the Life of a Philosopher

    How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537

  • RE: Today's Random Word!

    Legion


    On two occasions I have been asked, "Pray, Mr. Babbage, if you put into the machine wrong figures, will the right answers come out?" ... I am not able rightly to apprehend the kind of confusion of ideas that could provoke such a question.
    —Charles Babbage, Passages from the Life of a Philosopher

    How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537

  • RE: Need Query for calculation total

    I came up against this recently and I was directed here[/url]. Don't be put off by the length of the article, the actual code it uses is very...


    On two occasions I have been asked, "Pray, Mr. Babbage, if you put into the machine wrong figures, will the right answers come out?" ... I am not able rightly to apprehend the kind of confusion of ideas that could provoke such a question.
    —Charles Babbage, Passages from the Life of a Philosopher

    How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537

  • RE: how to seperate the month and year from date?

    Borrowing heavily from Gail to give the results in the same column with a two digit year

    DECLARE @dt DATETIME;

    SET @dt = GETDATE();

    SELECT DATENAME(month,@dt)+'-'+ right(YEAR(@dt),2)


    On two occasions I have been asked, "Pray, Mr. Babbage, if you put into the machine wrong figures, will the right answers come out?" ... I am not able rightly to apprehend the kind of confusion of ideas that could provoke such a question.
    —Charles Babbage, Passages from the Life of a Philosopher

    How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537

  • RE: Today's Random Word!

    Juvenile


    On two occasions I have been asked, "Pray, Mr. Babbage, if you put into the machine wrong figures, will the right answers come out?" ... I am not able rightly to apprehend the kind of confusion of ideas that could provoke such a question.
    —Charles Babbage, Passages from the Life of a Philosopher

    How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537

  • RE: How do you edit an embedded image in SSRS 2012?

    Have look at this link . Down at the bottom there's a very simple way of extracting the image from the report.


    On two occasions I have been asked, "Pray, Mr. Babbage, if you put into the machine wrong figures, will the right answers come out?" ... I am not able rightly to apprehend the kind of confusion of ideas that could provoke such a question.
    —Charles Babbage, Passages from the Life of a Philosopher

    How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537

  • RE: How do you edit an embedded image in SSRS 2012?

    Annoyingly, I've done something like this recently but I've a horrible feeling I had a copy of the logo from elsewhere that I edited and then added to SSRS. ...


    On two occasions I have been asked, "Pray, Mr. Babbage, if you put into the machine wrong figures, will the right answers come out?" ... I am not able rightly to apprehend the kind of confusion of ideas that could provoke such a question.
    —Charles Babbage, Passages from the Life of a Philosopher

    How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537

  • RE: How do you edit an embedded image in SSRS 2012?

    Would it not be simpler to create a new image, edit it and then embed that? If you do it that way you can change it more quickly if...


    On two occasions I have been asked, "Pray, Mr. Babbage, if you put into the machine wrong figures, will the right answers come out?" ... I am not able rightly to apprehend the kind of confusion of ideas that could provoke such a question.
    —Charles Babbage, Passages from the Life of a Philosopher

    How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537

Viewing 15 posts - 1,051 through 1,065 (of 1,251 total)