Viewing 8 posts - 31 through 38 (of 38 total)
Start a SQL Trace and add SQL:Stmt Started and SQL:Stmt Completed
or Batch Started and Batch Completed parameters.
July 14, 2009 at 3:04 pm
use 'All Suppliers' if its a static and use [All Suppliers] if its a column name
July 14, 2009 at 2:34 pm
Instead of writing
SET ANSI_NULLS ON
write
SET ANSI_NULLS OFF
July 14, 2009 at 2:25 pm
Can you write here the syntax that you wrote for creating TCP endpoints and for granting CONNECT permission?
July 14, 2009 at 2:00 pm
Did you create TCP endpoints on Principal and on Mirror Server and then did you give CONNECT permission on both server?
July 14, 2009 at 6:38 am
You have to create TCP endpoints on Primary and on Mirror server and then you have to grant connect permission on both servers.
July 12, 2009 at 2:39 pm
Create TCP endpoints using T-SQL statements and then grant CONNECT permissions to your login on both principal and mirror servers.
CREATE ENDPOINT [Mirroring]
STATE=STARTED
AS TCP (LISTENER_PORT=1430,LISTENER_IP=ALL)
FOR DATA_MIRRORING (ROLE=PARTNER,AUTHENTICATION=WINDOWS NEGOTIATE,ENCRYPTION=REQUIRED ALGORITHM RC4)
Create endpoint...
May 27, 2009 at 10:52 am
have you created proper tcp endpoints ?
May 26, 2009 at 3:24 pm
Viewing 8 posts - 31 through 38 (of 38 total)