Viewing 15 posts - 46 through 60 (of 1,553 total)
Well, 'can' and 'should' is a little different.
Yes, you can have two instances on the same box, where you have two databases with the same name (one in each instance),...
April 8, 2008 at 7:11 am
... it depends..? 😛
But probably, though we don't know, since the op hasn't really explained what it's all about.
Though it feels that nowadays a bitmap is overly complex, and 'saving...
April 7, 2008 at 6:18 am
..nah, I have longer hair than Joe 😛
But seriously, 'good' or 'poor' aren't traits whether it's a key or not (primary, alternate, candidate etc).
Anything that serves as a unique identifier...
April 7, 2008 at 1:55 am
I'm a bit confused as to what you really want or need...
A bitmapped number suggests that there is some meaning involved, and a key with a meaning is a poor...
April 4, 2008 at 7:34 am
My bad, I'm sorry..
That row should naturally read:
sum(case f.actif when 0 then 1 end) as NbActifFalse
/Kenneth
April 4, 2008 at 7:28 am
Would something like this do?
select p.person_id as Idpersonne,
sum(case f.actif when 1 then 1 end) as NbActitTrue,
...
April 4, 2008 at 7:04 am
Though cpu time is really of no concern - at least not in this case.
It's a volatile measure at best (as we've seen, since it fluctuates > 100% between times)
The...
March 26, 2008 at 8:25 am
Hmmm.... I'm not so sure that the LEFT JOIN is so bad...
I'd say it's the better one of the four by a longshot.
This is the 'small table' examples from Adventureworks,...
March 26, 2008 at 7:27 am
Just update the darn flag to 1 regardless.
If it's a 0 then it becomes 1.
If it's a 1 then it's still a 1.
No need to be fancy with triggers and...
March 26, 2008 at 3:56 am
You're using the wrong datatype...
From BOL:
[ @stmt = ] stmt
Is a Unicode string that contains a Transact-SQL statement or batch. stmt must be either a Unicode constant or a variable...
March 26, 2008 at 3:48 am
Well, it seems like a straight forward 'acces denied' error...
Whatever account that was trying to do a backup got denied.
'spx_mkexpbkp' seems to be some sort of homegrown proc?
As to the...
March 26, 2008 at 3:33 am
If all your files has been wiped, then I'd say that all the traces as to who dunnit is wiped as well.
Regardless of that, since all log on as the...
March 26, 2008 at 2:53 am
It's when you cast the varchar column as int in the where clause that causes the conversion error.
select RA.RuleID, AA.ApplicantID,AA.AttrValue,RA.AttrValue,AA.CastValueAsType
from @Rules_AttrValues RA
...
March 7, 2008 at 1:54 am
Oh really? Must have missed that.. I read it as a question of what checksum was used for.. 😉
Anyways, what use would anyone have on how MS have implemented these...
March 6, 2008 at 7:43 am
A link it is:
ms-help://MS.VSCC.v80/MS.VSIPCC.v80/MS.SQLSVR.v9.en/tsqlref9/html/e26d3339-845c-49c2-9d89-243376874c13.htm
or if the link fails (it refers to BOL - Books On Line - your trusty manual for SQL Server)
download and install BOL from here
and...
March 6, 2008 at 7:31 am
Viewing 15 posts - 46 through 60 (of 1,553 total)