Viewing 15 posts - 271 through 285 (of 308 total)
Hi Gail,
Is the script I posted from Ola's site? I wasn't trying to take credit for anyone's script, it's just something I use.
Andrew
January 29, 2013 at 1:27 pm
Sorry! Just realised that the firewall won't be the problem.
Try connecting again and have a look at the SQL Server error logs and the application/system event logs.
January 29, 2013 at 1:22 pm
Alright this is starting to bug me now.
Can you have a look at the Windows Firewall settings on the server running SQL?
January 29, 2013 at 1:15 pm
No worries, good link
Summary
No Wait - will cause the statement you are executing to fail if there are open transactions
Roll back Immediate - will rollback open transactions when you execute...
January 29, 2013 at 1:09 pm
In the SQL Server Configuration Manager, is TCP/IP and Names Pipes enabled for remote connections?
If they have recently be changed the instance will also need to be restarted.
January 29, 2013 at 12:58 pm
What you're looking for is objects that no longer exist in the database but may be generating the allocation errors
January 29, 2013 at 12:48 pm
Same error when connecting in SSMS?
January 29, 2013 at 12:43 pm
OK, just trying to help.
As the first allocation error does not reference an object try creating a maintenance plan with a rebuild index task in it. Script out the index...
January 29, 2013 at 12:42 pm
If you can connect to the instance from the client side with SSMS then the problem must be with stunnel.
Sorry I'm not familiar with stunnel.
January 29, 2013 at 12:31 pm
Hi,
Was the database in single user mode when you ran the repair?
Andrew
January 29, 2013 at 12:28 pm
I know this one doesn't cover everything but it's free!
January 29, 2013 at 12:21 pm
OK, as you can connect to the instance within the network the problem is not there.
Have you tried specifying the port in the connection to the instance?
January 29, 2013 at 12:13 pm
Hi,
Have a look at Brent Ozar's website, loads of good scripts there (sp_Blitz).
Andrew
January 29, 2013 at 12:08 pm
Hi, I use the following script, is this any help?
CREATE PROCEDURE dbo.[IndexRebuild] AS
DECLARE @TableName NVARCHAR(500);
DECLARE @SQLIndex NVARCHAR(max);
DECLARE @RowCount INT;
DECLARE @Counter INT;
DECLARE @IndexAnalysis TABLE
(AnalysisID INT IDENTITY(1,1) NOT NULL PRIMARY KEY,
TableName...
January 29, 2013 at 12:04 pm
Are you using a SQL Server authenticated account to login?
January 29, 2013 at 11:32 am
Viewing 15 posts - 271 through 285 (of 308 total)