Viewing 15 posts - 31 through 45 (of 223 total)
Can you also post the query
August 4, 2009 at 3:44 am
Hi,
Did you clear your windows log and resolve the SPN issue. We can go further into debugging this issue if you can do these two things.
August 4, 2009 at 3:24 am
Hi,
But keeping your files in C (which is a system drive) is not at all recommended.
August 4, 2009 at 2:57 am
Hi Suresh,
Please post the create scripts for table structure,index and sample data and also the query execution plan. If you have only 20...
August 4, 2009 at 1:48 am
Try this
Create Procedure dbo.GetLastID2(@Table_Name varchar(25))
As
Begin
DECLARE @sqlString varchar(100)
SET @sqlString='select top 1 id from '+@Table_Name+' order by id desc'
EXECUTE sp_executesql @sqlString
END
GO
August 4, 2009 at 1:43 am
Hi,
Can you post the query execution plan.
August 4, 2009 at 1:40 am
Hi,
As you can see there are lot of errors in the error log.
FCB::Open failed: Could not open file D:\PROD\MSSQL.3\MSSQL\DATA\model.mdf for file number 1. OS error: 32(The process...
August 4, 2009 at 1:19 am
Hi,
Whenever you get any error you need to check two things.
1. Is there any error in sql error log.
2. Is there any error in windows event...
August 4, 2009 at 12:35 am
Hi Madhu,
I think MS supports both enterprise and standard on a single server if your software is legally purchased. But when you have...
August 3, 2009 at 11:56 pm
Hi Vinod,
I am working for past 4 years as sql dba. I had seen many of my team members(oracle dba's) (even who are from other...
August 3, 2009 at 6:50 am
Per my understanding,if we are installing the SQL Server Through the SQLcmd prompts without having the SSMS, then only it can have allow to install the "Named Instance" directly for...
August 3, 2009 at 1:16 am
Viewing 15 posts - 31 through 45 (of 223 total)