Viewing 15 posts - 1 through 15 (of 21 total)
The index is scanned because it is retrieving all the rows in table B.
Regarding your question about if the index is useful or not, the proper response would be,...
October 2, 2012 at 5:31 pm
Make sure the SQL Browser service is running at the time this error occures.
July 5, 2012 at 12:56 pm
Hi thanks for the response,
But the distribution list is created in the domain, so it is visible from every other computer. I tested it from other computers and works correctly.
June 22, 2012 at 10:02 am
Hi I just wanted to show you that I finally got the answer I was looking for. Mr. Aaron Bertrand posted on this:
http://dba.stackexchange.com/questions/19527/capture-all-queries-that-use-hints
In summary this is the query...
June 20, 2012 at 10:54 am
Sean Lange (6/19/2012)
June 19, 2012 at 3:50 pm
Thanks guys for the quick response.
These are queries not stored procedures.
Second I would like to capture both table hints and query hints.
June 19, 2012 at 3:49 pm
have you try a ping to the database server?? does it works?
June 4, 2011 at 12:20 pm
If you can connect from another PC different from the database server, then it could be a problem with the names resolution, please try conect to the instance with the...
June 2, 2011 at 1:34 pm
You need to check the following things:
1) Is your SQL Browser running? Since you are accesing a named instance you need this service because normally named instances use dynamic ports,...
June 1, 2011 at 7:01 pm
Hi,
As I told you, install a new instance of SQL Server Express in a new machine, once it is installed, run this command in the SSMS:
use model;
go
sp_helpfile;
go
This command will give...
March 12, 2011 at 7:45 pm
I think the error message is clear your model database is corrupted, I would recommend a simple solution for this, install a regluar SQL Server Express instance in another machine,...
March 12, 2011 at 2:28 pm
Hi
Correct me if I am wrong but you want a key which is composed by three datatypes:
char(2) + date + smallint
If I was in your place I would just...
March 11, 2011 at 7:58 pm
Hello,
First create the new filegroup
USE master
GO
ALTER DATABASE Test1
ADD FILEGROUP Test1FG1
GO
ALTER DATABASE Test1
ADD FILE
( NAME = test1dat3,
FILENAME = 'k:\SQL\database.NDF',
SIZE = 200GB,
FILEGROWTH = 10GB)
TO...
February 9, 2011 at 7:40 pm
@Adiga you're the man, thank you so much for helpping me understand why I could not shrink my tempdb. I really apreciate your help.
Finally after running the...
December 16, 2010 at 1:01 pm
I disconect every session apearing in the sp_who2 which had a conection to tempdb and did the shrink but still no luck.I also tried to do it by the SQL...
December 16, 2010 at 12:33 pm
Viewing 15 posts - 1 through 15 (of 21 total)