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...

  • 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...

  • 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,...

  • 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...

  • 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,...

  • 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...

  • 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...

  • 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...

  • 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...

  • 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...

  • 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...

  • RE: Memory

    Thank you for a nice clear and concise question.

  • 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...

  • 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...

  • 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...

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