Viewing 15 posts - 7,321 through 7,335 (of 7,471 total)
take good care NOT having a windows-account as jobowner. (make it a SQLuser which has enough permissions to run the dts-packages)
If you are using a windows-account as jobowner, you'll find...
November 3, 2003 at 1:58 am
Yes, Yes, Yes
1. Should not be dependant on Outlook or MAPI components like Microsoft Exchange profile etc. Should be able to use POP3 or SMTP mail services to send mails.
2....
November 3, 2003 at 1:44 am
just to remind you sysdepends is not a full solution. (create a stored proc that calls an sp that does not yet exist. you'll get a notification)
October 30, 2003 at 11:48 pm
- sql profiler for a while
- check its results
- sql profiler to support the next step and gather the errors
- rename 'tobedeleted' views to 'obsolete'
- after a while
- stop sqlprofiler
-...
October 29, 2003 at 5:32 am
The table is still functioning because the row-data-length did not yet reach the maximum limit for a page.
However, sqlserver did raise a warning regarding this issue at creation time of...
October 29, 2003 at 12:23 am
check http://www.riverland.net.au/text/look_first/netcode.html
it has a litle list and also has some smily explanation.
October 29, 2003 at 12:15 am
There also exists a sp_cycle_errorlog.
Downside of this is that it apears not to be working when used in a sqlagent job.
(complaints abount not being sa, even if I make sa...
October 27, 2003 at 12:06 am
if you have e.g. hp-openview monitoring software, you could have your last step raise an error (user defined errormessage / alert) to the windows eventlog, and hp-openview could pick it...
October 24, 2003 at 12:25 am
AFAIK there is no feedback to the job launched by sqlagent and it will only document that the job is started by the alert-related jobschedule. Based on this, I guess...
October 24, 2003 at 12:13 am
script it from the old db and run the script on the new db, removing the script-references to the old db.
October 23, 2003 at 11:59 pm
- did you perform checkdisk ?
- does the server report memory-bank-problems ? (eventvwr/system)
October 22, 2003 at 5:18 am
how about this :
select e.deptno, e.ename, e.job, M.MaxSal
from emp e
inner join
(select deptno, max(sal) as MaxSal from emp group by deptno) M
on e.deptno = M.deptno
October 22, 2003 at 5:15 am
Keep it simple and stupid.
Follow Jonathan's guidelines.
October 21, 2003 at 12:48 am
Viewing 15 posts - 7,321 through 7,335 (of 7,471 total)