Viewing 15 posts - 826 through 840 (of 1,033 total)
I've got a 6 node cluster with 4 instances on it. Each instance has over 1000 databases attached. Between 4000 and 10000 users connect to each instance daily...
July 15, 2009 at 12:19 pm
Right before the end in the cursor loop you need to add another one of these.
fetch next from email_cursor into @pm, @email
while (@@fetch_status = 0)
begin
PRINT @pm...
July 15, 2009 at 8:39 am
That's awesome...
Sadly I screwed up... been working in our external data centers too long and posted a SQL 2000 question in a SQL 2005 forum (our data centers for our...
July 15, 2009 at 8:32 am
The output is the same, but that's coincidence.
I need a solution that even if I had 20 changes between groups on a single ticket say
1 to 2 to 1 to...
July 15, 2009 at 7:52 am
Blah I should have spent more time on the test data.
Multiple entries can be entered in sequence for the same group, it doesn't always change from record to record. ...
July 14, 2009 at 2:58 pm
Jeff Moden (7/8/2009)
July 10, 2009 at 2:34 pm
Sorry on the double post... every time I post I get errors these days. Not sure why.
July 9, 2009 at 9:22 am
I'm late to the party, but here's my take.
Lynn clued me into Hyperbac when I was exploring this last year.
We've got it deployed on 3 SQL clusters backing up over...
July 9, 2009 at 9:12 am
I'm late to the party, but here's my take.
Lynn clued me into Hyperbac when I was exploring this last year.
We've got it deployed on 3 SQL clusters backing up over...
July 9, 2009 at 9:11 am
george sibbald (7/1/2009)
select * from addressinfo
where
freetext(address1,N'red')
Its not as precise as contains so you should...
July 8, 2009 at 1:22 pm
george sibbald (7/1/2009)
select * from addressinfo
where
freetext(address1,N'red')
Its not as precise as contains so you should...
July 8, 2009 at 1:22 pm
WayneS (7/1/2009)
mtassin (7/1/2009)
i.e.
select * from addressinfo
where address1 like '%red%'
Thanks Wayne... that's not what I meant.
I'm looking for a way to leverage FTI because using LIKE is forcing table scans...
July 1, 2009 at 3:44 pm
nscott (6/30/2009)
June 30, 2009 at 12:27 pm
nscott (6/30/2009)
INSERT INTO dbo_WKORDER ( WO_NUMBER, WO_END_DT, WO_CAT_TY, WO_CAT_CD, WO_USER15, WO_USER22, WO_MOD_BY, WO_MOD_DT )SELECT "SR-" & [dbo_s_repair]![S_Rpr_ID] AS Expr1, dbo_s_repair.S_Rpr_Dt, "Service Laterals" AS Expr2, "10130" AS Expr3, dbo_s_repair.S_Rpr_By, dbo_s_repair.S_Rpr_ID, "nscott"...
June 30, 2009 at 10:16 am
GSquared (6/3/2009)
June 30, 2009 at 8:53 am
Viewing 15 posts - 826 through 840 (of 1,033 total)