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
May 2012
(3)
April 2012
(2)
March 2012
(2)
February 2012
(8)
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?
Blog - Title
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
How the density and distribution of data in the leading key column of an index affects the degree of parallelism chosen for index operations targeting that index?
Posted
19 hours ago
by
Nacho Alonso Portillo
0
Comments
There’s a topic in SQL Server’s documentation whose title is Configuring Parallel Index Operations , which mentions that the Database Engine can reduce the degree of parallelism if the leading key column of a non-partitioned index has a limited number...
La bodeguita de Nacho
DBCC DBRECOVER finally removed from SQL Server
Posted
16 days ago
by
Nacho Alonso Portillo
0
Comments
For those of you who relied on that command, typically used in data recovery learning labs, just wanted to warn you, if you haven’t noticed already, that it has been removed from the product starting with SQL Server 2012 RTM. The supported way to do what...
La bodeguita de Nacho
The seven reasons why Auto Update Stats event will not trigger despite how many modifications affect any of the tables involved in a compiled plan?
Posted
26 days ago
by
Nacho Alonso Portillo
0
Comments
A colleague from PFE recently asked the following: ****************************** Hi Folks, I’m trying to find out when the Auto Update Stats event is generated assuming Auto Update Stats and Auto Create Stats db options are enabled. As far as I know...
La bodeguita de Nacho
How the query execution engine calculates the threshold it uses to detect inaccurate cardinality estimation and fire the inaccurate_cardinality_estimate extended event?
Posted
1 month ago
by
Nacho Alonso Portillo
1
Comments
Starting with SQL Server 2012, the query engine folks introduced an extended event, inaccurate_cardinality_estimate, you can use to identify those running queries for which any of its iterators outputs significantly more rows than those estimated by the...
La bodeguita de Nacho
Want your SQL Server to simply ignore the AUTO_CLOSE setting, for all open databases for which it has been enabled?
Posted
1 month ago
by
Nacho Alonso Portillo
0
Comments
Under normal circumstances, once there is no one referencing any object from a database whose AUTO_CLOSE option is enabled, the database manager would attempt to close it (with the exception of master, tempdb and model system databases). But if you want...
La bodeguita de Nacho
What’s in Enterprise only? (Change Data Capture)
Posted
2 months ago
by
Nacho Alonso Portillo
0
Comments
Starting with version 2008, SQL Server introduced a feature called Change Data Capture which provides information about DML changes on a table and a database. Change Data Capture eliminates the need to use expensive techniques such as user triggers, timestamp...
La bodeguita de Nacho
What’s in Enterprise only? (Transparent Data Encryption)
Posted
2 months ago
by
Nacho Alonso Portillo
0
Comments
Starting with version 2008, SQL Server solves the problem of protecting data at rest, encrypting databases both on the hard drive and consequently on backup media. To benefit from this out of the box functionality though, you must be running the Enterprise...
La bodeguita de Nacho
VDI Backups and Backup Compression Default
Posted
3 months ago
by
Nacho Alonso Portillo
0
Comments
This week I was in a customer measuring the effects it would have, in one particular environment where they were using SQL Server 2008 R2 Enterprise, if they would compress their backups. To start with, we ran a few tests using BACKUP DATABASE & BACKUP...
La bodeguita de Nacho
What’s in Enterprise only? (Database Snapshot)
Posted
3 months ago
by
Nacho Alonso Portillo
0
Comments
If you require one or more read-only, static views of a database, which is transactionally consistent with the source database at the moment the static view was created, beginning with SQL Server 2005 you can take advantage of Database Snapshots , which...
La bodeguita de Nacho
What’s in Enterprise only? (Support for Data Compression & Vardecimal Storage Format)
Posted
3 months ago
by
Nacho Alonso Portillo
0
Comments
Starting with version 2008, SQL Server supports both row and page compression for both tables and indexes . Also SQL Server 2008 R2 continues to support, although it has been deprecated, the vardecimal storage format that was introduced with SQL Server...
La bodeguita de Nacho
Vegan/Vegetarian restaurants in Madrid
Posted
3 months ago
by
Nacho Alonso Portillo
0
Comments
A recurring question I receive from colleagues at work, or from friends I know from elsewhere is, where to go in Madrid to enjoy a vegan/vegetarian meal either for themselves or to take someone who is paying them a visit. Following is a compiled list...
La bodeguita de Nacho
What’s in Enterprise only? (Up to 8 CPU sockets)
Posted
3 months 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
3 months 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 months 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
3 months 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
4 months 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
4 months 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
4 months 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
4 months 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
4 months 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
4 months 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
4 months 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
4 months 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
5 months 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
5 months 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...
Page 1 of 5 (113 items)
1
2
3
4
5