Archives: February 2012
AdventureWorks in SQL Server 2012 RC0
The sample databases for SQL Server 2012 haven’t been completely finalized, but I was able to find the latest version here for AdventureWorks. This download gives you an mdf, and that’s it. You can’t directly attach that in SSMS, but you can use T-SQL to do it.
CREATE DATABASE… Read more
1 comments, 737 reads
Posted in The Voice of the DBA on 29 February 2012
Statistics Enhancements in SQL Server 2012
Today I want to talk about Statistics Enhancements in SQL Server 2012. As you already know SQL Server uses Statistic Objects in a database to estimate the cardinality of queries. The cardinality estimation is the input for the generation of the physical Execution Plan of a given T-SQL query. Data… Read more
0 comments, 1,276 reads
Posted in Klaus Aschenbrenner on 29 February 2012
Download free eBook for SQL Server 2012
0 comments, 935 reads
Posted in SQL Server Citation - SQL Blog by Hemantgiri S. Goswami, SQL MVP on 29 February 2012
PASS SQLRally Dallas 2012 Pre-Con: How to Perform a SQL Server Health Check
If you are attending the PASS SQLRally this May in Dallas, I will be presenting a one day preconference session called “How to Perform a SQL Server Health Check”. Here’s the abstract for the session:
Are all the SQL Server instances you manage healthy, running optimally, and providing the high…
0 comments, 830 reads
Posted in SQL Aloha on 29 February 2012
Azure is Down
I saw a note about an outage on Windows Azure, apparently one that’s been going on for seven hours. Once again it seems that February 29 has struck again with a computer issue, and it makes me worry that if we mess with daylight savings time, we might have… Read more
0 comments, 589 reads
Posted in The Voice of the DBA on 29 February 2012
SQL Server 2012 (“Denali”): Extended Events
Extended Events is a general event-handling system for performance monitoring that was introduced in SQL Server 2008. It has a highly scalable and highly configurable architecture that allows users to collect as much or as little information as is necessary to troubleshoot or identify a performance problem.
While there are… Read more
0 comments, 931 reads
Posted in James Serra's Blog on 29 February 2012
A Script A Day - Day 27 - Missing Database Backups
0 comments, 625 reads
Posted in SQL Server 365 on 29 February 2012
A Script A Day - Day 26 - RESTART a Database Restore
0 comments, 690 reads
Posted in SQL Server 365 on 29 February 2012
Script SQL Server Agent Jobs Using PowerShell
It’s that time of the month again, no not that one, it’s T-SQL Tuesday time and this weeks topic is hosted by Wayne Sheffield (blog|twitter).
If you don’t know what T-SQL Tuesday is, you’re either new to the SQL community or have had your head buried… Read more
21 comments, 827 reads
Posted in John Sansom - SQL Server DBA in the UK on 29 February 2012
A Script A Day - Day 25 - Performance Counters
0 comments, 751 reads
Posted in SQL Server 365 on 29 February 2012
Write a Variable To a File Using SSIS
Problem
I’ve a SSIS package. When it fails execution, I want to write a custom message including the package name and error description to a text file.
Solution
One way to accomplish this is to declare a variable, populate it with the message you want, and write it’s value to… Read more
1 comments, 1,267 reads
Posted in Sam Vanga's SQL on 29 February 2012
What I Want For My Birthday
Dell has teased us with some images of their upcoming 12th Generation servers (that will support the Intel Sandy Bridge-EP processor). The PowerEdge R720xd is shown below. I want one of these…
Some more detailed information about these new servers is listed here.
Filed under: Computer Hardware,…
0 comments, 742 reads
Posted in Glenn Berry's SQL Server Performance on 29 February 2012
Misadventures in TDE: How to Restore an Encrypted SQL Server Database Completely Wrong
Doing things by the book isn’t necessarily the only way to learn a new skill. Sometimes, experiencing everything that can possibly go wrong when you don’t follow the book can leave a more lasting impression.
I had that misfortune in December, when I tried to port some of my SQL…
2 comments, 942 reads
Posted in Multidimensional Mayhem on 28 February 2012
How’s Microsoft doing with community involvement? (updated)
Update: Jen Lussier has blogged a summary of the talks she had at the MVP summit last week. Take a look!
I’m at the Microsoft MVP Summit in Bellevue, WA this week (and having a simply lovely time, thanks for asking!) MS Community Program Manager Jen Lussier tweeted:
Looking 4…
1 comments, 532 reads
Posted in SQL Awesomesauce on 28 February 2012
A Script A Day - Day 24 - Object Qualification
0 comments, 492 reads
Posted in SQL Server 365 on 28 February 2012
SQL Server 2008/2008 R2 Diagnostic Queries for March 2012
Since it is nearly March, I will go ahead and jump the gun by a few days and post an updated version of my SQL Server 2008/2008 R2 Diagnostic Queries for March 2012.
For this version, I have added information about the latest SQL Server 2008 R2 Cumulative Updates Read more
7 comments, 747 reads
Posted in Glenn Berry's SQL Server Performance on 28 February 2012
Monday Morning Mistakes: Not Setting Memory Limits
Welcome back to another addition of Monday Morning Mistakes series. Today’s issue is one I tend to run into quite often with clients and is an important topic to know about as a database administrator. Without further ado, let’s get to our issue
Issue
You have SQL Server database engine… Read more
10 comments, 6,098 reads
Posted in SQL Chicken on 28 February 2012
Converting SQL SERVER DateTime? Test it thoroughly….
Today one of my user complained that a report was missing one particular ticket from the output. The report in question is very simple, it accepts start date & end date and filters on the ticket creation date time column to get the list of tickets.
The report query was… Read more
10 comments, 2,181 reads
Posted in What I Learnt @ Work on 28 February 2012
Presenting at SQL Saturday #110
On Saturday, March 10, 2012, I’ll be presenting “Table Vars and Temp Tables – What you NEED to know!” at SQL Saturday #110 in Tampa, FL. Come out and join me in this code filled session, where we’ll discover the differences and similarities of Temporary Tables and Table Variables, dispel… Read more
0 comments, 500 reads
Posted in A Discussion of SQL Server-Related Topics on 28 February 2012
SQL Server Agent Job Steps
To list a SQL Server Agent Job Steps use the T-SQL example below.
This example displays the step id, SQL Server Agent Job name, Step name.
The code has 1 input parameter - @job_name
DECLARE @job_name VARCHAR(128) SET @job_name = 'My SQL Server Agent Job' SELECT js.step_id ,j.name,js.step_name FROM…
0 comments, 550 reads
Posted in SQLServer-DBA on 28 February 2012



Subscribe to latest posts