Forum Replies Created

Viewing 15 posts - 3,496 through 3,510 (of 3,515 total)

  • RE: Is 0% Downtime Possible?

    The problem is that management believes in 0% downtime. Fortunately, they have 50% downtime so its not too hard to sync downtime where they won't notice.

    The worst case...

  • RE: Uses For Derived Tables

    The only down side I have found with derived tables is that they are memory intensive.

    This becomes an issue if you have an application that runs complicated queries for a...

  • RE: Worst Practices - Depending on the GUI

    The great thing about scripting is that you are creating documentation for your database.

    I also find that a well laid out script is useful teaching aid for educating wannabe developers.

    When...

  • RE: .NET , Revolution or Assault?

    I work within a programming company and everyone who has seen .NET absolutely raves about it.

    The one comment that has been made is that VB.NET will make a lot of...

  • RE: Avoid Dynamic SQL

    I've found that if you want to pass a string to use as the IN list in a WHERE clause it doesn't work!

    What I did was put a small header...

  • RE: Certification Should Be Required

    The idea of certification becoming the IT worlds equivalent of a doctor's license to practice medicine is an interesting one.

    I think certification should be levels of certifications i.e. MCDBA grade...

  • RE: Worst Practices - Assigning Users Rights

    Whole heartedly agree.

    I also remove all rights assigned to the PUBLIC group/role so that a user has to be explicitly associated with a specific role. You don't come in...

  • RE: Is there a ROW ID function

    I haven't checked either because I'm working in a pure development environment and at this stage is is all pretty hypothetical.

    I will do some testing at a later stage to...

  • RE: Is there a ROW ID function

    Thanks Guys

    But what I was after was something like

    SELECT @@ROWID,*

    FROM Tbl_

    WHERE @@ROWID BETWEEN 10 AND 20

    I've seen your select TOP queries where a sub-query also has a TOP clause...

  • RE: Worst Practices - Objects Not Owned by DBO

    Yes definitely

    When I did the SQL 6.5 courses I was lucky enough to be taught by a trainer with commercial dba and they stressed the importance of this.

    One thing I...

  • RE: Worst Practices - Part 1 of a Very Long Series!

    I agree with using Hungarian notation for objects and variables.

    I would NOT use it for anything that a user might see such as a column name.

    I picked up the idea...

  • RE: dbo user with a NULL Login

    Trawling through the Microsoft site it turns out that this is a known bug when SQL is configured for Windows NT Authentication.

    The work around is, as Andy recommended, to use...

  • RE: dbo user with a NULL Login

    Thanks.

    I've tried that but it doesn't let me reassign the SA account back to the dbo user.

    I'm a bit concerned that any further databases created all seem to have this...

  • RE: Best Practices for maintaining a healthy Database?

    I was recently asked to install some databases for a client and their support company specified that the database should be split into 3 filegroups.

    1. PRIMARY - to be...

Viewing 15 posts - 3,496 through 3,510 (of 3,515 total)