Sign in
SQL Programmability & API Development Team Blog
All posts are AS IS, without any further guarantees or warranties.
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Tags
Misc. Issues
Native Types and Methods
Pages
Procedure Cache
Sorting
SQL CLR Hosting
SQL Exception Handling
SQL Server 2000
SQL Server 2005
XML
Browse by Tags
MSDN Blogs
>
SQL Programmability & API Development Team Blog
>
All Tags
>
misc. issues
Tagged Content List
Blog Post:
Introducing Multiple Active Result Sets (MARS) (2)
pingwang
MARS is a powerful tool, but you may shoot yourself by the foot if you don't use it correctly. In the following several talks, I will talk about how to use MARS safely. This talk will cover the session/request context management. In later talks, I will cover transaction usage, security context usage...
on
23 Jun 2006
Blog Post:
TSQL Basics I: Stored Procedures In An Intrepreted Language
adamp
This series of posts will discuss some TSQL semantics and language features that may confuse some users new to TSQL. Specially those users familiar with other popular imperative programming languages and familiar with the SQL query language, but not familiar with TSQL. In this post I consider some...
on
14 May 2006
Blog Post:
Improving query plans with the SCHEMABINDING option on T-SQL UDFs
TomerV
This blog describes how the SCHEMABINDING option specified during creation of T-SQL UDFs may affect query plans involving these UDFs in SQL Server 2005. Armed with this knowledge, you may find that you can dramatically improvement your query performance for free. Before I jump into the details...
on
12 May 2006
Blog Post:
Predicate ordering is not guaranteed
Jun Fang
A typical programmer may expect that the predicates are always evaluated in the order that they are specified, but this is not true in database systems. For example, for the following clause, where col11 = 5 and convert(int, col2) = 100 programmers may think col11 = 5 is always evaluated first...
on
12 May 2006
Blog Post:
Plan Guides Are Your Best Friends
NaveenP
Plan guides are used to optimize the performace of a query without modifying it. They are intended for advanced users and help in situations where a query submitted through an application can not be changed. For more details on this feature please visit http://msdn2.microsoft.com/en-us/library/ms190417...
on
1 May 2006
Blog Post:
Introducing Multiple Active Result Sets (MARS) (1)
pingwang
MARS is a new programming interface introduced in SQL Server 2005. It enables multiple result sets to exist at the same time for a given connection. To say it in a simple way, you can make a connection to server and then submit multiple requests to server at the same time, and then read results from...
on
1 May 2006
Blog Post:
SQL Server Identity column FAQs
andrewz
Q. How is identity values generated? Does SQL Server internally use lock as synchronization mechanism? A. Identity values are generated in-memory using light-weight synchronization, i.e. Spinlock (roughly speaking, Interlocked* function with yield). When an identity-value is either generated or...
on
3 Apr 2006
Blog Post:
Name resolution, default schema, implicit schema Part IV
andrewz
This post will talk about implicit schema used in compile plan and conclude the topic of Name resolution, default schema, implicit. A compile plan may refer to non-qualified schema object. It needs to record that fact an “implicit” schema is used (Name resolution detect such scenario and default...
on
3 Apr 2006
Blog Post:
Name resolution, default schema, implicit schema Part III
andrewz
It is time to cover name resolution algorithm in SQL 2005 for objects. [ Algorithm] In a nutshell, objects name resolution follows the same rule as types and XML schema collections. However, SQL Server name resolution and execution context used to have special behaviors in SQL2000 as outlined in...
on
3 Apr 2006
Blog Post:
Name resolution, default schema, implicit schema Part II
andrewz
Last section clarified some background, let us continue with Name Resolution Algorithm for Types and XML Schema Collections [Algorithm] As implied by general syntax for referencing entities, types or XML schema collections cannot be referenced across database. If schema name is unspecified, SQL...
on
3 Apr 2006
Blog Post:
Name resolution, default schema, implicit schema Part I
andrewz
This series of blogs describe name resolution behavior of schema objects, types and XML schema collections, and how it interacts with default schema, compile plan implicit schema. The first part will lay some background so that we are at the same page. The following shows the general syntax...
on
3 Apr 2006
Page 1 of 1 (11 items)