Viewing 15 posts - 5,476 through 5,490 (of 5,590 total)
Thanks, that is pretty slick (and pretty fast also).
My actual tables have additional columns (modified date, guid, others... I should have included some of them in the test) ... to...
April 17, 2009 at 9:11 am
Thomas (4/15/2009)
Using a cross join is not itself counter-intuitive. Using it in this fashion to generate a bunch of numbers probably is to most developers.
I think that this is one...
April 16, 2009 at 10:04 am
Carlo Romagnano (4/16/2009)
exec sp_helptext sp_addmessage
in the output search for @severity and you'll find this piece of code that is the law.
...
April 16, 2009 at 5:38 am
Jeff Moden (1/3/2009)
=====================================================================================================================
UPDATE #MyHead
SET @PrevKeep = KeepMe =...
April 14, 2009 at 12:00 pm
Thanks for the great article.
I also am waiting for the rest of this series. Hopefully, the wait is just daily.
I have a new job. With a simple
select object_name(object_id), * from...
April 14, 2009 at 8:44 am
RJ (4/14/2009)
I would like to see how you can eliminate using a CURSOR or WHILE loop for sending emails using "msdb.dbo.sp_send_dbmail". My requirement would be to send email notifications to...
April 14, 2009 at 8:22 am
I like this thread, though from a different perspective. I like how the replies to the poster encouraged the poster to provide run-able code to duplicate the issue, and also...
April 13, 2009 at 7:16 am
ssaari (3/25/2009)
Thank you, Wayne,I looked at a couple of table scripts and didn't notice anything wrong. What kind of issues did you see if you don't mind?
Scott
The thing I...
March 25, 2009 at 8:52 pm
ssaari (3/25/2009)
March 25, 2009 at 4:39 pm
Well, 18 hours after it was sent, I finally received that email.
However, the original question remains. In all of the msdb..sysmail objects, can a sent email be set to be...
March 12, 2009 at 7:17 am
ALZDBA (3/11/2009)
can you find traces of your missing in action mail in these objects ?
It's in sysmail_allitems, with a status of sent. As well as the other emails that I...
March 11, 2009 at 5:35 pm
The database mail is working... I've received mails both before and after the missing one.
And the emails are set up with a filter to go into a specific folder, so...
March 11, 2009 at 3:54 pm
The feedback on this article has been very interesting. And good enough that I've been looking at other ways to accomplish what I'm using the Excel Automation for.
So, let me...
March 8, 2009 at 2:00 pm
Interesting.
I modified the supplied code to get the # of tempdb objects, and all tempdb table names:
use AdventureWorks
go
select count(*) from tempdb.sys.objects
select name from tempdb.sys.tables --where name like '%tableA%'
declare @tableA TABLE(col1...
February 27, 2009 at 8:09 am
I just recently upgraded a database from 2000 to 2008. There was a bit of code that had to be looked at for depreciated and obsolete features. (Granted, the upgrade...
February 27, 2009 at 7:26 am
Viewing 15 posts - 5,476 through 5,490 (of 5,590 total)