Sign In
MSDN Blogs
Microsoft Blog Images
More ...
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
Common Tasks
Email Blog Author
About
RSS for posts
Atom
Archives
Archives
February 2012
(4)
January 2012
(8)
December 2011
(14)
November 2011
(7)
October 2011
(5)
September 2011
(3)
August 2010
(1)
July 2010
(3)
June 2010
(4)
May 2010
(4)
May 2008
(1)
February 2008
(6)
January 2008
(3)
December 2007
(25)
November 2007
(14)
Visitors log
Where you folks come from?
MSDN Blogs
>
La bodeguita de Nacho
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
La bodeguita de Nacho
What’s in Enterprise only? (Up to 8 CPU sockets)
Posted
12 hours ago
by
Nacho Alonso Portillo
0
Comments
Each edition of SQL Server supports a specified number of processor sockets multiplied by the number of logical CPUs in each socket. The Enterprise Edition of SQL Server supports up to 8 CPU sockets, while the Standard only supports up to 4. All this...
La bodeguita de Nacho
Backup Compression and Checksum
Posted
2 days ago
by
Nacho Alonso Portillo
0
Comments
Notice that when I wrote this repro and captured the screenshots available below, I didn’t think they will be rendered in this blog. Unfortunately, you will have to click on each image to be able to read the descriptions of every relevant chunk of data...
La bodeguita de Nacho
ALTER TABLE SWITCH fails with 4947 even when all the publicly exposed metadata for the indexes in source and target tables perfectly match
Posted
3 days ago
by
Nacho Alonso Portillo
0
Comments
A colleague who is a consultant in Chile, reported a weird scenario he was observing in one customer and for which he couldn’t articulate an explanation. I saw his question posted in one of our internal distribution lists but couldn’t put...
La bodeguita de Nacho
What’s in Enterprise only? (Fuzzy Lookup Transformation in Integration Services)
Posted
7 days ago
by
Nacho Alonso Portillo
0
Comments
Fuzzy Lookup is a component which, when used as part of a data flow in an SSIS (SQL Server Integration Services) package, enables you to locate matching records in a reference table just like the standard Lookup transformation does, with the added value...
La bodeguita de Nacho
What’s in Enterprise only? (Hot add CPU)
Posted
14 days ago
by
Nacho Alonso Portillo
0
Comments
Starting with SQL Server 2008 the product supports the ability to start using or stop using CPUs that are dynamically added or removed to a running system, either physically, logically (by online hardware partitioning), or virtually through a virtualization...
La bodeguita de Nacho
Glitch in SMO causes an error when you attempt to create an FTS Catalog/Table Population Schedule under very specific circumstances
Posted
15 days ago
by
Nacho Alonso Portillo
0
Comments
If you connect from SQL Server Management Studio (SSMS) to an instance of SQL Server, whether it is named or default, and rather than using the proper machine name (or machine name followed by the instance name, separated by the backslash) you use either...
La bodeguita de Nacho
Reducing the number of queue readers via MAX_QUEUE_READERS parameter might take long time to take effect if there are many messages in the queue
Posted
17 days ago
by
Nacho Alonso Portillo
0
Comments
This is another issue that was kindly exposed by our colleague, John Huang , from Canada, through the MCM community distribution list. Once an activated stored procedure finishes its execution, Service Broker runtime code doesn’t verify whether the maximum...
La bodeguita de Nacho
Duration of schema locks for certain DML operations might not work as expected
Posted
18 days ago
by
Nacho Alonso Portillo
0
Comments
John Huang , a colleague from the MCM community , recently exposed to the rest of us a weird case which he decided to present as an “Interesting blocking issue”. I don’t know the exact details of what he was trying to implement, but basically, he had...
La bodeguita de Nacho
Expected behavior of INSERT into views with Instead Of Insert Triggers
Posted
19 days ago
by
Nacho Alonso Portillo
0
Comments
The INSTEAD OF INSERT Triggers topic in the documentation describes the following: An INSERT statement that is referencing a view that has an INSTEAD OF INSERT trigger must supply values for every view column that does not allow nulls . This includes...
La bodeguita de Nacho
What’s in Enterprise only? (View Substitution Implicitly Allowed)
Posted
21 days ago
by
Nacho Alonso Portillo
0
Comments
As with any index, SQL Server can decide to use an indexed view (materialized views) in its query plan only if the query optimizer determines it is beneficial to do so . Indexed views can be created in any edition of SQL Server. But only in the Enterprise...
La bodeguita de Nacho
What’s in Enterprise only? (honor Lazy Schema Validation option in a Linked Server)
Posted
28 days ago
by
Nacho Alonso Portillo
0
Comments
Together with the definition of each linked server goes a series of options that control different behavioral aspects of the way the linking server interacts with the linked one. Among those options there us one called “lazy schema validation”...
La bodeguita de Nacho
What’s in Enterprise only? (Updatable Distributed Partitioned Views)
Posted
1 month ago
by
Nacho Alonso Portillo
0
Comments
SQL Server can use read-only distributed partitioned views as a scale out mechanism , but any attempt to update any of these heterogeneous objects will fail with error 4451 (Views referencing tables on multiple servers are not updatable in the edition...
La bodeguita de Nacho
What’s in Enterprise only? (Online Index Operations)
Posted
1 month ago
by
Nacho Alonso Portillo
0
Comments
Starting with SQL Server 2005 you can create, rebuild, or drop indexes while concurrent users read or modify the underlying table or clustered index data and any associated nonclustered indexes during these index operations. This mode of performing index...
La bodeguita de Nacho
What’s in Enterprise only? (Partitioned Tables and Indexes)
Posted
1 month ago
by
Nacho Alonso Portillo
1
Comments
Starting with version 2005, SQL Server introduces the concept of partitioned tables and indexes. Partitioning can make large tables and indexes more manageable and scalable. By using partitioning, an operation such as loading data from an OLTP to an OLAP...
La bodeguita de Nacho
Why is the column named “Microsoft SQL Server 2005 XML Showplan” despite the version producing it is not 2005?
Posted
1 month ago
by
Nacho Alonso Portillo
0
Comments
This is something many users point out as a defect, but which is not. It is the fact that despite the version of SQL Server you are using, the column produced by SET SHOWPLAN_XML or SET STATISTICS XML containing the query plan, is named “Microsoft...
La bodeguita de Nacho
Under which circumstances would Activity Monitor display duplicate rows in the Processes section?
Posted
1 month ago
by
Nacho Alonso Portillo
0
Comments
There are two reasons why Activity Monitor would show duplicate rows in its Processes area, just like in the following screen capture: The first and most commonly known is if that session is executing a parallel query plan, where one or more...
La bodeguita de Nacho
Clicking on the XML link containing a query plan doesn’t display the graphical plan but opens the XML editor instead
Posted
1 month ago
by
Nacho Alonso Portillo
0
Comments
Recent Note: SQL Server 2008 R2 Service Pack 1 Cumulative Update 4 (10.50.2796.0) is the first build servicing showplanxml.xsd with the updated version. So, install that CU to get rid of this problem. Last week, while working with a customer in the optimization...
La bodeguita de Nacho
What’s in Enterprise only? (Concurrent, Shared, or Merry-go-round Scans)
Posted
1 month ago
by
Nacho Alonso Portillo
0
Comments
When a new scan is started on any given B-Tree, SQL Server checks whether the new scan can consume items in any order (non-deterministic) and whether another scan is already active for the same object. If that’s the case, the scans are linked together...
La bodeguita de Nacho
How can you drop the witness of a mirroring session when the partners have been dismantled?
Posted
1 month ago
by
Nacho Alonso Portillo
0
Comments
A colleague of mine described the following situation: Long time ago they setup a database mirroring environment with 3 servers (2 partners + a witness). Then they changed their mind and decided that clustering fit better their HADR necessities. So...
La bodeguita de Nacho
The Read Ahead that doesn’t count as Read Ahead
Posted
2 months ago
by
Nacho Alonso Portillo
0
Comments
As you may know from having read the documentation, whitepapers, or personal synthetic experiments, SQL Server’s Storage Engine supports a performance optimization mechanism named read-ahead (RA for short). Its aim is anticipating the data and index pages...
La bodeguita de Nacho
What’s in Enterprise only? (Log manager uses locked pages for log cache buffers)
Posted
2 months ago
by
Nacho Alonso Portillo
0
Comments
Beginning with SQL Server 2008 R2, log manager uses locked pages whenever possible for log cache buffers. This improves performance because the kernel of the OS doesn't need to lock these buffers during IO. The improvement effects may vary depending on...
La bodeguita de Nacho
Programmatically enabling/disabling SQL Native Client Protocols
Posted
2 months ago
by
Nacho Alonso Portillo
0
Comments
SQL Server Configuration Manager uses the WMI provider for Configuration Management. More specifically, it uses the SetEnable/SetDisable methods of the ClientNetworkProtocol class. The following PowerShell script will leverage that class to enumerate...
La bodeguita de Nacho
What is the expected behavior from an attempt to enable a trace flag which is not defined in the targeted version of the product?
Posted
2 months ago
by
Nacho Alonso Portillo
2
Comments
Imagine, for example, that you run DBCC TRACEON(1117, -1) to globally enable trace flag 1117 on an instance of SQL Server 2005, where it had no effect because nowhere in the Database Engine’s code honored such flag. We could then say trace flag...
La bodeguita de Nacho
What on Earth is causing this “Incorrect Syntax near ‘)’” error?
Posted
2 months ago
by
Nacho Alonso Portillo
0
Comments
A colleague of mine exposed, a few days ago, a situation where his customer had some scripts they ran successfully against a SQL Server 2008 R2 instance they had in production. No errors there… happy and easy life. One day they decided to run those scripts...
La bodeguita de Nacho
What’s in Enterprise only? (Running DBCC CHECK* in parallel)
Posted
2 months ago
by
Nacho Alonso Portillo
0
Comments
Parallelizing the execution of DBCC CHECK* can give a significant performance boost to its execution and significantly reduce run times (especially if the objects stored in the database are spread across multiple files so the IOs can also be parallelized...
Page 1 of 5 (102 items)
1
2
3
4
5