Viewing 15 posts - 6,016 through 6,030 (of 7,501 total)
- you'd probably be better of with using xp_smtpmail (http://www.sqldev.net)
- look for Configuring Mail Profiles in BOL.
November 21, 2006 at 5:34 am
- AFAIK clearing is a all or none operation.
- DON'T mess with systemtables !
Syscacheobjects isn't even a real table, but contains a systemstate.
- let sqlserver handle it's cache...
November 21, 2006 at 5:30 am
- Can you find anything related in Win-eventlog and/or sqlserver-logfiles ?
- Haven't encountered this issue yet, although I also RDC the server to manipulate packages.
- Are you using windows or...
November 21, 2006 at 5:23 am
select *
from calllog T1
left outer join asgnmnt T2
on T2.callid=T1.callid
where T2.assignee='Hanli Burger'
and T1.callstatus='Pending'
Update T1
set colx = case when T2.coly is null then colx else T2.coly end
from calllog T1
left outer...
November 21, 2006 at 1:57 am
I don't like to propose this, but serverside cursors
can provide that functionality. With the ado-propreties for the resultset/command you can specify a batchset....
November 21, 2006 at 1:51 am
regarding DTS, do you use your client's EM to edit the package ? (and have no local default instance of sqlserver at your client)
or do you use remote desktop to the...
November 21, 2006 at 1:39 am
I can see the "Executed as user: NT AUTHORITY\SYSTEM".
So I guess your sqlagent is being serverd by "Local System".
You may want to change that to an account that has authority...
November 20, 2006 at 1:49 am
I guess if you try to select a convert(varchar(...), yourcol) you'll find out.
select convert(varchar(...), yourcol) as varcol
, yourcol
from yourtable
where convert(varchar(...), yourcol) <> yourcol
November 17, 2006 at 10:07 pm
just my 2ct...
- use aliasses !
IMO it makes it way easyer to read and may even reduce your chances for mistake. If you...
November 17, 2006 at 10:35 am
sorry for the late response.![]()
I'm at SQLPass 2006 for the moment
and I didn't check my SSC...
November 16, 2006 at 3:27 pm
- wich account is jobowner ?
- how did you setup authentication for the linked server ?
is there a mapping for the jobowner ?
November 7, 2006 at 7:25 am
... One other issue that might be a factor is that at the moment all our databases are set to a compatibility of 80 rather than 90. This is the...
November 3, 2006 at 3:35 am
..domain admin ? No reason at all !
It doesn't even have to be local admin on the box ! The one installing sqlserver needs to be member of the...
November 3, 2006 at 12:08 am
topic "Moving System Databases" in BOL describes it clearly.
When I find some time I'll have to test this procedure myself. (this will be after 3 weeks because I'll have...
November 2, 2006 at 11:59 pm
- So you moved the systemdb's and the RTM still worked ?
- what are your startup parameters for sqlserver ?
- check the original locations to see if sp1 put new...
November 2, 2006 at 4:59 am
Viewing 15 posts - 6,016 through 6,030 (of 7,501 total)