Viewing 15 posts - 1,066 through 1,080 (of 1,365 total)
Just to confirm have you specified the named pipes pipe correctly(pointing to the instance you want to connect)?
MJ
September 24, 2008 at 4:35 pm
Have you tried by disabling antivirus, system level tasks that are running outside of SQL? Might be faulty dirver sort of issue...
MJ
September 24, 2008 at 12:13 pm
Is the recovery model for KPIMaster database set to SIMPLE?
Check whether any such recovery model change was made for any database which is included under the list of databases backed...
September 24, 2008 at 11:15 am
Is it 32-bit or 64-bit SQL Server Edition? Have you tried changing the max server memory to 5.5 or somewhere around 6.0? Also, try changing min server memory to 2...
September 24, 2008 at 11:06 am
I don't think it makes any performance impact.
Its just used becasue the remote server collation isdifferent from the source one:
Use Remote Collation:
Determines whether the collation of a remote column or...
September 24, 2008 at 10:14 am
Have a look at:
about What you should know if you are using Logical IOs to measure query plan quality ?
MJ
September 23, 2008 at 10:55 am
The following code worked for me:
DECLARE @ServerName varchar(255)
DECLARE @sql as varchar(6000)
DECLARE c1 CURSOR READ_ONLY
FOR
SELECT name
FROM dbo.tbl_serversT
OPEN c1
FETCH NEXT FROM c1
INTO @ServerName
WHILE @@FETCH_STATUS...
September 23, 2008 at 10:37 am
Try comparing physical and logical reads on both system by turning on statistics for I/O.
SET statistics io on
MJ
September 19, 2008 at 4:38 pm
As Gail said compare the execution plans....
MJ
September 19, 2008 at 4:25 pm
Check whats the cost involved(from execution plan) when you specify the required index by using index hint. Turn on statistics (set statistics io on) and check logical and physical reads.
Do...
September 19, 2008 at 2:30 pm
To giv it a start:
select name as Job_Name,substring(command,charindex(' -',command),100) as Commandsd,sd.database_name
from msdb..sysjobsteps js join msdb..sysdbmaintplan_jobs jp
on
js.job_id=jp.job_id
join msdb.. sysjobs sj on
js.job_id=sj.job_id
join msdb..sysdbmaintplan_databases sd
on sd.plan_id=jp.plan_id
MJ
September 19, 2008 at 12:19 pm
How much memory has been allocated to sql server? Are you making use of lock pages in memory option--http://support.microsoft.com/kb/918483.
MJ
September 19, 2008 at 9:10 am
Make sure no other program is using those files(any antivirus running in background). Also, if you have utilities like filemon you can view the processses using that file..
HTH
MJ
September 19, 2008 at 8:35 am
Try this:
In your DTS package select the Dynamic Properties Task. Open the
properties for that task and click on Add. Next expand the connections
and select the output file to...
September 18, 2008 at 2:59 pm
Thanks Jeff. I also got one(http://support.microsoft.com/default.aspx?scid=kb;en-us;177078) but your's one looks fine.
Thanks again,
MJ
September 18, 2008 at 8:35 am
Viewing 15 posts - 1,066 through 1,080 (of 1,365 total)