Viewing 15 posts - 7,321 through 7,335 (of 7,466 total)
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
It probably got into your db as result of a restore or attach from an SQL7 db.
I've noticed the same with a "convert(int(5),floatcol)"- SQL7-statement.
October 16, 2003 at 12:52 am
There 's al mass of info regarding this subject on the net.
I prefer surrogate keys because they make it mandatory for the db-user to understand the datamodel, so e.g. symantic...
October 14, 2003 at 12:06 am
works fine over here. I'd go for Allen_Cui's option.
October 10, 2003 at 12:31 am
Check your windows-eventlog and look for other (e.g. windows) lisence messages.
They might be related to your issue.
October 1, 2003 at 12:14 am
did you stop/start sqlagent ? (is needed when you activate the first alert)
October 1, 2003 at 12:10 am
Viewing 15 posts - 7,321 through 7,335 (of 7,466 total)