Viewing 15 posts - 1,276 through 1,290 (of 9,641 total)
If you have multiple datasets the rowcount is the sum of all rows returned by all datasets in the report, not just the main dataset.
September 10, 2013 at 7:29 am
An execution plan would be helpful as well.
I don't think the issue is the clustered index, although it could be, but the only thing that would change by...
September 10, 2013 at 7:16 am
Just thought, if this query is in a stored procedure, I like to see if using temp tables for tables used multiple times in a query can help speed things...
September 10, 2013 at 7:07 am
It is highly unlikely that having a clustered key on an identity column is causing deadlocks. An identity column is typically a very good candidate for a clustered key...
September 10, 2013 at 6:55 am
Have you looked at the Wait Stats?
Also, the common question, what has changed? Has there been a service pack applied to SQL, the OS? Has something changed in...
September 10, 2013 at 6:52 am
Hey is anyone going to be at the SQLSaturday this week in Orlando or next week in Providence? If you are be sure we see each other.
September 9, 2013 at 4:20 pm
Grant Fritchey (9/9/2013)
September 9, 2013 at 4:19 pm
SSMS doesn't know about the servers. If you want to connect to a SQL Server local to your PC you can put in a ".", "Local", "LocalHost" if it...
September 9, 2013 at 10:03 am
Rod at work (9/6/2013)
HanShi (9/5/2013)
September 9, 2013 at 9:44 am
Here's an example that shows what is probably happening to you:
DECLARE @ProductionShift TABLE
(
StartTime VARCHAR(10),
EndTime VARCHAR(10)
...
September 9, 2013 at 7:31 am
First, running CHECKDB monthly probably isn't often enough. Basically you are saying we can live with having to go back possibly months to a clean database. Check this...
September 9, 2013 at 7:17 am
Something like this should work:
DECLARE @test-2 TABLE
(
RowID INT,
DateStamp DATE,
PrevStatus INT,
...
September 9, 2013 at 7:04 am
Tom,
I was going to mention the bug and link to the connect item. I also need to mention that RedGate Sql Data Compare doesn't re-enable FK's with CHECK when...
September 7, 2013 at 7:34 am
Steve,
I can take this one. Especially since I've been burned by it.
September 6, 2013 at 9:30 am
I think the REPLACE function will do what you need.
September 6, 2013 at 9:27 am
Viewing 15 posts - 1,276 through 1,290 (of 9,641 total)