Viewing 11 posts - 1 through 11 (of 11 total)
As for why in a DTS, what can I say? I'm a GUI junkie... Are you running this against SQL 2000? SQL 2005 still protects you from...
August 11, 2009 at 7:32 am
John,
Reread my post right above yours. You need to run the sp_configures to allow updates, then run your insert, then be sure to reconfigure to turn off the updates...
August 10, 2009 at 8:09 am
In order to automate this instead of creating each message by hand, I needed to 1. make the system tables editable 2. copy sysmessages with errors greater than...
January 30, 2008 at 10:03 am
I need some help on this one too. The lease is up on our current server and I am trying to export all of the current alerts to the new...
September 20, 2007 at 1:39 pm
xp_sendmail is great when using the default mail profile.
I needed to use a different mail profile (prettied up for the users) so I ended up creating a DTS that was...
August 22, 2007 at 8:06 am
John,
I definitely see your point here. My join didn't ensure any checks or reliability. Thank you very much for the query you provided as I was having issue with wrapping...
August 10, 2007 at 2:35 pm
HA! I believe I got it.
select max(a.cwsrouteid), max(a.cwsid), max(a.actiondate) from tblcws_routing_baggot A join tblcws_routing_baggot B on (a.cwsid = b.cwsid)
where a.actiondate is not null
group by (a.cwsid)
August 10, 2007 at 1:38 pm
Good suggestion Rubes. I am one step closer to the results I want, but I'm not sure how to eliminate the superfilous CWSID 40 records as I'm just wanting the...
August 10, 2007 at 1:37 pm
Whenever dealing with import / export files, I always define them using the long name with the default admin share.
ie - c:\data\import\file.txt as \\mycomputername\c$\data\import\file.txt
This way there is no doubt where...
July 6, 2007 at 12:57 pm
I do have a dev server that I gave this a go on and it worked fine. The only problem is the application that updates these tables is written in...
May 17, 2007 at 8:17 am
Me being the GUI junkie that I am (and lacking the skillset) won't be able to run my transofrmations to .txt files using sql statements, so it would appear that locking...
May 14, 2007 at 11:42 am
Viewing 11 posts - 1 through 11 (of 11 total)