Forum Replies Created

Viewing 8 posts - 1 through 8 (of 8 total)

  • RE: Mastering SQL Server Profiler - Part 4: Profiler Events

    Brad,

    Quite a suscinct presentation and IMHO is a great starter set for those begining their DBA responsibilities.

    In 'class' #4 you mention a #5 in the offing....

  • RE: DBA Needed in Orlando, FL area.

    Your post here (tongue in cheek) is very funny!

    If I were some years closer to retirement, I'd be considering this offer. It...

  • RE: right fill string characters

    Hey Jeff,

      Yes I know this description of this function's capabilities is not found in BOL. I discovered it's 'hidden feature' after testing (my) conclusions that I drew from reading what...

  • RE: right fill string characters

    Exactamundo Antares! 

    And!... this marvelous function (DATALENGTH) also returns the defined length of your table's columns. This has proved very handy in ETL work.

     

     

  • RE: right fill string characters

    Hi all.

    Has anyone considered using the following?

    SELECT RIGHT(space(DATALENGTH("column name")) + "column name", DATALENGTH("column name"))

    from "table name"

    Um, replace "column name" and "table name" with...

  • RE: Getting Ready to Replicate

    Andy,

      Nice presentation with the screen shots. The caveats and advice you offer at each step is what really makes your article most valuable. I also administer just a few...

  • RE: SQL 2K Best Practices Analyzer 1.0 Beta

    Hi! Yes, I've installed and run it on several 2K databases with nothing but helpful suggestions. I'd reccommend it without reserve.

  • RE: Distinct count of records in a table

    If you'd like a lightning fast solution, try this:

    SELECT count(distinct( BINARY_CHECKSUM(*))) FROM TableName

Viewing 8 posts - 1 through 8 (of 8 total)