Viewing 15 posts - 136 through 150 (of 160 total)
Thanks for those ideas; when I go in tomorrow, I'll check out the "enabled" property. I hadn't known it was there.
We are running SQL 2000 SP3 Std Ed.
btw--I saw the...
February 23, 2006 at 7:44 am
Exact-a-mente
February 21, 2006 at 5:48 pm
A LEFT JOIN will produce all the records from the "left" table and only the records that match from the "right" table.
Example:
select c.LastName, a.Street1
from Customers c LEFT JOIN Address...
February 21, 2006 at 5:46 pm
Books On Line has a good section on triggers. You may want to use an "Instead of" trigger to do your processing on the data before it is inserted into...
February 21, 2006 at 5:41 pm
The problem must be in permissions, as the following commands work on my network:
--Create the backup from QA on Server A
backup database TestDB to disk='\\ServerB\c$\temp\TestDB.dat'
--Restore the backup on Server B
Restore database TestDB from...
February 21, 2006 at 2:03 pm
This may be off the point, but it's fairly typical to make the backup locally, and then copy that backup (and restore it if you want to) onto the remote...
February 17, 2006 at 11:54 am
There's a couple of caveats to this. First, email has to be set up on the machine running SQL Server. Once it is, it's very easy to set up an...
February 15, 2006 at 1:32 pm
Thanks, I think that maybe the section on the temp files could have helped, but my System pal got here first and fixed the problem. (Naturally, he did this without...
December 28, 2005 at 11:46 am
Yes, I forgot to mention that I re-started the server, and also removed the installation disk and re-inserted it. I also threw compressed air over my left shoulder and said...
December 28, 2005 at 10:36 am
Rebuilding the job from scratch solved the scheduling problem. Thanks to everyone for the suggestions.
Apparently there was a "date calculation spin" problem, but the easiest thing to do was simply...
December 19, 2005 at 2:25 pm
I'm aware of the workaround of building a job for each day of the week to avoid "date calculation spin", but I'm taking one more stab at doing it with...
December 16, 2005 at 5:21 pm
Thanks Rudy. The job just "died" again, and although I'm getting clues, it's still a mystery. I checked the SQLAgentOut log and sure enough there were messages involving "date calculation...
December 15, 2005 at 7:33 pm
lindr, thanks.
I didn't know about the SqlAgent.out file. I will look there for clues.
Elliott
December 14, 2005 at 7:15 am
No end date. The job should run M-F every minute from 4:00 am to 11:00 pm.
December 13, 2005 at 6:02 pm
Viewing 15 posts - 136 through 150 (of 160 total)