Viewing 15 posts - 556 through 570 (of 872 total)
Ah! I remember seeing that before ... forgot all about it.
Thanks!
June 9, 2008 at 8:00 am
Nevermind, found it by profiling ...
EXEC msdb.dbo.sp_update_jobstep @output_file_name
June 6, 2008 at 10:36 am
Well ... I'm not to thrilled about it, but I changed it from one file per database to separate files based on YYYY_MM_DD_HHMM. Then when my daily backups come in,...
June 6, 2008 at 9:59 am
So specifying with INIT overwrites the entire file ... I thought it would only purge anything that fell outside of the RETAINDAYS ... hmm, I'm missing something obvious here.
I've...
June 6, 2008 at 6:39 am
Well, an easy way out would be to run a TLOG backup with INIT after my daily full ... but it seems like there should another way to accomplish this?
June 6, 2008 at 6:23 am
Yeah I figured as much, but this one just baffled me ...
After looking at how they created the system table, I was able to recreate it and repopulate it just...
June 5, 2008 at 11:08 am
Ok, I had to define a pager schedule ... and now it's working.
I feel smart.
Thanks for all the help!
May 30, 2008 at 6:56 am
So looks like by default you can't send emails to a phone as a page ... and the only way to receive a text message from SQL is via the...
May 30, 2008 at 6:53 am
Ok, exchange is now good. I can use database mail to send just fine.
Yet still not working for a notification operator. It works If I use the email notification, but...
May 30, 2008 at 6:49 am
Yeah talking to him now ... Looks like it is something they have to setup.
Thanks all!
May 30, 2008 at 6:11 am
Is the dropdown for the notification set the same between both e-mail and pager?
Yep. The operator is set to My#@vtext.com. I've set the notification for both e-mail and page...
May 30, 2008 at 5:58 am
Kyle Neier (5/29/2008)
When you are trying to get the page to work, are you modifying both the operator contact information and the notification tab of the job?
Indeed.
May 29, 2008 at 1:18 pm
Kyle Neier (5/29/2008)
Set up your operator with the pager e-mail name of 5551234567@vtext.com. You can then...
May 29, 2008 at 1:09 pm
Lynn Pettis (4/25/2008)
Adam Bean (4/24/2008)
And what do the indexes look like on tbl2 in this example above? The data being returned in the select, which tables are they from...
April 25, 2008 at 7:20 am
Same concept here ... scanning instead of seeking, no where clause, but on a join:
SELECT
NameType
,LastName
,FirstName
,MiddleName
,EndName
,NameKey
FROM tbl1 t1
INNER JOIN tbl2 t2
ON t1.NameKey = t2.NameKey
I've tried my index two ways:
CREATE NONCLUSTERED INDEX...
April 24, 2008 at 11:41 am
Viewing 15 posts - 556 through 570 (of 872 total)