Forum Replies Created

Viewing 15 posts - 1,996 through 2,010 (of 3,669 total)

  • RE: Time Bomb Coding

    Given SQL 2005/2008 would you recommend the same solution, use a filtered index, or something else?

    I think I would still stick with the queue table for the reasons mentioned earlier.

    My...

  • RE: Time Bomb Coding

    I didn't use a filtered or nonclustered index on the base table for two reasons.

    1. The original solution was on SQL2000.

    2. The main table had incredibly heavy read activity on...

  • RE: Time Bomb Coding

    If you look throught he source of the built in system stored procs you will see quite a few cases of IF(SELECT COUNT(*)...)>0

    Try sp_helptext 'sp_helptext' for an example!

  • RE: Architecture Principles

    When I worked for McCann-Erikson they classified people into 4 segments analogous to the part of a printed advert. It was exactly the same thing as the Introvert/Extrovert Vs...

  • RE: Database server running out of memory

    Has anyone noticed that the old system stored procs are not that efficient?

    IF(SELECT COUNT(*) FROM ...) >0:w00t:

    Cursors all over the place etc.

  • RE: Database server running out of memory

    If you have separate instances then you can of course use sp_configure to specify a maximum amount of memory for each instance.

    You can also specify which CPUs get used by...

  • RE: Database server running out of memory

    Add memory to the physical box and set up virtual servers rather than separate instances.

  • RE: Undocumented Extended and Stored Procedures

    Probably a daft question but you are running the proc in the correct database?

  • RE: Casting the number of decimals in a select dynamically (For eg, amounts based on the number of decimals of the currency)

    When I've used DBMail to send reports I've formatted numbers as VARCHAR just to get the email format looking nice.

    The problem comes when someone wants to use the views for...

  • RE: Index has max 2000 chars

    One trick I found if I want to improve query performance where I need to query a character field larger than 900 bytes is to have a column that holds...

  • RE: Translating SQL 2005 script to SQL 2000

    Where you have sysobjects.object_id it should be sysobjects.id

    It looks as if someone has tried to translate the use of the system views in SQL2005/SQL2008 into the legacy tables and forgotten...

  • RE: Service Pack 4

    James Stover (12/27/2009)


    I'll go one further - I don't think it's acceptable to have service packs.

    Brave statement. I'm pretty rigorous when writing code but I doubt that even...

  • RE: Service Pack 4

    I think of SQL Server/Oracle the way I think of BMW/Mercedes et al. I am paying a premium price for something that comes with certain quality expectations.

    Part of those...

  • RE: PowerPivot

    Personally I liked the original code name "Gemini".

    When IT doesn't support the business those non-IT parts of the business that are computer savvy design and build their own tools an...

  • RE: Architecture Principles

    One of the problems I found when switching to agile development practises was getting the non DB development team to accept architectural principles from the DB perspective.

    The good architects tend...

Viewing 15 posts - 1,996 through 2,010 (of 3,669 total)