Viewing 10 posts - 16 through 25 (of 25 total)
1. in SqlServer Agent Service startup acoount must be the same as Startup Sql Service account
2. You must logon Windows with this account
3. You must define profile for this user...
February 2, 2005 at 6:13 am
Thank you, David, for guick reply. Unfortunately, you idea doesn't give me desired result. I need to receive in
Enterprise manager in Users :
in field 'Name' - dbo
in field 'Login...
December 1, 2004 at 3:08 am
Thank you, David, for guick reply. Unfortunately, you idea doesn't give me desired result. I need to receive in
Enterprise manager in Users :
in field 'Name' - dbo
in field 'Login...
December 1, 2004 at 3:08 am
Thank you very much for your help.
August 9, 2004 at 12:28 am
How are users of Active Directory sending email?
We use by Exchange for sending email.
July 8, 2004 at 2:00 am
Thank you very much.
Both versions work fine.
I have only one question.
Why do you use
(RIGHT(run_time + 1000000,6)
or
right('00' + CAST((next_run_time/10000) as varchar(2)),2) ?
I tested and it worked fine without all these...
May 24, 2004 at 5:20 am
creating a UDF for returning several rows into one row
Somebody posted this nice solution earlier:
create function ValList ( @anID VARCHAR(5) ) returns varchar(500) as
BEGIN
DECLARE @retval VARCHAR(500)
SET @retval...
January 19, 2004 at 3:58 am
May be it wikk help
declare @STR varchar(30)
set @STR='First Middle Last'
select left (@str,CHARINDEX(' ',@str)),
substring(@str,CHARINDEX(' ',@str)+1, charindex (' ',@str,CHARINDEX(' ',@str)+1) -...
November 13, 2003 at 4:23 am
Viewing 10 posts - 16 through 25 (of 25 total)