Viewing 15 posts - 3,286 through 3,300 (of 6,486 total)
rbarryyoung (5/16/2008)
...(even Matt got her before me!)...
Hey now! where the heck did THAT come from??? :hehe::w00t:
Sheesh - travel home to see the wife, and get smacked around on the boards...:)
May 16, 2008 at 3:31 pm
Jeff Moden (5/15/2008)
I'd recommend you post the code... I've not seen Order By in an execution plan with so many columns ever before.
..which would mean indexing isn't covering that ORDER...
May 15, 2008 at 4:24 pm
sarchen21 (5/15/2008)
the issue here is how to create a trigger on deletion which should add record into the temporary table which doen...
May 15, 2008 at 4:05 pm
Unless 2007 has introduced something I am not aware of - Access doesn't have triggers.
May 15, 2008 at 3:41 pm
1. mark the parameter as multi-valued, and DON't include an "all" in your drop down list. it will do that for you.
2. multi-valued parameters come through as comma-separated lists...
May 15, 2008 at 1:51 pm
Are you logging in using Windows authentication or SQL Server auth?
If you're using SQL auth, then the BULK INSERT is run under the context of the SQL Server service account,...
May 15, 2008 at 1:22 pm
Larry Kruse (5/14/2008)
May 15, 2008 at 1:08 pm
Loner (5/15/2008)
May 15, 2008 at 12:59 pm
ALZDBA (5/15/2008)
I wouldn't advise CU6 because it has some start/stop issues with SSCM
(Unless you actualy want some fixes it contains)
- Are you using...
May 15, 2008 at 12:46 pm
You're getting nulls when the employee doesn't have any hours in the secondary table ps_al_chk_hrs_ern.
You need to put an isnull in the main SELECT as well....
SELECT
...
May 15, 2008 at 12:40 pm
peitech (5/15/2008)
USE
At the top of a script and it will automatically use the DB you have specified, however, can this be extended...
May 15, 2008 at 12:35 pm
Have you locked pages in memory? See this document:
May 15, 2008 at 12:31 pm
In the case above - you're calling with a value for @DayOffset (the parameter), not @days (the variable). Being a little nitpicky, but it's useful to see the difference. ...
May 15, 2008 at 12:16 pm
You've defined a variable, but not a parameter (variable is internal only to the SP, Parameters pass stuff IN or OUT).
You should also avoid the * in here...
May 15, 2008 at 11:24 am
TheSQLGuru (5/15/2008)
Oh, and for this one "It's as if people naively think the tool itself will solve all their problems with no tuning necessary. I've witnessed this all too...
May 15, 2008 at 11:16 am
Viewing 15 posts - 3,286 through 3,300 (of 6,486 total)