Viewing 15 posts - 61 through 75 (of 286 total)
Actually TCP/IP is always faster for us and when we switch from Named Pipes to TCP/IP it usually solves the performance issue.
December 18, 2010 at 11:43 am
Check if SQL Server Service Account has "Lock Pages in Memory" rights on the server.
December 18, 2010 at 11:39 am
I am not sure if you can find corrupted catalog throught the SQL query, but if there is any corrupted full text catalog you will get errors in Application Log.
December 18, 2010 at 11:34 am
This blog has information you are looking for: http://blogs.msdn.com/b/sqlblog/archive/2006/10/06/msdtc-and-sql-server-on-a-cluster.aspx
December 18, 2010 at 11:13 am
You shouldn't delete default trace files. SQL Server overwrites oldest file when required, so you shouldn't worry that your disk will fill out with old trace files. If you monitor...
December 17, 2010 at 6:50 am
Check if your SQL Server has maximum connections number set. Possibly it reached this number and then when some sessions closed it returned to normal.
Also, if default trace for that...
December 16, 2010 at 9:17 pm
You can setup replication as one of the options. Set filter on tables to limit rows that will be replicated. I don't think this is the easiest way, but could...
December 15, 2010 at 6:48 pm
I just set this today for one of our databases:
1) Backup transaction log before indexes optimization
2) Move database to the bulk-logged recovery mode
3) Reorganize indexes
4) Move database back to full...
December 14, 2010 at 8:54 pm
This will work if you use table variable instead of temp table:
EXEC sp_executesql @statment = N' DECLARE @t1 TABLE
(
ID int
)
insert @t1
select 1
select * from @t1'
November 27, 2010 at 11:20 am
You can probably get a little bit advantage for database "A" if you create indexes on this database with SORT_IN_TEMPDB Option (http://msdn.microsoft.com/en-us/library/ms188281.aspx).
November 19, 2010 at 8:59 am
You can use SQL Server Profiler -> Deadlock graph Event. It will give you information about objects and statments.
November 19, 2010 at 8:54 am
If both of your SQL Servers use default port you will need to open these ports between two servers. I mean that you don't have to open any specific ports...
November 19, 2010 at 8:36 am
If alerts used to notify - you can increase "Delay between responses" option using alert's property.
November 19, 2010 at 8:27 am
No need to rename the groups as SQL Server will use groups SID.
November 18, 2010 at 6:54 am
You can try to set up alias on client computer using cliconfg.exe utility. Use old server name and new IP address. This may work without DNS changes.
November 18, 2010 at 6:47 am
Viewing 15 posts - 61 through 75 (of 286 total)