Viewing 15 posts - 106 through 120 (of 139 total)
Use this:
declare @rc int
exec @rc = master.dbo.xp_smtp_sendmail
@FROM = N'servername@domain.com',
@TO = N'emailaddress',
@cc = N'emailaddress',
@priority = N'HIGH',
@Subject = N'Job failure',
@Message ...
March 27, 2008 at 10:49 am
How about UPDATEUSAGE and CHECKDB?? Do we need them?
when we execute any sql or stored proc will the results get cached, if so is it cached in the disk or...
March 27, 2008 at 8:32 am
I went ahead to check all the sql jobs in that server and also upon talking to user's they were saying that the system slows down every sunday PM, so...
March 26, 2008 at 1:56 pm
Linda (3/26/2008)
How do you want to keep it in sync? nightly, hourly? There are many solutions depending on which type of availability you are looking for.
Nightly is fine....
March 26, 2008 at 9:46 am
SQLBill (3/25/2008)
The database is in FULL recovery mode which requires the logs to be backed up if SQL Server is going to shrink them. Since...
March 25, 2008 at 3:40 pm
It runs based on extended stored procs, without bounvcing the sql services can we stop the process? Thx.
March 25, 2008 at 1:25 pm
Want to automate keeping the two in sync, there is no primary key, but there is a ID field that's unique.
March 24, 2008 at 2:07 pm
Actually our old dba has taken daily full db backup's and tran log backup's are evry 5 hrs, I am new to backup's and we are planning to redo backup's...
March 22, 2008 at 6:31 pm
Thanks, I shall take full db backup and then subsequent tran log backup's after changing the recovery model from Simple to Full.
March 21, 2008 at 2:23 pm
Carolyn Richardson (3/18/2008)
March 20, 2008 at 2:04 pm
Jo Pattyn (3/18/2008)
After you change the recovery to Full, do you take a full backup/differential backup before taking the transaction log backup?
After changing the recovery to Full, I take tran...
March 18, 2008 at 11:40 am
custnumber field is unique.
February 27, 2008 at 3:22 pm
Actually it's GreatPlains DB, surprisingly theer's no PK, I do'nt work much with GP and pl. do'nt ask me why there's no PK.
February 27, 2008 at 2:39 pm
So far I was able to get the lastname:
left(custname, (charindex(',',CUSTNAME,1)-1)) as [LastName]
How do I get the firstname??
February 27, 2008 at 1:58 pm
No it's not consistent, but most of the times it's either:
1. lastname, firstname MI
2. Lastname, Firstname, MI
There are some data issues, just for now let's consider the above combination...
February 27, 2008 at 1:32 pm
Viewing 15 posts - 106 through 120 (of 139 total)