Forum Replies Created

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

  • RE: Resetting Key Column Numeration from SQL Tables

    look up DBCC CHECKIDENT with the RESEED option.

  • RE: Extremely Large Data Load

    Avoid XML like the plague.

    If you are using BCP there is command line parameter that lets you specify the batch size for each transaction. I tend to set it...

  • RE: Pros and Cons with (non CLR) UDTs in SQL Server

    The are effectively a point-in-time template, so although you define a user-defined datatype for a non-nullable integer with a default of 1 this only applies when you create the column...

  • 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...

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