THE SQL Server Blog Spot on the Web
Welcome to SQLblog.com - The SQL Server blog spot on the web Sign in | Join | Help
in Search

Browse by Tags

All Tags » General   (RSS)
  • Should SQL Server Have The CREATE [OR REPLACE] PROCEDURE Syntax?

    I was asked by a developer at work the other day why SQL Server does not have the create or replace syntax. I started thinking and there were some advantages and one big disadvantage First the advantages   AdvantageWhen scripting out a database you don’t have to generate if exists.....drop statements When modifying an object from a file ...
    Posted to Denis Gobo (Weblog) by Denis Gobo on May 7, 2008
  • Joe Healy made me do it!

    So, I am finally back from hibernation - and I hope it lasts! It all started when I got an email today from Joe Healy. For those of you who dont know Joe, he is my favorite .NET developer evangalist from FL. You can find out more about Joe the vibrant FL community from his blog. Now, as you will find out through my blogs, I am no .NET ...
    Posted to Rushabh Mehta (Weblog) by RMehta on April 9, 2008
  • The SQL Server script repository

    How come I've missed this? I don't know, but I'm writing this blog post so to bookmark this site. You'll find a handful of scripts, mainly using Dynamic Management Views and Functions, to monitor various aspects of SQL Server. http://www.microsoft.com/technet/scriptcenter/scripts/sql/sql2005/default.mspx?mfr=true
    Posted to Tibor Karaszi (Weblog) by TiborKaraszi on March 3, 2008
  • Is statistics over non-indexed columns updated by index rebuild?

    Short answer: no.  This question came up today in the MCT discussion group. My gut instinct said no, but I wanted to test it to be certain. But first a brief background: You can rebuild an index using DBCC DBREINDEX or in 2005 (and now preferred) ALTER INDEX ... REBUILD. Rebuilding an index internally creates a new index and when that has ...
    Posted to Tibor Karaszi (Weblog) by TiborKaraszi on August 9, 2007
  • No Notification Services in SQL Server 2008

    If you have been wondering where Notification Services (NS) is in the prior CTPs of SQL Server 2008, you now have the answer. NS will not be carried forward to SQL Server 2008. Here's a quote from July CTP readme: ''SQL Server Notification Services will not be included as a component of SQL Server 2008, but will continue to be supported as part ...
    Posted to Tibor Karaszi (Weblog) by TiborKaraszi on August 3, 2007
  • Will SQL Server 2008 ship February 27?

    No. Let me elaborate a bit. You might have seen and read about the feb 27 launch of SQL Server 2008. Now, in MS lingua, ''launch'' is not the same as ''ship'' or ''release to manufacturing'' (RTM). So, the Feb 27 event is a marketing and awareness event. RTM will be later.
    Posted to Tibor Karaszi (Weblog) by TiborKaraszi on July 17, 2007
  • Want to get rid of "Compact Edition" from Books Online?

    I'm sure that some of you have been annoyed when searching or using the index and found a hit, thinking it looks strange, only to realize that you are looking at a ''Compact Edition'' topic. This has happened to me more than once. We just had a discussion about this in the MVP group and Umachandar Jayachandran (aka UC) have use this great ...
    Posted to Tibor Karaszi (Weblog) by TiborKaraszi on July 13, 2007
  • Are execution plans for functions cached?

    Obviously, were talking about multi-statement functions, since in-line functions are just views in the end.  My gut feeling for this is ''yes'', but I wanted to be absolutely certain. So here goes: Create a function in Adventureworks Use that function in a SELECT statement Check if a plan exists in the plan cache for above USE ...
    Posted to Tibor Karaszi (Weblog) by TiborKaraszi on June 14, 2007
  • Whats in the default trace?

    As you probably know, there's a trace running by default in SQL Server 2005. The directory for the trace file is the SQL Server log directory, and you can turn off and on this trace with sp_configure. But how do we find out what events and columns are traced to this? We use a trace function ande some trace catalog views: The function ...
    Posted to Tibor Karaszi (Weblog) by TiborKaraszi on March 12, 2007
Powered by Community Server (Commercial Edition), by Telligent Systems
  Privacy Statement