Viewing 15 posts - 9,616 through 9,630 (of 14,953 total)
dmc (5/5/2009)
May 5, 2009 at 11:50 am
You can create your own auditing with triggers, including DDL and login triggers, in 2005.
May 5, 2009 at 10:59 am
Steve Jones - Editor (5/5/2009)
May 5, 2009 at 10:51 am
viswa (5/4/2009)
I am not asking the books.. I need some basic ideas
Why we are going this performance and when we need this performance tools...
When i getting this...
May 5, 2009 at 10:36 am
mtassin (5/5/2009)
I'd love to do this... but I've got 2000...
May 5, 2009 at 10:25 am
Lynn Pettis (5/5/2009)
May 5, 2009 at 9:00 am
I just tried this:
set nocount on;
if object_id(N'tempdb..#T') is not null
drop table #T;
if object_id(N'tempdb..#T2') is not null
drop table #T2;
create table #T (
ID int identity primary key,
Val int);
insert into #T (Val)
select abs(checksum(newid()))
from...
May 5, 2009 at 8:58 am
JohnG (5/5/2009)
Jack Corbett (5/5/2009)
Jeffrey Williams (5/4/2009)
May 5, 2009 at 8:20 am
I can honestly claim that I dropped out of both kindergarden and college!
I went to college for 1 quarter. Couldn't stand it.
I'm thinking of going back to get the...
May 5, 2009 at 8:10 am
Lynn Pettis (5/5/2009)
Then you have those that would bite the hand that is trying to feed them.
Wow! I don't think I've seen that many significant errors in a script...
May 5, 2009 at 7:59 am
MarkusB (5/5/2009)
May 5, 2009 at 7:55 am
First, your sample data doesn't work. Lynn already pointed out that the PK can't have duplicate values, but the whole idea for this is that you provide a script...
May 5, 2009 at 7:53 am
goparaju.chandu (5/5/2009)
my d:\\ drive was full. i wnt to some space to D:\\ .
Buy a bigger drive. Or add more drives to the array.
May 5, 2009 at 7:39 am
RBarryYoung (5/4/2009)
I posted my first Microsoft CONNECT suggestion yesterday. It's suggestion #440375 entitled "Add Query-based bulk EXECUTE", you can find it here. Please...
May 5, 2009 at 7:37 am
Viewing 15 posts - 9,616 through 9,630 (of 14,953 total)