Forum Replies Created

Viewing 15 posts - 2,221 through 2,235 (of 3,655 total)

  • RE: My Projects Have Never Failed

    Was Betamax a failure?

    Technically far superior to VHS and much more compact and yet due to market forces it was eclipsed by VHS.

    Similarly the last European Ford Escort sold by...

  • RE: switching to compatibility level 90

    If you have a development server I would test your system thoroughly on that.

    I took the opportunity to run a DBCC DBREINDEX when I upgraded some databases to SQL2005.

    SQL2005 is...

  • RE: switching to compatibility level 90

    I take it that you have a separate distributor in your replication set up?

    When you switch to compatibility level 90 you may notice that it takes a while as SQL...

  • RE: My Projects Have Never Failed

    The article could almost have a title of "how not to manage a project".

    The sucesss of a project depends on managing user expectations and keeping them informed as to...

  • RE: Query Analyzer blues

    There are somethings I really like about management studio

    • The ability to change the connection for the query window
    • The way it exposes additional properties on remote servers that simply aren't available...
  • RE: Query Analyzer blues

    The other thing you will notice with SSMS is that it is S.....L....O.....W.

    It speeds up a bit with SP2a on it but SQL Query Analyser is still much faster.

  • RE: select for delete

    Your description is a bit vague.

    When I delete large numbers of records from a table then rather than fill up the log file with one massive DELETE I do something...

  • RE: Unable to modify table

    SELECT * FROM mydatabase.myname.Tmp_FORUM_TOPICS WHERE TOPIC_ID IS NULL

    This will find the offending data rows.

    You can then determine whether to delete those rows or reassign TOPIC_ID. After doing this you...

  • RE: What the difference between char and datetime in this situation?

    The thing with a DATETIME or SMALLDATETIME field is that you have built in data validation for that reason I would prefer to store dates in date fields.

    If you are...

  • RE: Views and Horizontal Portioning

    Don't forget that when you do schema changes to underlying tables your should do sp_refreshview on the dependent views.

    It is worth mentioning the WITH CHECK option. If you have...

  • RE: Copy mdb''''s when connection is open

    Doesn't the Windows XCOPY cope with the open file?

    The alternative would be

    NET STOP YourService

    XCOPY drive.spec\*.MDB drive:spec

    NET START yourService.

    Down time should be pretty short.

  • RE: Storing IPs in SQL Server

    There doesn't seem to be an ANSI standard equivalent of BIT or TINYINT.

    BIT fields I can live without because I like to have a specific "Don't know" value rather than...

  • RE: Storing IPs in SQL Server

    Joe,

    How do you feel about the naming of the integer types?

    When I started programming integer meant 16 bit, long integer meant 32 bit. Not everything has shifted up a...

  • RE: When a project falls behind the schedule.....

    Depends how far behind schedule you are and what the causes are.

    If the project manager under-estimated the timescales then there is not a lot you can do about it.

    If you...

  • RE: Saving a Sales Order Part 1

    The bit that concerns me is the BOL entry that warns that this takes 1/8th of the server memory. So a 16GB box is going to lose 2GB RAM...

Viewing 15 posts - 2,221 through 2,235 (of 3,655 total)