Viewing 15 posts - 18,676 through 18,690 (of 19,564 total)
SQL 2K8
Partitioned tables
Clustered
Mirrored
200Tb SAN
December 18, 2009 at 8:35 am
Paul White (12/17/2009)
Jeff Moden (12/17/2009)
Dunno if you're making a joke, but your's has a little red "X" and that's it.
Oh. No - not intending a joke - but I...
December 17, 2009 at 10:51 pm
I think it is a nice combination of both. There is an inborn desire to break things, or take things apart to see how it might work. Teaching...
December 17, 2009 at 10:49 pm
In SQL 2005, this can be accomplished through the use of a recursive CTE.
It sounds like you are building a Binary Tree, is that so?
December 17, 2009 at 10:34 pm
I would go to the client and propose two options - fix it (not a band-aid) or leave it as is. We had a funky setup similar to that...
December 17, 2009 at 10:28 pm
Please also the provide stored procedure and table structures.
December 17, 2009 at 10:21 pm
This sounds reasonable (have done a very similar thing).
For the executing query text, this should get you headed in the right direction.
select
session_id
,start_time,command, st.text
,last_wait_type
from sys.dm_exec_requests r
cross apply sys.dm_exec_sql_text(sql_handle) AS st
go
December 17, 2009 at 10:18 pm
Try this:
Add the IP and the FQDN of the witness to your DNS server. Add the fully qualified domain name of the principal and the witness in the host file...
December 17, 2009 at 10:02 pm
And after you reconfigure for the 2GB, what happens when you update stats?
Also, is the bad plan consistent? Is it slow on repeated executions of the query?
December 17, 2009 at 6:22 pm
That outclasses my laptop. I only have 2GB on it and am running SQL 2008 (and Server 2003). Performance is fine for what I am doing - development...
December 17, 2009 at 6:08 pm
correct on the getdate()
Just set the fields to be default values of the functions listed.
December 17, 2009 at 6:05 pm
Looks like it may be time for a new one already.
December 17, 2009 at 5:06 pm
Were you getting any error messages for the maintplan?
From Technet:
The Rebuild Index Task uses the ALTER INDEX statement when connected to SQL Server 2005, and the DBCC DBREINDEX statement when...
December 17, 2009 at 4:07 pm
Viewing 15 posts - 18,676 through 18,690 (of 19,564 total)