Viewing 15 posts - 1,711 through 1,725 (of 6,486 total)
Lowell (9/18/2009)
September 18, 2009 at 2:18 pm
Lynn Pettis (9/18/2009)
Jeff Moden (9/18/2009)
If nothing else, the NOT LIKE will likely force a scan.
Building on this, empid isn't even in the index, so sounds like a good possibility for...
September 18, 2009 at 1:06 pm
Jeff Moden (9/17/2009)
Matt Whitfield (9/17/2009)
Jeff Moden (9/17/2009)
I've been under the weather and in bed for the last 18 hours or so...
That doesn't sound like enough time to recover from being...
September 17, 2009 at 10:31 pm
If the picture is to not allow ANY server component, even local, then, no - how could SQL Server be involved?
At best you would have to use something like XML...
September 15, 2009 at 8:26 pm
I am reminded something a recruiter friend mentioned to me: You need a job to find a job.
Like Gus mentioned, the first thing you should do is come to...
September 15, 2009 at 1:14 pm
David.Maron (9/15/2009)
1. Changes can be made outside of the source control because they are based on flat files and there is no link to the...
September 15, 2009 at 11:27 am
Use the database as it should be. Generate ALL of the MAC addresses in one shot, and assign them as needed.
From what you have listed there - looks like...
September 15, 2009 at 10:06 am
Switch to using the OUTPUT clause instead. It WILL be a single statement and won't have the vulnerabilities that @@identity has.
Insert MyTable(Mycolumns)
Output inserted.MyIdentity
select MyColumnValue
September 15, 2009 at 6:53 am
In the sense that every table should have a primary key, yes, a mapping table SHOULD have a primary key.
Whether it should be a separate column or can be implemented...
September 14, 2009 at 10:12 am
jcrawf02 (9/14/2009)
Kit G (9/10/2009)
Jan Van der Eecken (9/9/2009)
Didn't quite get the coconut - swallow connection either, but maybe I'm just a little slow.
This particular coconut/swallow reference is from Monty Python...
September 14, 2009 at 10:05 am
I'm betting it's not so much the font itself that is unclear, as is the image saving process (which might be skewing/stretching the images to accomodate a specific size).
You may...
September 11, 2009 at 10:56 am
use testing
select 'Sam' name1, '09/10/2009 15:20:39.000' endts, 3 unk, 11024 duration
into #matt
go
;with MattCTE as (
select datediff(second,dateadd(hour,datediff(hour,0,endts),0),endts) basesecs,
dateadd(hour,datediff(hour,0,endts),0) basehour,
*
from #matt)
select
case when (duration-basesecs-(n-1)*3600)>3600 then 3600 else (duration-basesecs-(n-1)*3600) end secsspent,
dateadd(hour,(-1*n),basehour) timeslice,
endts,unk,duration from...
September 10, 2009 at 4:04 pm
bob.willsie (9/10/2009)
Am I correct in assuming that forcing it to be pass-thru is only useful if all the tables being joined reside on...
September 10, 2009 at 3:19 pm
bob.willsie (9/10/2009)
September 10, 2009 at 3:02 pm
Viewing 15 posts - 1,711 through 1,725 (of 6,486 total)