Viewing 15 posts - 1 through 15 (of 62 total)
This is an old thread I know but I was looking for the same thing and came across this code which seems to work perfectly.
DECLARE@sql NVARCHAR(72),
@jobID UNIQUEIDENTIFIER,
@jobName SYSNAME
SET
March 5, 2010 at 3:06 am
Hi
I would have the last step of your monthly job update a table somewhere with a success/failure flag. You can then schedule your other job to run a week later....
November 19, 2009 at 8:45 am
Hi
This information isn't stored in any tables or views. You're going to have to setup auditing or a profiler trace for a couple of weeks and see who logs in....
November 6, 2009 at 9:03 am
Thanks for the reply.
Forgot to mention though - it's SQL 2000 so copy only is not an option unfortunately.
thanks anyway.
May 14, 2009 at 5:39 am
I had to modify it slightly to:
SET @body = REPLACE('file://\\server\share with a space in it\', ' ', '%20')
This seems to work okay. Not sure why the first way worked for...
January 20, 2009 at 6:52 am
Hi Wilfred
SET @body = REPLACE('\\server\share with a space in it\', ' ', '%20')
EXEC msdb.dbo.sp_send_dbmail
@profile_name = @profile,
@recipients = @recipients,
@subject = 'Test',
@body = @body
The path now renders correctly but the link doesn't...
January 20, 2009 at 6:19 am
You can run the script straight into 2005 and it will produce drop and create statements for you. The drop statements should work straight away. The create statements may need...
November 11, 2008 at 8:38 am
This is the script that I use and it does most things for you.
http://www.databasejournal.com/scripts/article.php/1501031/spIndexKeyTextsql.htm
create the stored procedure in the database in question and then run:
"sp_IndexKeyText 26" to generate...
November 11, 2008 at 8:11 am
Generally there's no issue having different collations on your system database unless you're running queries between them and differently collated user databases. This usually comes about as a result of...
November 11, 2008 at 7:28 am
Same with me - anytime I need to change collations I have to drop all the indexes and constraints first and then recreate them afterwards. If you have a lot...
November 7, 2008 at 10:08 am
Watch out if you're using SSIS as well, as by default this will not be clustered and when you fail over to the second node packages will not execute from...
September 26, 2008 at 8:04 am
Hi
Thanks for your reply. Yes, I know of the deployment utility. Unfortunately my 20 packages are only stored in MSDB on the server. I do not have a BIDS solution...
September 18, 2008 at 8:44 am
Thank you. I've just successfully run a package with Integration Services installed but not running.
To me this seems a rather simple but effective solution to the problem of SSIS not...
September 11, 2008 at 9:29 am
Thanks for the replies guys and thank you for giving a prime example of my problem.
First reply:
"The SSIS service is designed to enable the management\monitoring of SSIS packages; it is...
September 11, 2008 at 8:13 am
Unfortunately it's the usual story of 3rd party apps still only offering mixed mode authentication. In this case it's one of the market leaders in its field and we've only...
June 3, 2008 at 8:41 am
Viewing 15 posts - 1 through 15 (of 62 total)