Viewing 15 posts - 1,021 through 1,035 (of 1,995 total)
the problem with pivots is that you seem to have to know what the columns are before you get the data
the only way you can do this is to use...
June 28, 2012 at 8:57 am
you should be able to see from task manager what the AV product is using
if you are concerned about the amount it's using it migt be worth looking at...
June 28, 2012 at 8:51 am
don't forget - MVP is a certification - those guys have earned their stripes
June 19, 2012 at 9:21 am
if i ever see one of his ISO xxxx posts i think i may scream
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...
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...
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
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...
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...
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...
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...
June 8, 2012 at 8:57 am
yes
select count(distinct orglevel)
,x
,y
,z
from ...
where x=a
group by
x
,y
,z
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...
June 8, 2012 at 8:50 am
dwilliscp (6/8/2012)
June 8, 2012 at 8:37 am
Viewing 15 posts - 1,021 through 1,035 (of 1,995 total)