Forum Replies Created

Viewing 15 posts - 1,201 through 1,215 (of 3,221 total)

  • RE: how to get current connection properties in sql server 2005

    Suggest reading this:

    http://sankarreddy.com/2010/02/get-the-server-level-default-connection-properties-for-sql-server-using-t-sql/

    Above article contains:

    CREATE TABLE #ConnectionOptions (property VARCHAR(100), value INT)

    INSERT #ConnectionOptions

    SELECT 'implicit transactions', 2 UNION ALL

    SELECT 'cursor close on commit', 4 UNION ALL

    SELECT 'ansi warnings', 8 UNION ALL

    SELECT 'ansi...

    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: Data conversions for hours.

    Here is what we expected from you, remember you are closest to the problem and we are not, so you may have something that you are aware of and we...

    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?

    Steve Jones - SSC Editor (5/27/2011)


    bitbucket-25253 (5/27/2011)


    Driving a Mercedes 300 1992 (Diesel with super charger) now at 303,562 miles. Change oil every 5,000 ... maintence every 10,000 costs $90.00,...

    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: Data conversions for hours.

    Difficult to answer your question without some sample data and desired results.. could you post same? For ease of posting readily consumable data please click on the first link...

    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 (5/27/2011)


    Lynn Pettis (5/27/2011)


    Stefan Krzywicki (5/27/2011)


    GSquared (5/27/2011)


    Stefan Krzywicki (5/27/2011)


    GSquared (5/27/2011)


    ALZDBA (5/27/2011)


    GilaMonster (5/27/2011)


    Elliott Whitlow (5/26/2011)


    Jan Van der Eecken (5/26/2011)


    GilaMonster (5/26/2011)


    One very uncomfortable PM sent...

    From the posts the person has made,...

    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: Why and How of being a SQL Saturday Volunteer

    Having served as a volunteer at the same event, I agree with all that you have said. But would add that the speaker's dinner the night before was...

    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: Auto calculation in values of column at design time

    Is this what you want?

    SET ANSI_NULLS ON

    GO

    SET QUOTED_IDENTIFIER ON

    GO

    CREATE TABLE [dbo].[T_computedCols](

    [Col1] [int] NOT NULL,

    [Col2] [int] NOT NULL,

    [col3] AS ([col1]+[col2]),

    [col4] AS ([col2]+(1))

    ) ON [PRIMARY]

    GO

    ALTER TABLE [dbo].[T_computedCols] ADD CONSTRAINT...

    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?

    WayneS (5/23/2011)


    bitbucket-25253 (5/23/2011)


    bitbucket-25253 (5/23/2011)


    WayneS (5/23/2011)


    bitbucket-25253 (5/23/2011)


    A plea for assistance, from the denizens of the thread.

    QOD - easy enough to display the page to create and submit etc., etc.

    When...

    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?

    bitbucket-25253 (5/23/2011)


    WayneS (5/23/2011)


    bitbucket-25253 (5/23/2011)


    A plea for assistance, from the denizens of the thread.

    QOD - easy enough to display the page to create and submit etc., etc.

    When the submittal...

    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?

    WayneS (5/23/2011)


    bitbucket-25253 (5/23/2011)


    A plea for assistance, from the denizens of the thread.

    QOD - easy enough to display the page to create and submit etc., etc.

    When the submittal page...

    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?

    A plea for assistance, from the denizens of the thread.

    QOD - easy enough to display the page to create and submit etc., etc.

    When the submittal page displays mine...

    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: Memory

    Thank you for a nice clear and concise 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: Excel 2003 coonection by vb 6

    1. Do you have a question about the code?

    a. Does the code when executed fail and return an error?

    2. Does your code...

    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: Which Bugs Do You Find?

    Sean Lange

    "the system does exactly what they asked for, unfortunately what they asked for isn't what they want".

    In the distant past at a location far away an analysis of...

    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: Calculating datetime.

    Here is a step by step possible solution for you to walk through and combine statements when you understand them and of course want to.

    DECLARE @St AS Datetime

    DECLARE @et...

    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 - 1,201 through 1,215 (of 3,221 total)