February 2010 UG Scheduled

Written by admin. Posted in CSSUG

We are ready for February month session. Please go-ahead and register for the same.

Venue: Microsoft Training centre, Radhakrishnan Salai, Chennai
Landmark: Opposite to President hotel
Timings: 03:30 PM to 07:00 PM
Date: 27th Feb 2010

Session Details Below

03:30 03:45 UG Intro

03:45 05:00 Concurrency and Isolation level by Deepak

05:00 05:15 Snack Break Time

05:15 06:15 Replication Tuning by Sugesh Kumar

06:15 06:45 Introduction to SQL Azure by Sugesh Kumar

06:45 07:00 General Discussions

Contact persons:

UG admin cssug@sql-articles.com

CLICK HERE to open Registration form.

<<REGISTRATION CLOSED>>

PS: We will be freezing registration by 26th Feb 2010 EOD

VN:F [1.9.13_1145]
Rating: 0.0/5 (0 votes cast)
VN:F [1.9.13_1145]
Rating: 0 (from 0 votes)

Tags: , ,

Trackback from your site.

Leave a comment

*

Recent Comments

VidhyaSagar

|

Thanks Ashish, I’ve updated the script.

Ashish

|

I was just searching some trace related articles and gone through your article. Found one incorrect information,
to disable the trace, the command should be
dbcc traceoff (….)
you might have by mistake mentioned it as traceon for disabling as well.

Ben

|

I remember having to write a complicated procedure to do the same thing recently. This will be nice to use with a web app to only return a small subset. I think this will improve the speed especially when the entire result set is very large.

namanthakral

|

got errors after executing this trigger
“SQL SERVER – Fix : Error : 17892 Logon failed for login due to trigger execution. Changed database context to ‘master’.”

and was really stucked in this mess but DAC saved my life
C:\Users\Administrator>sqlcmd -S LocalHost -d master -A
1> DROP TRIGGER block_ipaddress ON ALL SERVER
2> go