Viewing 15 posts - 61 through 75 (of 98 total)
use snapshot isolation level. *This require more tempdb.... manage tempdb carefully.
1. Try to make the distributor job at least for 15mins.
2. *Snapshot isolation will take care of blocking.
3. in...
May 26, 2009 at 9:00 pm
I could say:
1. change the schedule for distributor so as to run could be after 1hr(if possible)
2. as you said its a reporting database try to use (NOLOCK) hint *this...
May 26, 2009 at 6:15 pm
server_name,port_number
or
ip,port_number
Dont know why last post could not see this.
May 26, 2009 at 11:20 am
try this.
,
or
,
FYI.
http://www.haidongji.com/2006/02/15/connect-to-sql-server-2005-using-query-analyzer-osql-and-isql/
HTH.
Vinay
May 26, 2009 at 11:19 am
you can send a mail from sql server 2000 with two ways (as of i know).
Sql Mail:-
Setup the outlook on sql server and configure and send a mail.
http://support.microsoft.com/kb/870675
SMTP :
if...
May 21, 2009 at 2:38 pm
Looks like that column you made changes is filtered... check
publiser->Property-> filter.
hth.
May 21, 2009 at 1:25 pm
You have to run index maintainance plane on subsciber as well....
also for reporting performance porpose you can add/ chage the index on subsciber index on
HTH.
May 21, 2009 at 1:17 pm
You can use ODBC - DSN....
This si what i found when google.
http://www.webcheatsheet.com/ASP/database_connection_to_MSSQL.php
HTH.
May 15, 2009 at 8:17 am
Thanx Terry for reply.
System is doing good so far, but I feel if we could change the compatibility. It will generate good compile and execition plan and will work better....
May 13, 2009 at 2:21 pm
BOL:
Use DBCC FREEPROCCACHE to clear the procedure cache. Freeing the procedure cache would cause, for example, an ad-hoc SQL statement to be recompiled rather than reused from the cache.
Looks like...
May 13, 2009 at 11:16 am
May 12, 2009 at 2:31 pm
as we could see you are creating a trace with filters:
#exec sp_trace_setfilter @TraceID, 10, 0, 7, N'SQL Profiler'
#set @bigintfilter = 1000
#exec sp_trace_setfilter @TraceID, 13, 0, 4, @bigintfilter
#set @intfilter = 100
#exec...
May 11, 2009 at 2:34 pm
you want to remove the replication right?
if yes:
sp_removedbreplication "DB Name"
and restart you services...
HTH
Vinay
May 8, 2009 at 12:03 pm
What OS are you using??
BOL:
Note The Windows NT Performance Monitor is available only when using Microsoft Windows NT® 4.0 as the operating system.
May 8, 2009 at 11:49 am
I elaborate my question:
1. What would be impact of changing sql server 65 compatibility to 80?
2. All tables are having ansi NULL off, that will not change automatically, Do I...
May 6, 2009 at 10:23 am
Viewing 15 posts - 61 through 75 (of 98 total)