Viewing 15 posts - 406 through 420 (of 463 total)
I will agree with Gabor. Reduce the degree of parallelism. We have seen this issue quite often and it has pretty much triggered post SP3 and probably seems to be...
November 10, 2003 at 1:46 pm
Hi,
If you are renaming the server to a different name, you might want to update probably sysdtspackages and sysjobs tables with the name of the new server. You also will...
October 15, 2003 at 8:45 pm
That is what is confusing me. BOL says that output is in following order,.
DBID, Fileid,CurrentSize,MinimumSize, UsedPages,EstimatedPages. and definitions are as under.
CurrentSize : The number of 8-KB pages the file currently...
September 19, 2003 at 8:39 pm
I have seen this errors also in the event log. What i understand is that with the linked servers, somehow the session being created does not terminate on its own....
June 11, 2003 at 11:07 pm
Trun. log on checkpoint will change your recovery mode to simple and you will not be able to take transaction log backups any more.
June 11, 2003 at 11:01 pm
You can take the resources offline and then stop the services. The status of the node is checked every 0.5 secs and it responds within 0.2 secs. If it is...
May 23, 2003 at 8:09 am
you can execute the below.
declare cur_temp cursor for select spid from sysprocesses where dbid = db_id('database_name')
declare @spid varchar(10)
open cur_temp
fetch next from cur_temp into @spid
while @@fetch_status = 0
begin
declare @sql varchar(50)
set @sql...
May 22, 2003 at 11:00 pm
Thanks a lot everybody. This makes me understand that for a view the execution plan is being cached in the cache. With this understanding, I was just wondering whether a...
May 22, 2003 at 10:55 pm
Have you tried changing the account under which SQL server Agent runs and then re-start the Agent services ?
May 18, 2003 at 3:35 am
ians,
thanks for your reply. I will check that out.
mtmingus:
Check the value for protocolorder under supersocketnetlib key. It would should tcp np
May 15, 2003 at 4:20 pm
Steve,
Having said that, if i have two tables with say 100,000 rows each and i have a view which joins the two tables. And later on if i query the...
May 14, 2003 at 9:58 pm
ians,
Did you check the failover capability after removing named pipes.We had a simillar problem and from what i understood from microsoft was that you do need named pipes for failover....
May 14, 2003 at 5:06 pm
Antares,
Thanks a lot. Didn't think about that.
May 1, 2003 at 6:29 pm
I had issues connecting to remote server with openrowset function while using trusted connection. It did start happening after installing SP3, i.e. MDAC 2.7 SP1. I didn't check from...
April 29, 2003 at 9:50 pm
If you can't attach the database you might try doing the below steps.
Create a new database with the name of your original database.
Detach the data file.
Rename the old data file...
April 29, 2003 at 8:27 pm
Viewing 15 posts - 406 through 420 (of 463 total)