Forum Replies Created

Viewing 15 posts - 3,001 through 3,015 (of 5,394 total)

  • RE: Are the posted questions getting worse?

    Kit G (7/6/2011)


    GilaMonster (7/6/2011)


    Branching, cause 2 bad jokes are worse than one.

    Kit G (7/6/2011)


    Fal (7/6/2011)


    anyone with a minor dose of manners and a sense of humor is invited.

    Please, kind...

  • RE: Transactions In Stored Procedure

    Do everything you need to do where you find "insert code here". You can handle everything with a single transaction and rollback the whole work if something goes wrong.

    At least,...

  • RE: Transactions In Stored Procedure

    Then you can safely use my template.

  • RE: Transactions In Stored Procedure

    I usually work with this template:

    CREATE PROCEDURE <ProcedureName, sysname, >

    AS

    BEGIN

    SET NOCOUNT ON

    DECLARE @localTran bit

    IF...

  • RE: Transactions In Stored Procedure

    Hmmm... doesn't look like T-SQL code for SQL Server.

    Are you sure?

  • RE: Are the posted questions getting worse?

    ALZDBA (7/6/2011)


    Another justification I used was:

    ...

    You must be working for a GREAT company, Johan.

    I tried to figure out how that conversation would have been here at my shop. I...

  • RE: upload files & default column value

    In order to have different timestamps on every row, you would have to change the batchsize to "1", but it would end up slowing down everything and I'm not sure...

  • RE: Import .DTS file into an SQL 2000 server

    I'm afraid there's not much you can do.

    However, I would save previous versions of the package to a source control system, rather than relying on SQL Server versioning.

    The only...

  • RE: Increasing CPUs hurts Perf

    ... and timely comes a blog post from Gail[/url]!

    Well done, Remi.

  • RE: Increasing CPUs hurts Perf

    Ninja's_RGR'us (7/5/2011)


    Also AFAIK a loop join is NOT the best option with that many rows. IIRC HASH join is (67% sure)... don't feel like re-reading Grant's book on the...

  • RE: Increasing CPUs hurts Perf

    Ninja's_RGR'us (7/5/2011)


    Gianluca Sartori (7/5/2011)


    Looks like an estimated plan...

    However 4 MLN rows from both tables is a huge load. I suspect it would run much better with a loop join. Can...

  • RE: Increasing CPUs hurts Perf

    Looks like an estimated plan...

    However 4 MLN rows from both tables is a huge load. I suspect it would run much better with a loop join. Can you force it...

  • RE: DateTime or nvarchar

    You could say that it is universally known as a bad practice since 1970 and it is very sad and frustrating that somebody still think to know better than Mr.Codd,...

  • RE: who has installed sql server

    ...sorry, I could not resist.

    You can check the setup logs in C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\LogYou should find a line similar to this:

    Property(S): LogonUser = JohnDoe

    Hope this helps

    Gianluca

  • RE: who has installed sql server

    I happened to install some. 😛

    I guess this is not the answer you were looking for...

Viewing 15 posts - 3,001 through 3,015 (of 5,394 total)