Viewing 15 posts - 19,501 through 19,515 (of 26,490 total)
Alvin, did you lose your tin-foil hat again?? You know we are supposed to be able to read minds. 😉
July 28, 2009 at 3:03 pm
I don't believe this is possible. However, if the user does not have permission, they won't be able to access the other databases.
July 28, 2009 at 2:11 pm
Looking at the query and the fact that it uses just that one column, I'd add an index on that column. If it has to do a table scan...
July 28, 2009 at 2:00 pm
select distinct
a.EMPID,
sdate
into
#temp1
from
dbo.vwJobcd as a
inner join #tabdates as b
...
July 28, 2009 at 1:03 pm
I'd also make the following change to your where clause so that the Query Optimizer can make use of an index on meetingstartdate if it exists.
SELECT
meetingstartdate,
...
July 28, 2009 at 12:57 pm
Roy Ernest (7/28/2009)
john.arnott (7/28/2009)
Steve Jones - Editor (7/28/2009)
How about advanced pork chop aiming strategies for maximum developer damage?
Just be careful of starting an internecine battle. There are more of...
July 28, 2009 at 12:48 pm
Andrew Collins (7/28/2009)
Do you need a separate license for a passive node on a...
July 28, 2009 at 7:38 am
Well, it is now official. We are down one daughter in our household.
Kassondra is now on her way to Fort Jackson in South Carolina to start her military career...
July 27, 2009 at 3:05 pm
michael vessey (7/27/2009)
the original post indicated that i wanted an Efficient method of getting the max value from Rown_number()
but the query inside the CTE/subquery...
July 27, 2009 at 2:58 pm
Here is part of your problem, your code:
CASE
WHEN @ProgramCode = '01' AND
@CovII >...
July 27, 2009 at 6:38 am
Based on the original sample using only one table, yes, your requirements changed.
Going to more complex queries, it may have helped to show that instead of a single table query,...
July 27, 2009 at 6:08 am
Hima Bindu Nagisetty (7/26/2009)
The execution plans for last two statements...
July 26, 2009 at 8:45 pm
paula (7/26/2009)
Why is it the number 17 with varchar and not 16 or 18,19 etc.
Because, WS_Job_Number is defined as [char](17) and ProjectId is defined as an int, therefore I wanted...
July 26, 2009 at 8:42 pm
Viewing 15 posts - 19,501 through 19,515 (of 26,490 total)