Forum Replies Created

Viewing 15 posts - 1,306 through 1,320 (of 5,103 total)

  • RE: change collation on a datase

    This: http://support.microsoft.com/kb/325335 is the official way... funny it says the review happened in 2007 but it dos not mentions 2005 😉


    * Noel

  • RE: cachestore flush

    For Every Restore operation you will get those 3 entries recorded in the log...


    * Noel

  • RE: Tracking Illicit Users

    Great Article! I am doing this kind of auditing on all my servers.

    I would *not* filter by database Id though. cross-database queries can come from the "unexpected" master,tempdb,etc... system databases....


    * Noel

  • RE: large number of databases

    Microsoft did the 20K+ sprocs. As does several ERP vendors IIRC. Not necessarily bad.:)

    Well I would re-write that quote this way:

    "If it was written by M$ it is NOT necessarily...


    * Noel

  • RE: change collation on a datase

    When you do COLLATE it DOES *NOT* change the data that is *already* there. Keneth is right, BCP-OUT->Rebuild->BCP-IN is the way to go!

    Cheers,


    * Noel

  • RE: large number of databases

    20,000 SP ?????.... that is BAD!!! I believe whoever created such thing did a lousy job.

    By the way after database 99 many stats are not gathered by SQL Server.


    * Noel

  • RE: LTRIM linked field

    select ...

    join tableA a join tableB b on ltrim(a.CustomerID) = ltrim(b.CustomerID)

    Now, I would advice to cleanup the data instead of following this route


    * Noel

  • RE: Known Issues (SQL Server 2005 with SP2)

    Markus (1/10/2008)


    Question: I thought that Microsofts stance on Service packs and CU was that you apply the latest SP but ONLY apply a CU if you are experiencing a...


    * Noel

  • RE: Running Multiple Instances on one server

    By the way the "free" "Instances" are only for Enterprise Edition...


    * Noel

  • RE: Running Multiple Instances on one server

    If you licence SQL Server per processor it does not matter how many instances you run.

    Just my $0.02


    * Noel

  • RE: Order by Clause

    sudhakara (12/26/2007)


    why view does not allow order by clause while creating unless there is no top ?

    And that behaviour has changed with the 2005 release. Even though you...


    * Noel

  • RE: How can I create a clone of a database on the fly?

    What are Snapshots? In Oracle, Snapshots were a precursor to materialized views, similar (in theory) to SQL 2000's indexed view...which never quite worked.

    Database Snapshots are just sparse files that mimic...


    * Noel

  • RE: Dead lock issue

    SriSun (12/11/2007)


    Thanks Grant Fritchey, its helpful.

    Not all times I get primary key voilation or deadlock, but I am sure that I get any of these errors when I ran...


    * Noel

  • RE: What is better.. Static or dynamic memory allocation ?

    I too set them up at those values and *always* specify the max memory BTW.


    * Noel

  • RE: server IP change, does it affect anything?

    You should create an ALIAS for the subscriber to eliminate the need for the hardcoded IP. That way if the subscriber changes IP you just need to update the alias.


    * Noel

Viewing 15 posts - 1,306 through 1,320 (of 5,103 total)