Viewing 5 posts - 1 through 6 (of 6 total)
m.steenbakkers (12/14/2009)
I'd like the dll itself as a direct download, don't have the tools here to compile the sourcecode myself 🙁
In the source download, the dll is in the folder...
December 14, 2009 at 1:59 am
barbiduc (12/2/2009)
ALTER DATABASE ProdReports2008 SET TRUSTWORTHY ON
The above setting of database could be really tricky for some DBAs. As a developer, when I handed this request to our DBA, he...
December 2, 2009 at 10:40 pm
Ditto that - similar setup (updating linked server data) same type of error message (Multiple-step OLE DB operation generated errors. ... Could not create an acceptable cursor) .
Fixed with a...
May 10, 2009 at 9:57 pm
Kenneth Wilhelmsson (7/24/2008)
Any particular reason not to use any of:sp_help_job
sp_help_jobactivity
..?
/Kenneth
I use the SPs on an administrative web page to check on certain jobs and run them if necessary.
It's necessarily idiot...
July 28, 2008 at 2:37 am
Thanks Glenn for that kickstart!
I created this to check on the status:
ALTER PROCEDURE [dbo].[mXsp_CheckJob]
(
@JobName varchar(400)
)
AS
BEGIN
SET NOCOUNT ON
DECLARE @data as nvarchar(255)
SELECT @data =...
July 24, 2008 at 12:06 am
Viewing 5 posts - 1 through 6 (of 6 total)