Viewing 15 posts - 1,216 through 1,230 (of 1,536 total)
If the departments are consistent throughout the resultset you could just use
UPDATE TABLEA
SET DEPARTMENT = 240094
WHERE WEEK = 7
April 28, 2004 at 11:06 am
Why not use sp_helprotect? I have this with a couple of DTS packages that back up all the permissions nightly and allow me to restore those permissions to any point...
April 28, 2004 at 10:40 am
When you first connect to SQL it attempts to poll the server to check the state of the services, this can be a problem if you are running with SQL...
April 28, 2004 at 10:38 am
Make the final step of the job a call to a dts package that shells out to dos and uses ftp to upload the log file.
April 28, 2004 at 8:55 am
Check out the utility for backup and restores of DTS pacakges out on http://www.SQLDTS.com
April 28, 2004 at 8:01 am
On the server that you are restoring to drop and recreate the logins with the sids matching the login sid on the first server, that way you won't run into...
April 28, 2004 at 7:59 am
Had a developer come up to me yesterday and tell me that he wants to add a varchar(8000) column to an already wide table....
April 28, 2004 at 7:56 am
Tymberwyld think yourself lucky Only 134 columns. I inherited a data infrastructure that is a nightmare, and I'm not in a position to...
April 28, 2004 at 6:43 am
April 27, 2004 at 7:46 am
Locally you can restrice access to MSDB which would help prevent them from creating a dts on the machine, however they could still create one on their own machine. Other...
April 26, 2004 at 1:48 pm
You could use alerts to run a job on failure, however I have not been able to figure that out myself.
Another option is to put a trigger on the msdb..sysjobs table...
April 26, 2004 at 1:25 pm
Your new view is running multiple joins against other views that could well be doing joins against multiple tables. Check the other views and see if you are exceeding the...
April 26, 2004 at 12:19 pm
Why not place a step at the end of the job to send out notification that the update is complete? Or assign a trigger to the table to log information...
April 26, 2004 at 12:17 pm
Viewing 15 posts - 1,216 through 1,230 (of 1,536 total)