• SQL SERVER – Find Automatically Created Statistics – T-SQL

    Updated: 2010-09-10 02:30:10
    Earlier, I wrote about my experience at an organization here: SQL SERVER – Plan Cache – Retrieve and Remove – A Simple Script. This blog post briefly narrates another experience I had at the same organization. When I was there, I also looked at the statistics and found something that I would like to bring [...]

  • What I have been up to,and what I am getting down to

    Updated: 2010-09-10 02:12:53
    So, clearly I haven’t blogged in quite a while, even forgetting to blog about SQL Saturday 51 event we did in Nashville . Honestly I  can’t say much that  wouldn’t sound like bragging. Kevin Kline , Joe Webb , and Christine Leo and a gaggle of speakers, many MVPs, and some of them future MVPs. All of the were actually awesome and made my job easy once I figured out what sessions to choose. Beyond that, I have been speaking at SQL Saturday events pretty much every month, and this month and...(read more)

  • Create chained relationships in PowerPivot

    Updated: 2010-09-09 23:03:00
    If you get an error trying to create chained relationships in PowerPivot (i.e. Customers - Orders - OrderDetails), there is a known issue with a possible workaround. The item is described on Connect, but here is the issue and the workaround: ISSUE: A relationship between two tables A and B cannot be created if a relationship between B and C already exists using the same column in B that is also used to relate B to C. Creating relationship in the opposite order works. Thus, if you create the relationship...(read more)

  • Staying with Subversion or going for Git?

    Updated: 2010-09-09 21:29:00
    I have just attended an excellent presentation on Git, delivered by Scott Chacon , a well-known Git expert. The presentation was excellent: practical recommendations, without marketing, without glossing over problems. I have been using Subversion to store my SQL since at least 2006, probably earlier, 2005-ish. I am quite happy with it. Subversion does everything I need, does not have unnecessary features which get in my way when I need to do something real quick, and it is rock solid. Yet we always...(read more)

  • Databases are the longest-lived component

    Updated: 2010-09-09 14:39:19
    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 Buck Woody Entire Site Search Home Blogs Forums Downloads Opml Buck Woody Carpe Datum Databases are the longest-lived component Most of you know that I write a technical article each week for the InformIT website you can see a list of all my articles here I've been writing for that site for well , a really long time . I have articles all the way back to SQL Server version 7 The question was that we saw a huge uptick for an older SQL Server article there . A question was posed as to whether we should update that article , or remove it since it was on SQL Server 2000. My response No In many firms I work with , the database is the last component to be upgraded . This is true not

  • BI Virtual Chapter: “Adaptive BI: Engineering a BI Solution”

    Updated: 2010-09-09 10:54:27
    : : 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 Davide Mauri Entire Site Search Home Blogs Forums Downloads Opml Davide Mauri A place for my thoughts and experiences on SQL Server , Business Intelligence and NET BI Virtual Chapter : Adaptive BI : Engineering a BI Solution” On the next 20th Semptember I’ll deliver a session on a topic that is IMHO really important but is not yet covered : enough Adaptive BI : Engineering a BI Solution Are you starting to create a BI solution . but where do you begin with How to setup everything correctly so that you'll be able to handle new features required by the customers easily and without too much effort Which standard do you put in place so that everyone who will join the project

  • SQL Azure–what it is and what it isn’t

    Updated: 2010-09-09 05:17:00
    SQL Azure isn’t SQL Server hosted on the internet. It’s a little bit different. After reading lots of printed words about Azure, I decided I wanted a simple visual overview of what it is and what it is not and I’m sharing it with you. I started by connecting to my SQL Azure database using SQL Server 2008 R2 (the free Express edition will work just fine for this). I used the Options button to assign azure as the color of my query window. The RGB values for azure are 240, 255, 255 in case you’re wondering....(read more)

  • Setting the record straight - “So, What is an MVP Anyway?”

    Updated: 2010-09-09 04:51:28
    Today’s SSWUG Newsletter, brought up the topic So, What is an MVP Anyway? , where, what I can only guess is one of the editors, Ben Taylor talks briefly about how he often receives assistance from people in the community that aren’t Microsoft MVP awardees', but to him they are certainly Most Valued People/Professionals.  I don’t have anything wrong with that, there are people I know in the community as well that haven’t been recognized by Microsoft as being a SQL Server MVP, but have nonetheless...(read more)

  • Conor Cunningham speaking to the Adelaide SQL Server User Group

    Updated: 2010-09-09 04:31:00
    The guy behind the Query Optimizer, Conor Cunningham , is speaking on Sep 27 (well, Sep 28 here in Adelaide ) to the User Group in a few weeks’ time. I only wish that he could be there in person, but as he lives in Texas, it’s much cheaper for everyone if he uses LiveMeeting. But it’s still a massive honour, as Conor is one of the most respected and knowledgeable people working in SQL Server anywhere, inside or outside Microsoft. I’ve heard many people refer to his talk at SQLBits VI as the highlight...(read more)

  • SQLAuthority News – Spicejet Complaint – Update – No Outcome

    Updated: 2010-09-09 02:30:22
    Few days ago, I wrote about SQLAuthority News – Spicejet Complain – Do Not Fly with Spicejet. I had written detail report to them with the name of the airport ground staff. I got response from them that they investigated everything and it was just normal delay. Everything was good. There were not issue at [...]

  • Minesweeper in T-SQL

    Updated: 2010-09-08 23:58:28
    Whatever happened to the idea that programming in TSQL can be fun? A Simple-Talk reader contributes an article to remind us all that there is more to TSQL than wrestling with DMVs and pumelling recalcitrant correlated subqueries.

  • The MERGE Statement in SQL Server 2008

    Updated: 2010-09-08 23:58:27
    When the SQL MERGE statement was introduced in SQL Server 2008, it allowed database programmers to replace reams of messy code with something quick, simple and maintainable. The MERGE syntax just takes a bit of explaining, and Rob Sheldon is, as always, on hand to explain with plenty of examples.

  • The DIS-Information Principle, Part II

    Updated: 2010-09-08 23:58:27
    Database design simply involves populating a schema with tables that model sets of entities and relationships. A table will contain Columns that model an entity's attributes and contain scalar values. What could go wrong? Plenty, unfortunately, when these simple principles are misunderstood or flouted, and Joe continues to itemise bad design practices that can cause subsequent grief for the application developers.

  • Rebuilding Indexes using the SSMS Database Maintenance Wizard

    Updated: 2010-09-08 23:58:27
    Index fragmentation can cause problems with query performance. Indexes therefore need to be occasionally rebuilt. the Rebuild Index task of the SSMS Database Maintenance Wizard drops and rebuilds every index in a database. It is effective but an off-line activity that is resource-intensive, so it not always the best way of avoiding index fragmentation in a production database. Brad explains...

  • DMVs for Query Plan Metadata

    Updated: 2010-09-08 23:58:26
    Before you can tackle any performance issues with a working database, you need to know which queries to work on first: The ones that are taking the most time in total, and which are the most expensive in terms of cache, CPU and disk. Although SQL Server Management Studio can help, it isn't long before you need an armoury of DMVs to provide you the statistics to find the culprits.

  • Brad's Sure Guide to SQL Virtual Restore

    Updated: 2010-09-08 23:58:26
    In the first of a series of in-depth software reviews, Brad investigates a newcomer, SQL Virtual Restore. What does it aim to do? How does it achieve it? Why is it safe to use? What are the benefits? Brad aims to answer a range of questions fairly and squarely.

  • SSN Matching Speed Phreakery

    Updated: 2010-09-08 23:58:26
    On Ask.SQLServerCentral.com, a group of people interested in experimenting with heavily optimised SQL techniques try them out on a problem, using reasonbly large amounts of data. They aren't so interested in explaining the techniques, so Kathi continues on her mission to explain the lessons learned and the tips that can be derived.

  • SQL Source Control - no more database development without it

    Updated: 2010-09-08 23:58:25
    John Rummell had a problem that is shared by most database developers. How can one use SQL Server Management Studio to put source control files into a source control system such as SubVersion? The processes he tried were all error-prone and awkward to use. And then he found a solution.

  • Creative Solutions by Using a Number Table

    Updated: 2010-09-08 23:58:25
    One irritating thing for the occasional SQL Server Developer is that the experts assume that you are familiar with the use of number tables when they write about techniques. We therefore asked Greg Larsen to spell it out in a way that would help the beginner and intrigue those already familar with the technique.

  • Product Review: Schema Compare for Oracle

    Updated: 2010-09-08 23:58:24
    One of the more important tasks in the process of rolling out incremental developments to a multi-server production system is to double-check that all of the planned modifications, and nothing else, have been deployed. An Oracle expert, Bruce Armstrong, comes across SQL Compare for Oracle, and sees if it helps with this time-consuming task.

  • VALUES() and Long Parameter Lists

    Updated: 2010-09-08 23:58:24
    To make progress as a relational Database programmer, you have to think in terms of sets, rather than lists, arrays or sequential data. Until that point, you'll feel the need to pass lists, arrays and the like to functions and procedures. Joe suggests some unusual ways around the difficulty and broods on the power of the VALUES constructor.

  • Implementing the OUTPUT Clause in SQL Server 2008

    Updated: 2010-09-08 23:58:24
    In retrospect, it was probably the inclusion of the OUTPUT clause in the MERGE statement that gave SQL Server 2008 its most powerful SQL enhancement.. It isn't the easiest of features to explain, but Bob does it in his usual clear and careful way.

  • SQL Server CRUD-Generation from System Views

    Updated: 2010-09-08 23:58:23
    If you are not keen on repetitive typing, you can still rapidly produce production-quality documented code by planning ahead and using Extended properties, and system views. Phil Factor explains, with some Scary SQL

  • Database Source Control - The Cribsheet

    Updated: 2010-09-08 23:58:23
    As part of our long-running Cribsheet series, we asked William to come up with a brief summary of what was involved in bringing database development work under source control. What are the advantages it brings, and are there disadvantages?

  • Automate and Improve Your Database Maintenance Using Ola Hallengren's Free Script

    Updated: 2010-09-08 23:58:23
    If you ever feel uneasy when you set about handcrafting database maintenance jobs for SQL Server, it may be the voice of your conscience saying 'Ola, Ola!'. Follow your conscience. Ola Hallengren has already crafted a superb set of routines to do this for you. Why reinvent something that does it all, safely and well. Brad McGehee explains....

  • Do you remember Database Gateways?

    Updated: 2010-09-08 20:04:00
    I replied to a question in a forum today about intercepting and changing a SQL query, before it reaches SQL Server. I started typing a reply, and realized that... wow... "Does this take me on a trip down memory lane, or what!". So, just for fun, here is what I wrote (slightly modified): There used to be products on the market, called "Database Gateways", something that looks like one type of DBMS but actually accepts the SQL queries and submits them to some other type of DBMS. Basically an "in between"...(read more)

  • Speaking about Source Control for DBAs

    Updated: 2010-09-08 18:35:00
    Brian Davis and I will be presenting a session on managing database change via source control tomorrow evening. Developers use source control consistently and with great success, but database change has been resistant to it, largely because the change involves much more than just the scripts. We'll discuss this, and show you how to use both Visual Studio Team System, and Red Gate's new SQL Source Control product. The discussion and demo will be presented at the Northeast Ohio SQL Server Users Group...(read more)

  • SQL SERVER – Find Row Count in Table – Find Largest Table in Database – Part 2

    Updated: 2010-09-08 02:30:06
    Last Year I wrote article on the subject SQL SERVER – Find Row Count in Table – Find Largest Table in Database – T-SQL. It is very good to see excellent participation there. In my script I had not taken care of table schema. SQL Server Expert Ameena has modified the same script to include [...]

  • See You in St Louis, and then London, Amsterdam, Copenhagen, Stockholm, and York, UK

    Updated: 2010-09-07 21:55:00
    , , , , , , 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 Kevin Kline Entire Site Search Home Blogs Forums Downloads Opml Kevin Kline See You in St Louis , and then London , Amsterdam , Copenhagen , Stockholm , and York , UK Good grief , there's a lot of travel in my future . Meet Me In St . Louis I'll be speaking in St . Louis , MO on Tuesday , September 14th for their mid-day meeting . The details , as I have them , are : Tuesday , September 14, 2010 1-4pm Location : Microsoft St . Louis Office , Three City Place Drive , Suite 1100, St . Louis , MO 63141 http : www.microsoft.com about companyinformation usaoffices northcentral stlouis.mspx Parking is in the garage behind next to the building . There is an entrance to

  • Presenting the Importance of Good Metadata Management 8 Sep 2010!

    Updated: 2010-09-07 17:00:00
    In the second part of our series on building a scalable, enterprise-class data warehouse for SQL Server, expressor 's ( blog | @expressor ) Mike Ruland ( @mruland ) and I present the importance of good metadata management tomorrow at 12:00 PM EDT. Metadata is important and hard to manage. Mike and I define metadata and talk about the many places metadata is used in data warehousing. Sound interesting? Register here . Hope to see you there! :{> Andy...(read more)

  • Presenting at SQL Saturday #46 Raleigh 18 Sep 2010!

    Updated: 2010-09-07 12:00:00
    I am honored to present at SQL Saturday #46 in Raleigh 18 Sep 2010! I get to deliver two talks: Building Your First SSIS Package (Beginner) Database Design for Developers (Intermediate) If you read this blog and will be attending SQL Saturday #46 , introduce yourself! :{> Andy...(read more)

  • Speaking at SQL Saturday #48

    Updated: 2010-09-07 03:59:32
      The schedule for SQL Saturday #48 is now up at http://www.sqlsaturday.com/schedule.aspx?eventid=85 .  There will be a bunch of good speakers and sessions in Columbia, SC. on October 2nd 2010 so check it out....(read more)

  • SQL SERVER – Index Levels and Delete Operations – Page Level Observation

    Updated: 2010-09-07 02:30:27
    I wrote an article before on SQL SERVER – Index Levels, Page Count, Record Count and DMV – sys.dm_db_index_physical_stats. In that article, I promised that I would give a follow up post with a few more interesting details. I suggest that you go over the earlier article first to understand the details on B-Tree and [...]

  • SQL Server 101: Back to Basics at SQL Bits

    Updated: 2010-09-07 01:47:30
    : 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 Buck Woody Entire Site Search Home Blogs Forums Downloads Opml Buck Woody Carpe Datum SQL Server 101 : Back to Basics at SQL Bits I'm traveling to the United Kingdom York , England , to be specific in September , joining Brent Ozar , Brad McGehee , Kevin Kline , Simon Sabin and a host of other top-notch speakers . They will be covering deep technical topics ranging from server health checks to SANs and Virtualization . So what will I be talking about SQL Server 101. Every time I attend a conference like this , I'm amazed at the depth of technical information you can learn about . And for those of us who make a living at SQL Server , they are a great bargain you get a

  • Passion

    Updated: 2010-09-06 12:00:00
    Introduction This post is the twenty-fourth part of a ramble-rant about the software business. The current posts in this series are: Goodwill, Negative and Positive Visions, Quests, Missions Right, Wrong, and Style Follow Me Balance, Part 1 Balance, Part 2 Definition of a Great Team The 15-Minute Meeting Metaproblems: Drama The Right Question Software is Organic, Part 1 Metaproblem: Terror I Don't Work On My Car A Turning Point Human Doings Everything Changes Getting It Right The First Time One-Time...(read more)

  • SQL SERVER – Index Created on View not Used Often – Limitation of the View 3

    Updated: 2010-09-06 02:30:53
    I have heard many people saying that if they create view and index on it, this will reduce the load on original table as all the subsequent queries on view will not access the basic table. This is not true always and the view may not give you the performance optimizations which you are looking [...]

  • SQL SERVER – Few Notes on Fast Track Data Warehouse

    Updated: 2010-09-05 02:30:05
    I recently delivered fast track data warehouse training. This training was very challenging as this training requires very specific hardware and extremely different way of looking at data warehousing. While training I have made few notes and I will now share the same notes with you. Please note that this are just notes and not [...]

  • SQLAuthority News – Social Media Confusion – Twitter, FaceBook, LinkedIn and Me

    Updated: 2010-09-04 02:30:42
    No story today – I am sure all of you know what I want to talk today. I am indeed not happy with how social media is evolving. There was a time when every social media has its own style and concept. Today wherever I go, I see the same thing. Same news, same update [...]

  • Final Update of the Rough Cuts of our PowerPivot book available!

    Updated: 2010-09-03 21:39:07
    The upcoming book Microsoft PowerPivot for Excel 2010: Give Your Data Meaning that I wrote with Marco is its final stage. You can see the final update through the “ Rough Cuts ” initiative by O’Reilly. The book will be available in bookstores in the first days of october....(read more)

  • 24 Hours of PASS - Presenting Some Thoughts on Managing Teams

    Updated: 2010-09-03 12:00:00
    I am honored to present Some Thoughts on Managing Teams at the Fall 24 Hours of PASS event 15 - 16 Sep 2010. Are you a member of a team of database professionals? Are you part of a developer team? Do you manage or lead a team? This presentation is for you! I share experiences, war stories, and lessons learned from years of managing and leading teams. Register today! :{> Andy...(read more)

  • SQL SERVER – Soft Delete – IsDelete Column – Your Opinion

    Updated: 2010-09-03 02:30:47
    Just a day ago, I was reading the blog post of Michale J Swart. If you are a regular reader of this blog, I am sure you will be familiar with him. He is a very interesting blogger for sure. He recently wrote an article about Ten Things I hate to See in T-SQL; it [...]

  • Quote of the Day: On the Efficiency of Government

    Updated: 2010-09-03 01:45:32
    "If you put the federal government in charge of the Sahara Desert, in ive years there'd be a shortage of sand." - Milton Friedman

  • Draft SQLRally Pre-Conference Seminar Proposal

    Updated: 2010-09-02 12:00:00
    Introduction Andy Waren ( Blog | @sqlAndy ), Jack Corbett ( Blog | @unclebiguns ), and Kendall Van Dyke ( Blog | @SQLDBA ) have been busy. They're working on SQLRally - a regional PASS event scheduled for May 2011 in Orlando. Andy does a good job explaining the thinking behind the event in his 31 Aug 2010 post: Positioning SQLRally in the PASS Event Universe . Pre-Cons Andy's 1 Sep 2010 post on the topic ( SQLRally Pre-Con Selection Process – Draft for Comment ) includes a draft document outlining...(read more)

  • SQLAuthority News – SQL Server Health Check Service – Speed UP SQL Server

    Updated: 2010-09-02 02:30:23
    In my earlier article SQLAuthority News – Training and Consultancy and Travel – Story of Last 30 Days I had mentioned that I prefer to do 50% consultation and 50% training. Since then I often receive what do I do consultation for and what is my expertise. I am basically man of the performance tuning. [...]

  • Dealing with Data: Defining the Components to Tune

    Updated: 2010-09-02 01:21:05
    : 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 Buck Woody Entire Site Search Home Blogs Forums Downloads Opml Buck Woody Carpe Datum Dealing with Data : Defining the Components to Tune I've been reading a fascinating article about the Large Hadron Collider , or LHC facility . It's a scientific research facility that houses a particle collider , which generates an incredible amount of data . Their original plan was to stream the data to tape , then sending the data to islands closer to the users , offloading the network as quickly as possible . But they found that the network could handle the streaming better than they thought so they now stream the data directly to the users , saturating the network . It's a new way of

  • SQLAuthority News – Fathers and Daughters

    Updated: 2010-09-01 02:30:43
    Today I am very happy as my daughter is one year old. I have no words to explain how lucky I am to be father of daughter. She is everything to me and my wife have (sweet) complain that I stopped paying attention to her since our daughter has arrived. Check out here one year [...]

  • SQLAuthority News – A Monthly Round Up of SQLAuthority Blog Posts – August 2010

    Updated: 2010-08-31 02:30:06
    Monthly round ups are very refreshing as it gives me chance to go back and see what did I do in last month. The highlight of the last month is the my computed column series and its final installment. If you have not followed up on it I suggest you read SQL SERVER – Computed [...]

  • How to calculate Median in SQL Server

    Updated: 2010-08-30 05:00:00
    Jeff's SQL Server Blog Random Thoughts Cartesian Products with Microsoft SQL Server posts 156, comments 2683, trackbacks 64 My Links Home Contact Blog RSS Feed Login SQLTeam.com SQLTeam.com Weblogs Advertisement News Welcome to my weblog . My name is Jeff Smith , I am software developer in Boston , MA and I was recently named a 2009 SQL Server MVP . Check in frequently for tips , tricks , commentary and ideas on SQL Server and NET programming . Subscribe Archives August , 2010 1 November , 2009 2 October , 2009 1 December , 2008 1 October , 2008 2 August , 2008 3 July , 2008 3 June , 2008 3 May , 2008 4 April , 2008 2 March , 2008 2 February , 2008 9 January , 2008 3 December , 2007 3 November , 2007 2 October , 2007 8 September , 2007 4 August , 2007 5 July , 2007 11 June , 2007 8 May ,

  • SQLAuthority News – SQL Server Performance Optimization – Seminar Series

    Updated: 2010-08-30 02:30:11
    I am very glad that I will be presenting my very first seminar training series worldwide. This event is called the Solid Quality DIRECTIONS Seminar Series. I am very fortunate that I am given this opportunity to work under prestigious organizations. I have been with Solid Quality Mentors for more than a year now. I [...]

  • SQLAuthority News – Download – SQL Server Monitoring Management Pack

    Updated: 2010-08-29 02:30:06
    The SQL Server Management Pack provides the capabilities for Operations Manager 2007 SP1 and R2 to discover SQL Server 2005, 2008, and 2008 R2. It monitors SQL Server components such as database engine instances, databases, and SQL Server agents. The monitoring provided by this management pack includes performance, availability, and configuration monitoring, performance data collection, [...]

  • SQL SERVER – Plan Cache – Retrieve and Remove – A Simple Script

    Updated: 2010-08-28 02:30:21
    I had a very interesting situation at my recent performance tuning project. I realize that the developers there were running very large dataset queries on their production server randomly. I got alarmed so I suggested their developer not to do that on the production server; instead, they could create some alternate scenarios where they could [...]

  • SQLAuthority News – Spicejet Complain – Do Not Fly with Spicejet

    Updated: 2010-08-27 02:30:50
    Years ago I had written about the subject SQLAuthority News – Airline Review – Paramount, Kingfisher, Go Air, Indigo, Jet Airways, Indian Airlines, Spicejet; today this blog post confirms that there is no change in my ranking. There is one change I would like to propose: Remove Spicejet from ranking completely! My recent experience with [...]

  • SQL SERVER – Adding Column is Expensive by Joining Table Outside View – Limitation of the Views Part 2

    Updated: 2010-08-26 02:30:29
    Note: I have updated the title based on feedback of Davide Mauri (Solid Quality Mentors). Thank you for your help. Let’s see another reason why I do not like Views. Regular queries or Stored Procedures give us flexibility when we need another column; we can add a column to regular queries right away. If we [...]

  • SQL SERVER – Does Order of Column in WHERE clause Matter?

    Updated: 2010-08-25 02:30:19
    Today is quick puzzle time. Does the order column used in WHERE clause matter for performance? I recently heard from someone it does matter and a senior SQL person was able to reproduce it, but again I have no proof for it and I have not seen it before. Here are the rules for you [...]

  • SQLAuthority News – Download Microsoft SQL Server Migration Assistant

    Updated: 2010-08-24 02:30:33
    SSMA for Oracle v4.2 Microsoft SQL Server Migration Assistant (SSMA) is a toolkit that dramatically cuts the effort, cost, and risk of migrating from Oracle to SQL Server 2005, SQL Server 2008 or SQL Server 2008 R2. SSMA for Access v4.2 Microsoft SQL Server Migration Assistant (SSMA) is a toolkit that dramatically cuts the effort, [...]

  • SQLAuthority News – Feedback Received for Virtual Tech Days Sessions on Spatial Database

    Updated: 2010-08-24 02:30:14
    I recently got opportunity to speak at Virtual Tech Days on August 18, 2010 on the subject Spatial Database. The event was heavily attended by enthusiasts world wide. I delivered session the on the subject of Spatial Database and it was great fun to deliver the session. I have delivered similar session many times before [...]

  • SQL SERVER – ORDER BY Does Not Work – Limitation of the Views Part 1

    Updated: 2010-08-23 02:30:14
    Recently, I was about the limitations of views. I started to make a list and realized that there are many limitations of the views. Let us start with the first well-known limitation. Order By clause does not work in View. I agree with all of you  who say that there is no need of using [...]

  • SQL SERVER – Computed Columns – Index and Performance

    Updated: 2010-08-22 02:30:22
    This is the last article in the series of the computed columns I have been writing. Here are previous articles. SQL SERVER – Computed Column – PERSISTED and Storage This article talks about how computed columns are created and why they take more storage space than before. SQL SERVER – Computed Column – PERSISTED and [...]

  • SQL SERVER – Computed Column – PERSISTED and Storage – Part 2

    Updated: 2010-08-21 02:30:44
    I am really enjoying writing about computed column and its effect in terms of storage. Before I go on with this topic, I suggest you read the earlier articles about computed column to get the complete context. This is the list of the all the articles in the series of computed column. SQL SERVER – [...]

  • SQL SERVER – Function to Retrieve First Word of Sentence – String Operation

    Updated: 2010-08-20 02:30:08
    I have sent of function library where I store all the UDF I have ever written. Recently I received email from my friend requesting if I have UDF which manipulate string and returns only very first word of the statement. Well, I realize that I do not have such a script at all. I found [...]

  • SQL SERVER – Negative Identity Seed Value and Negative Increment Interval

    Updated: 2010-08-19 02:30:51
    I just had interesting conversation with one of my friend who said identity value can not start from Zero. I told him that it can even start from negative value. He did not believe it. I quickly come with example and he was surprised to see it. USE [AdventureWorks] GO IF EXISTS (SELECT * FROM [...]

  • SQL SERVER – Download SQL Server 2008 Interview Questions and Answers Complete List

    Updated: 2010-08-18 02:30:42
    I was getting many request to update SQL Server Interview Questions and Answers I had written couple of years ago. I have modified the original document a bit and corrected few of the typos and errors. I have really enjoyed going over all the Interview Questions and Answers. It has been the most popular subject [...]

Previous Months Items

Aug 2010 | Jul 2010 | Jun 2010 | May 2010 | Apr 2010 | Mar 2010