Forum Replies Created

Viewing 15 posts - 2,146 through 2,160 (of 3,616 total)

  • RE: why "read only" ?

    Is it the file with a Read Only attribute or the database itself as viewed from within SQL Management Studio?

  • RE: The Scary DBA

    On release days I have to be in work early and as a deployment involves a whole team of people we exchange mobile phone numbers. No-one wants to turn...

  • RE: Designing Cross Database Queries

    I have a situation where the different lines of business have specific databases but there is a common database that is shared by all lines of business.

    The common database is...

  • RE: Actual Reason to Use CLR

    The problem is that the database is the bed-rock of modern applications.

    If a web-server in a server farm has a memory leak due to dodgy code then an restart isn't...

  • RE: Actual Reason to Use CLR

    The one place I have seen a cursor used where it would be difficult to use set based logic was where the results in a row of a particular query...

  • RE: The Cult of Mediocrity

    I can't remember where the quote comes from but it was along the lines of "An organism that ceases to explore its environment is in decline and is ultimately doomed"....

  • RE: A Love Hate Affair with User Defined Types

    It would be nice if there was a simple document that listed all the features that are going to be deprecated and all those that are to be replaced. It...

  • RE: Rev Your Database

    I was asked to review a performance issue on a database and came to the conclussion that a covering index would offer a massive boost in performance. I tried...

  • RE: Disappearing table/columns kind of...

    I would get rid of the SELECT *.

    I've had problems when the underlying table structure changed but the stored proc did not pick up the changes.

    I would also switch to...

  • RE: Composite indexes A bit confused

    If you are doing searches and retrievals that use all the fields in index 2 then stick with index 2.

    Remember an index will be ignored if the query optimiser thinks...

  • RE: Backup log file

    How often does the data warehouse get populated?

    If it is a periodic load then having the database in simple recovery mode is OK. When you do a data load...

  • RE: CHAR vs VARCHAR

    CHAR is fixed length where as VARCHAR is variable length so VARCHAR should use less space than CHAR. The only caveat is that VARCHAR fields need to store something...

  • RE: SQL Sudoko

    Chris, it is obsolete.

    When I built the original solution I used temporary tables however I found that views worked just as well and the temporary tables weren't needed.

    The error is...

  • RE: Incorrect Syntax in a USE statement

    Depends on your permissions but you can do DROP db.dbo.view just as you can do SELECT * FROM db.dbo.view

  • RE: Identity(property)?

    No, only one table at a time can have INDENTITY_INSERT ON.

    What exactly are you trying to do?

Viewing 15 posts - 2,146 through 2,160 (of 3,616 total)