Viewing 15 posts - 6,466 through 6,480 (of 9,643 total)
Garadin (12/26/2008)
With the way that derived table is written, if you have more than 1 appointment that has the MAX(date), you will get multiple returns.
Seth,
The way I understand the...
December 26, 2008 at 10:45 am
CTRL + L will show an estimated Execution plan. CTRL + M will show the actual execution plan when you run the query.
There are some videos on Execution plans...
December 26, 2008 at 10:03 am
David Lester (12/26/2008)
Jack Corbett (12/9/2008)
Developer1 - "Hey why write it over and over again, we can encapsulate it...
December 26, 2008 at 9:57 am
Garadin (12/26/2008)
I had an almost identical post typed out, then decided to try to get used to the new 2005 stuff that I always ignore....
December 26, 2008 at 9:08 am
I think this will work:
select
apprentice_id,
agreement_id
from
apprenticeshiptraining.tbl_apprentice_agreement AA Join
(
Select
apprentice_id,
Max(start_date) as max_date
From
apprenticeshiptraining.tbl_apprentice_agreement
Group By
apprentice_id
) MA
AA.apprentice_id = MA.apprentice_id And
AA.start_date = MA.max_date
December 26, 2008 at 8:42 am
It is difficult to find that information as a stored procedure that returns rows can also insert, update, or delete rows or include insert, update, and delete statements on temp...
December 26, 2008 at 8:34 am
Apparently nothing is off topic for this thread.
In regard to retirement, a lot of companies are just taking the lead from the U.S. government which borrows from Social Security, which...
December 26, 2008 at 8:28 am
You can also take a backup using SMO in your C# application. Check out this video at jumstarttv.com for the how-to.
December 26, 2008 at 8:23 am
Duplicate post. Please post answers here
Please don't post multiple times at it fragments responses and wastes some people's time as you may get similar responses on each thread.
December 26, 2008 at 8:21 am
I'm not sure what your question is. If you want to limit access to your database you do that through logins (access to the database server, which can be...
December 26, 2008 at 8:17 am
Duplicate post, please post answers here.
December 26, 2008 at 8:12 am
Duplicate post, please post answers here.
December 26, 2008 at 8:12 am
DavidB (12/26/2008)
Steve Jones - Editor (12/26/2008)
And they can't remove benefits from retirees. Those were agreed to long ago.Can't or shouldn't? 🙁
I would say can't. This is something the retirees...
December 26, 2008 at 8:10 am
Use an Expression, something like this:
=IIF(Fields!State__Name.Value Is Nothing, IIF(Parameters!DIMBRANCHMASTERStateName.Label = "ALL", "N/A", Parameters!DIMBRANCHMASTERStateName.Label), Fields!State__Name.Value)
December 26, 2008 at 8:09 am
Viewing 15 posts - 6,466 through 6,480 (of 9,643 total)