Viewing 15 posts - 1,021 through 1,035 (of 1,993 total)
don't forget - MVP is a certification - those guys have earned their stripes
MVDBA
June 19, 2012 at 9:21 am
if i ever see one of his ISO xxxx posts i think i may scream
MVDBA
June 19, 2012 at 2:30 am
If I were put into such a position where 2 candidates were exactly equal and I could only chose one, then I'd find some way to break the tie but...
MVDBA
June 19, 2012 at 2:27 am
you could argue that a university degree is also worthless - but we still use it as a measure for most professional candidates...
the professional certifications are an affordable way...
MVDBA
June 18, 2012 at 9:47 am
Lynn Pettis (6/11/2012)
How about Mr. Celko? I don't know why, but everytime I read one of his posts my blood pressure rises about 20 points.
likewise
MVDBA
June 18, 2012 at 3:38 am
your query plans are for the query
SELECT * FROM [PRINT_CASH_POINT] WHERE [CASH_POINT]=@1 AND [DAT1]>=@2 AND [DAT1]<=@3 ORDER BY [DOC_NO]
is this some sort of view on the data?
might i suggest that...
MVDBA
June 8, 2012 at 10:03 am
yes -lynn - it was a blind cut and paste from pinal dave's site (his other functions are fine, but i failed to notice the convert) - as per my...
MVDBA
June 8, 2012 at 9:21 am
the only way i've found to do this is to build a cross join of all clients and all weeks in the year where they are present
e.g (pseudo)
select weeknumber,count(*)
from clients...
MVDBA
June 8, 2012 at 9:06 am
Krasavita (6/8/2012)
Hello, it is probably impossible,but maybe a chanceI deleted a database and my backup was deleted where I made a copy,is there way to restore some how?
Thank you
do you...
MVDBA
June 8, 2012 at 8:57 am
yes
select count(distinct orglevel)
,x
,y
,z
from ...
where x=a
group by
x
,y
,z
MVDBA
June 8, 2012 at 8:54 am
try the following
declare @mydate datetime
set @mydate=GETDATE()
SELECT dateadd(dd,4,CONVERT(VARCHAR(25),DATEADD(dd,-(DAY(DATEADD(mm,1,@mydate))-1),DATEADD(mm,1,@mydate)),101) )
see Pinal Dave's blog post on these
edit: the other suggestions are better than mine - i did a cut an poste from...
MVDBA
June 8, 2012 at 8:50 am
dwilliscp (6/8/2012)
MVDBA
June 8, 2012 at 8:37 am
Mathew M.Varghese (6/8/2012)
Why is the execute count (which is just a measure of how many times an operator in the query runs) a problem? Is this query slow?
Yes the query...
MVDBA
June 8, 2012 at 8:34 am
anthony.green (6/8/2012)
BaldingLoopMan (6/8/2012)
is there a way to temporarily turn off the writting to trans log for this process?
everything is written to the transaction log you cannot stop that, it all...
MVDBA
June 8, 2012 at 8:27 am
Viewing 15 posts - 1,021 through 1,035 (of 1,993 total)