Viewing 15 posts - 136 through 150 (of 1,539 total)
Yes i have that URL. He explained that a parallel plan can also be executed by a single processor.
November 16, 2010 at 8:35 am
One of the applications that i was recently looking at had 32 indexes on the indexed view(1 clustered, 31 non clustered) :hehe:.
Last time i pulled report, it had 32000+...
November 16, 2010 at 5:38 am
In some cases, query processor may keep two plans, 1) without using parallelism, 2) using parallism and use either of them.
beyond that, i cant think why you are seeing several...
November 16, 2010 at 4:55 am
what query are you running to see that?
November 16, 2010 at 4:39 am
You either need to run profiler to capture the deadlock graph OR enable trace flag 1222 on your system
dbcc traceon(1222)
This will capture deadlock graph in the SQL Server's errorlog.
You can...
November 16, 2010 at 3:44 am
by default query processor generates multiple execution plan for any query that you submit and chooses one of them based on least cost. This is by design and you cannot...
November 16, 2010 at 3:29 am
saidapur_satish (11/16/2010)
I am using live database & my conpany requesting for MIRRORING database.....
If i start for mirroring the users will access the database or...
November 16, 2010 at 2:37 am
If the column is varchar, expanding it wont require additional space unless you update those columns with larger amount of data.
once you alter the table, you can update the table...
November 16, 2010 at 1:58 am
Deepthy (11/15/2010)
Hi all,How can I retreive all the queries that I ran on a particular database using sql profiler?
Any help is really appreciated
Thanks
you cannot retrieve historical information unless a...
November 15, 2010 at 4:46 am
looks like after filetering, you have saved the trace template which is overwritten with your settings.
you can remove the filter and save it again or get the template from some...
November 12, 2010 at 10:57 pm
sql server is waiting on disk IO which either means there is a disk contention issue or your disk is not able to cope up with the rate of data...
November 12, 2010 at 9:17 pm
duplicate post. please post your replies here.
http://www.sqlservercentral.com/Forums/Topic1019837-392-1.aspx
Edit - fixed the url.
November 12, 2010 at 9:14 pm
caladba (11/12/2010)
Lets say the fill factor is set to 80 and I have a non-clustered index without covering columns. When a new record is inserted (with the...
November 12, 2010 at 9:10 pm
i dont know if this would help but when i was a kid, i had a book that had hundreds of sets of simple mathematical quesions(simple ones). contained only +,-,*,/(more...
November 12, 2010 at 9:00 pm
Don Stevic (11/12/2010)
November 12, 2010 at 1:35 pm
Viewing 15 posts - 136 through 150 (of 1,539 total)