Viewing 15 posts - 256 through 270 (of 395 total)
I assume you have enough permissions on both machines. Try adding ports 445 and 139. Also please add Query analyzer to the exception list.
September 28, 2005 at 10:44 am
Any results? Run Debugging while Firewall is off... and netstat -an > netstat.txt
September 27, 2005 at 8:37 pm
You have to "... see which ports are open between the Client machine and the Remote Server machine". Ping Client and Remote machine. See which ports are open between...
September 27, 2005 at 1:46 pm
Actually you are right. I have Window 2000 and SQL Server SP3A on a remote server (debugging from XP SP2), that's why I got hotfix 944 from MS...
September 27, 2005 at 1:21 pm
So did you apply hotfix 944 as I suggested earlier? Try to turn off Firewall after that. Let us know.
September 27, 2005 at 12:32 pm
Apply SQL Hotfix 944 on Server.
Turn off your Firewall. Or add exception (add ports) to it which are related to your machine/remote machine using Stored Proc.
Also in the...
September 26, 2005 at 12:15 pm
I would suggest you to run DBCC showcontig with tableresults every wknd. For indexex, say with scan density over 75-90, you run Reindex. That way you always know...
September 26, 2005 at 11:26 am
See if it works:
Apply SQL Hotfix 944 on Server. If client doesnt have SP4 installed, install hotfix 944 too.
Turn off your Firewall. Or add exception (add ports) to it which...
September 26, 2005 at 10:32 am
Apply SQL Hotfix 944 on Server.
Turn off your Firewall. Or add exception (add ports) to it which are related to your machine/remote machine using Stored Proc.
Also in the Firewall...
September 16, 2005 at 12:50 pm
You might want to implement the following to perform a standard backup:
Create a table in master DB
with Database names, properties (such as status column: suspect, offline etc)
Loop thru all...
September 16, 2005 at 12:35 pm
You might want to try SQLLiteSpeed which stores backups compressed.
August 30, 2005 at 11:31 am
If you have Active Directory ( besides assigning job ownership to 'sa'), check if that server is up and running. Might need to restart it...
my 2 cents
August 24, 2005 at 11:26 am
Yes, you can. We use logshipping for reporting and DR purposes.
We restore logs from 5pm thru 4am and from 4am thru 5pm we run various reports. On wknd...
August 19, 2005 at 11:30 am
can it be something like:
if exists (select * from TEMPDB.dbo.sysobjects where id = object_id(N'[TEMPDB].[dbo].[#tempseverityerrorlog]'))
drop table [#tempseverityerrorlog]
create table #tempseverityerrorlog (lineid int identity(1,1),line varchar(500),ContinuationRow int)
insert #tempseverityerrorlog exec master.dbo.xp_readerrorlog
select * from...
August 18, 2005 at 9:50 am
Viewing 15 posts - 256 through 270 (of 395 total)