Pulse » Recent Items from 2/2012
Welcome!
Pulse has a simple goal: to give you a quick view of what's happening in the SQL Server community.
-
Browse
Finding interesting content on Pulse is easy – you can drill down to a specific time period (by clicking on the bars of the chart), toggle different types of content on and off, and sort the results by popularity or recency.
-
Vote
Discovered an informative blog post or a hilarious tweet? Tell the rest of the community about it by voting it up or down. Behind the scenes, our popularity algorithm will make sure it rises to the top of the list.
-
Comment
When a simple up-or-down vote isn't enough, voice your opinions in a comment. Or check out what others are saying about something you posted or tweeted.
-
PASS Volunteer Appreciation
Do you know someone in the PASS Community who is a hidden hero? Perhaps a chapter leader who is doing terrific work to help the SQL community. Maybe its a member who is putting in 110% to organize a SQL Rally. A virtual chapter leader who is organizing great sessions ...
-
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 ...
-
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 ...
-
What’s Stopping You – from Snooping?
No, this isn’t a touchy-feely inspirational post that talks you into taking leaps and bounds in your career. I write those every now and then, but that ain’t today. Instead, today’s post is about a question: what’s stopping you from snooping in your company’s data ...
-
I Was Kidding Myself
Do you know who Vizzini is? He’s a character from the Princess Bride story (I loved the book and if you want to read it, I would highly recommend the hard-to-find unabridged version). Most people know Vizzini from the movie. He’s this guy: For those who haven’t ...
-
Using views in the a tabular model
It is very handy to views as the table source definition in the the tabular model. The biggest advantage for using views – the columns can be renamed in the underlying data source without breaking your tabular model. If that’s not enough to convince you use views, here are a ...
-
Learn Mirroring with me at SQLRally
I just found out that I will be speaking at SQLRally Dallas in May. I submitted 3 sessions. As an event organizer, all 3 automatically went to community vote. I am very excited that my Mirroring session was voted in. Thank you to everyone who voted for me!Mirroring Start ...
-
End-User Microsoft BI Tools – Clearing up the confusion
Given two types of underlying data sources (a data warehouse and a OLAP cube built from the data warehouse) there are many different possible presentation layers (client tools) that serve different user communities with varying usage profiles. There is a lot of confusion on what is the best tool to ...
-
Scripts for Backup and Restore
Someone posed this question: How do you generate scripts for backing up all the databases on ServerA and restoring them on ServerB?BACKING UPGenerating the backup script is easy:SELECT 'BACKUP DATABASE [' + Name + '] TO DISK = ''D:\Backup\' + name + '.bak'''FROM sys.databasesORDER BY nameOr, refer to a post ...
-
Building a new CoLo - Part 1 of n
So if you follow me on twitter you might have seen this tweet a little while back. Since there aren’t many people out there that get the chance to buy and build a brand new data center from scratch, I figured that I’d go over the process with ...
Pulse is a section of SQLServerPedia that gives you a quick view of what's happening in the SQL Server community.