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
Options
About
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
Misc. Issues
Native Types and Methods
Pages
Procedure Cache
Sorting
SQL CLR Hosting
SQL Exception Handling
SQL Server 2000
SQL Server 2005
XML
Archive
Archives
June 2009
(1)
May 2009
(1)
April 2009
(1)
March 2009
(1)
February 2009
(1)
January 2009
(1)
November 2008
(1)
October 2008
(1)
August 2008
(1)
July 2008
(1)
June 2008
(1)
May 2008
(1)
March 2008
(3)
February 2008
(1)
June 2007
(2)
April 2007
(1)
March 2007
(1)
February 2007
(2)
January 2007
(18)
December 2006
(1)
November 2006
(1)
October 2006
(1)
September 2006
(1)
August 2006
(1)
July 2006
(2)
June 2006
(10)
May 2006
(8)
April 2006
(18)
March 2006
(4)
March, 2006
MSDN Blogs
>
SQL Programmability & API Development Team Blog
>
March, 2006
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
SQL Programmability & API Development Team Blog
Server Side Error Handling - Part 1 (Migrating from @@error to tsql try-catch)
Posted
over 6 years ago
by
NaveenP
0
Comments
Tsql try-catch was added to improve server side error handling in sql server 2005. This feature should have been part of early T-Sql. Better late than never. In absence of tsql try-catch, server-side error handling was done using @@error. This had...
SQL Programmability & API Development Team Blog
Host Policy level Permission Sets and their permissions
Posted
over 6 years ago
by
RaviR
0
Comments
While there is guidance on how to use the various permission sets - SAFE, EXTERNAL_ACCESS, UNSAFE , a list of the various permissions granted in these three helps clear their definitions. SAFE: Code that has this permission set is only allowed to execute...
SQL Programmability & API Development Team Blog
Multiplication and Division with Numerics
Posted
over 6 years ago
by
mathh
1
Comments
It can be surprising to see certain results when doing numeric arithmetic: declare @num1 numeric(38,10) declare @num2 numeric(38,10) set @num1 = .0000006 set @num2 = 1.0 select cast( @num1 * @num2 as numeric(38,10)) Yields: .0000010000 Instead...
SQL Programmability & API Development Team Blog
Newsequentialid (Histrory/Benefits and Implementation)
Posted
over 6 years ago
by
dragant
15
Comments
In general, we made significant improvements in SQL Server scalability during Yukon . One of the areas of improvement is replication scalability. While doing merge replication testing we found out that scaling was severely affected by high number of I...
Page 1 of 1 (4 items)