Viewing 15 posts - 1 through 15 (of 101 total)
Yes, I have running transaction log backups in both servers.
December 19, 2015 at 8:08 am
Thank you for your guidance. I will go through the link. Again thank you very much for being with me.
July 9, 2015 at 3:43 am
Welcome for your interest.
1. Yes, I can remote desktop onto the server and the server has SSMS installed and I can work on the remote desktop session.
2. Yes, I am...
July 8, 2015 at 10:52 pm
No, Sir. I have meant that there are 13 different servers and 13 different instances. That means every server has only one single instance that is default "MSSQLSERVER". I can...
July 7, 2015 at 10:16 pm
TCP/IP, named pipes, VIA enabled.
July 7, 2015 at 10:12 pm
No solution at all. That article did not help me. Because I am not finding any RESOURCE_SEMAPHORE waittype. Please any more help.
July 4, 2015 at 10:12 pm
Here is my full trigger. Please help me.
CREATE TRIGGER [dbo].[myTrigger]
ON [dbo].[myTable]
AFTER INSERT
AS
BEGIN
DECLARE @IP VARCHAR(15);
select @IP = client_net_address
from sys.dm_exec_connections
where session_id=@@SPID
IF (@IP = '127.0.0.1' )
BEGIN
RAISERROR('You can not issue',16,1);
ROLLBACK
END
END
December 30, 2014 at 4:07 am
GilaMonster (12/23/2014)
shohelr2003 (12/23/2014)
a) Then what does "Compatability Level" do here?
Change the behavior of the query processor
b) And what to do in this scenario?
Restore to a 2012 server, or script and...
December 23, 2014 at 10:17 pm
Thanks for your quick response. I have two more queries.
a) Then what does "Compatability Level" do here?
b) And what to do in this scenario?
Thanks.
December 23, 2014 at 4:01 am
I tried all the way out but in vain. I am not getting any clue.
November 7, 2014 at 8:29 am
I have used rollback and also require to display an error message. But the message is not appearing. I have used the following code.
begin
RAISERROR ('Sorry!You have entered...
November 5, 2014 at 10:16 pm
Actually I run select * from table where condition
but I don't get any rows. Then I restart my production server and execute the same query and find some rows....
May 17, 2014 at 12:26 am
@gilamonster, Thank you for your valuable time and suggestion.
May 14, 2014 at 5:48 am
GilaMonster (5/14/2014)
The trace will show the modifications, but it's high overhead. Maybe a trigger?
Yes, I found information that someone has opened Edit window but did not find what has changed....
May 14, 2014 at 2:18 am
I capture the following event and filter in the trace file.
EXEC sp_trace_setevent @TraceID, 12,1, @on --SQL-BatchCompleted,TextData
EXEC sp_trace_setevent @TraceID, 12,6, @on --SQL-BatchCompleted,NTUserName
EXEC sp_trace_setevent @TraceID, 12,8, @on ...
May 14, 2014 at 2:13 am
Viewing 15 posts - 1 through 15 (of 101 total)