Posts

Showing posts from August, 2012

Skype as a windows update!

Image
Today I got the normal windows update notification in my tool bar, and was surprised that it's showing Skype as an Important Update! I searched for the KB number and found out that's it's now part of windows updates! http://support.microsoft.com/kb/2692954  

T-SQL Tuesday #33 – Trick Shot – SSRS User Input

Image
It’s T-SQL Tuesday time again, and this time it's about Trick Shots, my trick today is using SSRS to accept user input! Of course it’s not the best way to use SSRS as it’s a presentation layer and so limited in doing that using Parameters and sub-Reports which will fire a code or a stored procedure to update or delete a record…but IT COULD BE DONE!! The Trick: 1-I started by creating a new project in VS 2008, “Report Server Project” type. 2-I’m using SQL 2008 R2 as my testing platform…I’ve created a test DB called “Admin” CREATE DATABASE [Admin] 3-I created a test table called “Employees” contains only 3 columns. Create TABLE Employees ( ID int IDENTITY (1,1), Name varchar(50), Comments varchar(MAX) ) 4- Inserted 4 test records… Insert Employees VALUES('Jason', 'Lazy Employee') ,('Yousef', NULL) ,('John', 'Anything Goes') ,('Smith', NULL) 5-back to VS, Crea...

Loop over .sql files using SSIS

Image
This is fairly easy and simple, the requirement is to loop over a folder full of .sql files, that has some queries and run them on the server! This could be a stress testing queries, create multiple object or drop and recreate indexes queries as in my actual requirement. We'll need a "For EachLoop container "to iterate over the folder, read the files' location into a STRING variable. Add a "Execute SQL Task" inside the container, setup the SQL server connection, then setup the query to be from a file connection. create the file connection, pointing to one of the files. set the delay validation to true, then setup an expression over the Connection String property. That's it!! The package can be downloaded at: https://www.box.com/s/928b2f993c819b64dd53 Hope that helps someone...

Attach AdventureWorks 2012

Image
Quick and easy, but I see people in forums are asking about it... You may download the .MDF file from here: http://msftdbprodsamples.codeplex.com/releases/view/55330 I'd typically download and save it with the rest of the data files, maybe at the default location or any other drive if you prefer. The default location would be: C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA Then, right click on your DATABASES under your server name and select ATTACH Then you'll get the following screen, where you would normally navigate to the download directory and select the advntureworks2012.mdf file. After you click on OK, you will see that the log file is missing and SQL server will display "Not Found", just highlight the log file and click on remove, then OK. You're done!! attached ans ready for testing...