Forum Replies Created

Viewing 15 posts - 1,216 through 1,230 (of 3,008 total)

  • RE: Women and Men - Same or Different?

    Getting back to the initial question: "So, are men and women different?"

    The answer is obviously yes. That's why men are called men and women are called women.

  • RE: New User, just wanted to say hi

    evanrich (10/4/2010)

    ...I do have one bit of knowledge to share with any other NEW people that read this... and this this: If you don't know anything about what...

  • RE: Audit database usage

    It sounds like you are seeking a technical solution for what is really a business problem: your desire to continue a monopoly on report development.

    If your company cannot continue to...

  • RE: date in 3 seperate fields

    This is probably the fastest code for the conversion (assuming that the year is an integer in the form YYYY)

    select dateadd(month,(12*@Year)-22801+@Month,@Day-1)

    If the year is two digits, you will have to...

  • RE: How does Winrar handle unused space in an MDF file

    How does the size of the .rar file compare to the size of the .mdf file?

    Wouldn't it be simpler to provide your support vendor with a copy of a database...

  • RE: Full backup every hour

    With transaction log backups (and a full backup), you can restore to any point in time, but with differential backups, you can only restore to the point where the differential...

  • RE: Dynamic Query Problem using LIKE

    If the phone number is always stored in format 999-999-9999, then the code below should work without dynamic SQL.

    declare @phone nvarchar(50)

    set @phone = N'7243426833';

    select @phone = stuff(stuff(@phone,7,0,'-'),4,0,'-')

    declare @pt table (localphone...

  • RE: Large Table Design

    Since you can't actually reorganize the table while it is a heap, I am sticking by that statement.

    Solutions involving a reload of the table are possible, but that just...

  • RE: Large Table Design

    PaulB-TheOneAndOnly (9/30/2010)


    Michael Valentine Jones (9/30/2010)


    PaulB-TheOneAndOnly (9/30/2010)


    Michael Valentine Jones (9/30/2010)


    If you leave the table as a heap, you cannot reorganize the table to remove unused space.

    why not?

    Since, it is a heap...

  • RE: Database Mail does not work from SQL Agent Job

    Do you have the operator configured to do a Net Send, instead of email?

  • RE: Are the posted questions getting worse?

    Lynn Pettis (9/30/2010)

    ... I have seen his attitude change once when the OP explained he was dumped into the situation he was in and that he was not a DBA/Database...

  • RE: Database Mail does not work from SQL Agent Job

    Did you make the profile a public default profile?

    Were there any error messages in the Database Mail Log?

  • RE: Large Table Design

    PaulB-TheOneAndOnly (9/30/2010)


    Michael Valentine Jones (9/30/2010)


    If you leave the table as a heap, you cannot reorganize the table to remove unused space.

    why not?

    Since, it is a heap with no particular organization,...

  • RE: Large Table Design

    You really and absolutely need to have a clustered index on that table, and you should really have a primary key. If you leave the table as a heap,...

  • RE: Stopping backup files from being datetime stamped

    Derrick Smith (9/29/2010)


    Michael Valentine Jones (9/29/2010)


    Derrick Smith (9/29/2010)


    Michael Valentine Jones (9/29/2010)


    Normally, you do not want to overwrite a prior backup, because it leaves you without a backup file if something...

Viewing 15 posts - 1,216 through 1,230 (of 3,008 total)