Viewing 15 posts - 1 through 15 (of 26 total)
To follow up, it turns out that the network administrator had changed the login account used by the SQL Server services from Administrator to Local System. Changing the Agent...
January 16, 2015 at 11:45 am
Thanks! I'll have to try and process that in the morning, as my brain is fried.
April 10, 2014 at 6:33 pm
Hi "B"! The same SQL for both other than the table name:
UPDATE Driver_summary
SET Driver_no = Replace(Driver_no,' ', ' 8')
WHERE substring(Driver_no,5,1) = 2
The driver number...
April 10, 2014 at 5:40 pm
As an update, and because I'm up against a time problem, I experimented with taking the trigger out temporarily, then running the update query against the parent table first and...
April 10, 2014 at 5:20 pm
What you say makes sense, but I'm not sure what you're suggesting as the alternative. The trigger has been in place a long time, but I could certainly disable...
April 10, 2014 at 4:27 pm
Thanks for replying Gail (and greetings from an Access MVP). I thought it looked odd that there were no joins. The car table has an additional field as...
April 10, 2014 at 3:48 pm
I appreciate the response and the info. I don't like the info, but I appreciate it. 😛
April 9, 2014 at 9:58 am
Just wanted to say thanks Sean. I followed your recommendation and have a holding table populating from the trigger and a stored procedure that uses a cursor to loop...
February 26, 2014 at 3:53 pm
There could be a delay, but it would be measured in minutes rather than hours. The status field is used to let dispatchers know whether they can give the...
February 26, 2014 at 1:52 pm
I appreciate the information and I'm always looking to improve. That said, it doesn't address my issue of executing a stored procedure on a linked server. I can't...
February 26, 2014 at 1:26 pm
Sure, the existing trigger is below. No cursor, and I can't imagine more than a single record being updated at a time. But being a novice I may...
February 26, 2014 at 12:19 pm
Thanks Jason. I think over time applying the date criteria first would be most efficient, but wouldn't having to apply string functions over the entire table be costly? ...
February 7, 2014 at 9:45 am
Thanks Craig, I appreciate your thoughts and the speedy reply. If I'm reading correct the best performance might be:
SELECT...
INTO #Whatever
WHERE DateCriteria
then
SELECT...
FROM #Whatever
WHERE StringCriteria
February 6, 2014 at 5:57 pm
I appreciate your quick reply. I will do that research. The DatePart() function in Access has arguments that let you control this (specifically the "firstweekofyear" argument). I...
January 9, 2013 at 3:41 pm
Thanks GilaMonster. I had actually searched on the problem and tried something similar to that, but didn't include the "GO" lines. Fundamental lack of understanding of how SQL...
March 10, 2005 at 9:50 am
Viewing 15 posts - 1 through 15 (of 26 total)