Forum Replies Created

Viewing 15 posts - 841 through 855 (of 3,221 total)

  • RE: Stress – It’s Not Fair

    Jeff - you have summed it up perfectly........ I have been in situations as you described, unfortunately going to hell in a hand basket all to fast and way too...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Get Dates of Month listed as Columns

    The only thing I can suggest is, have you looked at the use of the PIVOT statement? I would suggest reading:

    http://www.sqlservercentral.com/scripts/T-SQL/70819/

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Mass user name correction with duplication checking

    First order of business. Why is the T-SQL statement passing the following parameters

    The stored procedure has the following input parameters

    --Your parameters ...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: DateTime Precision

    As Sherlock Holmes said to Dr. Watson ................ Very interesting

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: varaibles in SQL Server

    From Books On Line (The TSQL help file). It this this thing you are attempting?

    sp_executesql supports setting of parameter values separately from the Transact-SQL string:

    DECLARE @IntVariable INT;

    DECLARE @SQLString...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: varaibles in SQL Server

    I take it this is a home work question.

    But here is a very simple example

    CREATE PROCEDURE [dbo].[_AATT_Find_entry]

    @LookFor VARCHAR(50)

    AS

    SELECT entryid,entry,RTRIM(description)+CHAR(10)+char(13),(snippet)

    +CHAR(10)+char(13),[type],Version.sqlname+CHAR(10)+char(13)

    FROM logentries

    JOIN Version ON

    logentries.sqlid =...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: SET IDENTITY_INSERT advice - whats session mean?

    If you are using as SP or even a dynamic T_SQL statement to do the insert, I suggest that you modify it to include a TRY CATCH block, so if...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Decimal Number format as String

    Jeff Moden (11/22/2011)


    Multiply QUANTITY in Ron's answer by 100000 first, convert it to an INT, and then apply Ron's answer.

    Thanks Jeff - I goofed reading the OPs question and I...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Decimal Number format as String

    Is this what you require?

    DECLARE @Quantity AS DECIMAL(20,5)

    SET @Quantity = -3.45

    IF @Quantity < 0

    BEGIN

    SET @Quantity = @Quantity * -1

    ...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: ISNULL

    Thanks for the question

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Are the posted questions getting worse?

    Posted Today @ 2:23 PM

    By the time I was driving down that far on the Parkway, there was the high bridge, but then I remember that from going down the...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Are the posted questions getting worse?

    Stefan Krzywicki

    I'm used to NJ and Boston traffic. One of my first jobs was driving a truck route in Manhattan. Columbus's traffic isn't, or at least shouldn't be, in that...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Are the posted questions getting worse?

    Stefan Krzywicki (11/22/2011)


    jcrawf02 (11/22/2011)


    Stefan Krzywicki (11/22/2011)


    I lived in Columbus, OH for awhile, they're too small to have traffic with the road system they have, but they still manage to create...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Are the posted questions getting worse?

    Ninja's_RGR'us (11/22/2011)


    What do you guys think of this as a first house?

    http://passerelle.centris.ca/Redirect2.aspx?CodeDest=I2V&NoMls=MT8619554&Source=

    Fantastic house, location seems perfect.

    Only one drawback that I can think of, and that drawback is when sitting at...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Error converting data type varchar to bigint.

    hkflight (11/21/2011)


    Hi Ron,

    I follow your logic perfectly and expect the same results. Could this issue have to do with the fact that I am querying a view?

    Once again I...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

Viewing 15 posts - 841 through 855 (of 3,221 total)