Viewing 15 posts - 46 through 60 (of 102 total)
Hi,
As you increase the amount of SQL Server memory, ensure that there is sufficient disk space to grow the operating system’s virtual memory support file (Pagefile.sys) to accommodate additional...
June 27, 2005 at 7:18 am
Hi,
Have you changed the Boot.ini file to make sure that it uses the available memory
June 24, 2005 at 2:12 am
Hi
Did you try to create partitioned views. It will automatically do the direction
Cheers
June 10, 2005 at 5:57 am
Thanks David for that info.
June 7, 2005 at 5:42 am
Did you explore the possible reasons
1. You are not using Local systems account on any server
2. You have a trust relationship properly established
May 25, 2005 at 2:58 am
Hi,
It's part of Hardware details ask your vendor about it. Try to find it from regeistry
May 23, 2005 at 2:21 am
Hi,
You need to revoke the permission for all objects except the one you want him to see. With what kind of login is he connecting via EM.
March 22, 2005 at 5:50 am
Hi,
You can also disconnect any users who have open connections to the server by using the ROLLBACK IMMEDIATE command. You can't use Enterprise Manager with this command; you must use...
March 21, 2005 at 9:20 pm
Hi,
What is the account with which SQL server(MSSQLSERVER ) is running. MSSQLSERVER must be running with a windows account which has got sufficient rights on the destination server.
Use
exec master.dbo.xp_cmdshell...
March 18, 2005 at 5:45 am
Hi,
Have you set
DBCC traceon(7300)
to get some trace info from SQL Server. It may produce some useful results, showing u at least one property that you did not set or provide. ...
March 17, 2005 at 9:58 pm
Hi,
ALTER TABLE Test_tbl ALTER COLUMN Name
varchar(50) NOT NULL
will take the default collation
March 17, 2005 at 9:23 pm
I don't think so. Because the status field in the sysdatabase field will be set when we specify this option. BOL says
March 17, 2005 at 9:21 pm
Hi,
Did you try using derived tables
select B.BotName
From
(SELECT BotName, COUNT(BotName) AS N
FROM dbo.SiteHits
GROUP BY BotName) as A Cross join
(SELECT BotName,...
March 17, 2005 at 9:08 pm
Viewing 15 posts - 46 through 60 (of 102 total)