24 hours of high quality sql server training for free

August 7, 2009 13:16 by Ryan Garaygay

The Professional Association for SQL Server or popularly known aka PASS, one, if not the most popular and biggest group of SQL Server professional in world will be having 24 hours of PASS - a series of online web meetings with the best speakers in the industry More...

Digg It!DZone It!StumbleUponDel.icio.usReddit

TSQL to get SQL Server properties

March 3, 2009 02:48 by Ryan Garaygay

TSQL script to get common SQL Server properties (edition, instancename et al) More...

Digg It!DZone It!StumbleUponDel.icio.usReddit

caution in dropping a temp table before creating it

January 10, 2009 02:03 by Ryan Garaygay
Recently I ran into a script instead a stored procedure

IF OBJECT_ID(tempdb..#temp1) DROP TABLE #temp1

Basically, the object of this script is to check if #temp1 (regular temporary table) exists. If so drop it.
However, I think it can have unintended consequences and maybe safer not to include. More...
Digg It!DZone It!StumbleUponDel.icio.usReddit

temp table (#), global temp tables (##) and @table variables

January 10, 2009 00:20 by Ryan Garaygay

I've been working "full-time" on TSQL scripts for the past month (no with .NET windows/web apps) and mostly on optimization. And I feel that I should share with everyone this article about temp tables and table variables and some of my own notes. Go read the article below then you may come back here. Take careful note of the Conclusion part at the end of the article. More...

Digg It!DZone It!StumbleUponDel.icio.usReddit

Convert Delimited Values to a table with Ordinal Column

November 22, 2008 05:30 by Ryan Garaygay

This is a script to conver a delimited/separated values given a delimiter into a table, via a User Defined Function.More...

Digg It!DZone It!StumbleUponDel.icio.usReddit

Performance, Measure and ANTS Profiler

September 27, 2008 23:17 by Ryan Garaygay

Might need to create a separate page for notes on performance since I've been doing a lot of C# and database tuning lately but having them on this post so far. Here are some of my notes on performance More...

Digg It!DZone It!StumbleUponDel.icio.usReddit

Link : Configuring the Windows Firewall to Allow SQL Server Access

August 26, 2008 15:54 by Ryan Garaygay

Not mucht to say but just wanted to share a common development/deployment task/concern which is to allow windows firewall (and also relevant information for any other firewall) from the following link: Configuring the Windows Firewall to Allow SQL Server Access

Digg It!DZone It!StumbleUponDel.icio.usReddit