Forum Replies Created

Viewing 15 posts - 2,071 through 2,085 (of 5,103 total)

  • RE: SQL Server 2005 Build List

    I am nothing but disgusted that M$ is doing such a poor Job!

    I would have never expected that "we" are compiling those and M$ is simply playing catch up...


    * Noel

  • RE: Quality Control with SQL Server

    And the zaga continues. They posted that the membership scripting issue was "solved" on SP2 and guess what? When I checked my SP2 installation it still does not scripts built-in...


    * Noel

  • RE: How often to shrink database

    Sorry I just lost my post. Here are *my* reasons:

    -If you shrink it all work performed by previous reindexing is spoiled( pages are moved in the file unless you use...


    * Noel

  • RE: How often to shrink database

    Answer: 0


    * Noel

  • RE: Storing IPs in SQL Server

    I have seen this approach before and it *is* quite fast but when you try to make the returned values into readable format is when you get hit *hard* by...


    * Noel

  • RE: Replicating Identity Columns

    As part o preparing a database for transactional replication it *is* MS advice to mark FKs, Triggers and Identity columns as NOT FOR REPLICATION *before* you create the publication. This...


    * Noel

  • RE: Saving a Sales Order Part 1

    I think the article was clear and very to the point but besides the advantages of using this technique the drawbacks should also be pointed out.

    I have had memory...


    * Noel

  • RE: Is there any method to reset the Identity value other than the DBCC CHECKIDENT command

    The rights required are ddladmin, db_owner or sysadmin. If you are fine with granting ddladmin you will be fine. Other method is to use TRUNCATE TABLE (resets to...


    * Noel

  • RE: unique constraint on col & allow more than 1 null

    -- My Solution: Use an indexed view: (Borrowing Names from mkeast )

    CREATE TABLE dbo.NullPKTest

    (

    nid int PRIMARY KEY

    , nulltest varchar(10) NULL...


    * Noel

  • RE: Where are all the good SQL developers/DBA/DW developers?

    Hey I am here ... just kidding

    There are *many* talented people around but "references" are the KEY. If you can get to them...


    * Noel

  • RE: The Effect of NOLOCK on Performance

    If you SET the DB to read-only all locking mechanisms will be bypassed!


    * Noel

  • RE: Five Realtime DTS Examples

    Maybe I am confused but what is "real-time" about all this ?

    It is a nice summary of nifty features on DTS the title is misleading though.


    * Noel

  • RE: Loading a 24x7 Data Warehouse

    A 10GB data warehouse is small enough to follow the proposed procedure.

    When your data warehouse reaches 200 to 500GB you will get into a TOTALLY different ball game.

    Cheers,


    * Noel

  • RE: Floating point exception on SQL 2000 SP4 2187

    If you have Indexed views or Computed colums you need to have the correct "SET" environment:

    set ansi_nulls on

    set quoted_identifier on

    set ansi_warnings on

    set ansi_padding on

    set arithabort on

    set concat_null_yields_null on

    set numeric_roundabort off

    Cheers,


    * Noel

  • RE: Log Reader Agent

    You need the help of Two stored procedures:

    use distribution

    sp_help_agent_profile @agent_type = 2 --LogReader=2

    go

    sp_help_agent_parameter @profile_id = 3

    go

    On the above example I used sp_help_agent_profile to determine what is the default (currently running)...


    * Noel

Viewing 15 posts - 2,071 through 2,085 (of 5,103 total)