Viewing 13 posts - 1 through 13 (of 13 total)
Thanks.
Seems like there is no option in SQL for this to do.
I will give a shot to this via Powershell.
🙁
April 8, 2014 at 8:30 am
can you share the solution step by step.
i need to audit event id 18264.
I want whenever this event id occur i should get a mail and run a job specific...
April 7, 2014 at 7:51 am
THanks :smooooth:
November 26, 2013 at 7:04 am
Question is not clear.
Please explain what you want to try?
July 30, 2013 at 3:35 am
Hi,
I modified like this:
SELECT Request_ID,firstname,Subject,End_Date,Mail_ID
INTO #Data from test
declare
@Request_ID varchar(20),
@firstname varchar(50),
@End_Date varchar(10),
@Mail_ID varchar(100),
@Subject nvarchar(max),
@htmlbody nvarchar(max)
declare c1 cursor for
select Request_ID,
firstname,
End_Date,
Mail_ID ,
Subject
from #Data
open c1
fetch next from c1 into
@Request_ID,
@firstname,
@End_Date,
@Mail_ID,
@Subject
While @@fetch_status <> -1
begin
select @Subject =...
July 30, 2013 at 3:30 am
Thanks a ton man.
I modify this script according to me and it worked smoothely..
🙂
Superb..
July 29, 2013 at 2:27 pm
Hi All every thing is working fine.....
i got the output also. But i want servername also in the output file .
Pls help.
current output is:
name,Backup_Type,LastSuccessfulBackup,IntervalInDays
I want it should be:
Server_Name, ...
December 29, 2012 at 11:13 pm
Its a permission issue on Drive...
July 11, 2012 at 1:43 pm
Thanks.
This link is really useful...
May 30, 2012 at 4:33 pm
Can we do point in time recovery in Bulk loged recovery model?
If yes then how?
May 12, 2012 at 10:18 pm
What is called Object in SQL Server? Tell me some objects name?
May 5, 2012 at 4:37 am
Viewing 13 posts - 1 through 13 (of 13 total)