Viewing 15 posts - 886 through 900 (of 14,953 total)
Definitely don't have those entries on my server.
Is it possible the server didn't do a clean shutdown? Like sudden loss of power or anything like that? It might...
August 28, 2012 at 2:18 pm
eric.lyons (8/28/2012)
dbcc checkdb runs on startup. This is an issue for any VLDB. It particularly is bad for mirroring and cluster failovers.
I rebooted my desktop yesterday morning. ...
August 28, 2012 at 2:09 pm
CptCrusty1 (8/28/2012)
I was starting to lean towards Cross Join; however, I'd never had an opportunity to use it before. Seems like it behaves...
August 28, 2012 at 1:48 pm
laurie-789651 (8/28/2012)
GSquared (8/28/2012)
CptCrusty1 (8/28/2012)
Laurie,Thanks for your reply. The "Values" reserved word didn't fly in 2005. Is that a 2008+ term?
Thanks
Crusty
That's what's called a "Table Values Function", and it's...
August 28, 2012 at 1:47 pm
The first mistake that comes to mind is that you shrank the database after rebuilding the indexes, per the last line of your post. That will slow queries down...
August 28, 2012 at 1:42 pm
CptCrusty1 (8/28/2012)
Laurie,Thanks for your reply. The "Values" reserved word didn't fly in 2005. Is that a 2008+ term?
Thanks
Crusty
That's what's called a "Table Values Function", and it's 2008+. ...
August 28, 2012 at 1:16 pm
I did a big-table test on a couple of these.
Test-harness:
CREATE TABLE dbo.SequenceSkips
(Num1 INT NOT NULL,
Num2 INT NOT NULL,
...
August 28, 2012 at 1:11 pm
Lynn Pettis (8/28/2012)
CREATE TABLE #Temp
(TNID INT, TN BIGINT);
INSERT INTO #Temp
SELECT 3011170, 4402787100
UNION ALL SELECT 3011170, 4402787101
UNION ALL SELECT 3011170, 4402787102
UNION...
August 28, 2012 at 11:54 am
As an alternative (sorry for the fragmented posting, it's been a long day), you might want to look into what those jobs are doing, and see if there's a better...
August 28, 2012 at 11:30 am
That's a system update. I don't think there's really anything you can do about it directly.
Depending on what else the server is used for, you might relieve cache-pressure by...
August 28, 2012 at 11:27 am
Since the data depends on sequentiality, which isn't a property of relational data, you'll need a non-relational solution. That means a simple cursor.
Step through the rows, if the TN...
August 28, 2012 at 11:20 am
Eugene Elutin (8/28/2012)
...
You can slightly simplify this be leaving out the Group By clause in the subquery. It's not necessary, since the Where clause already enforces a distinct value....
August 28, 2012 at 11:07 am
GilaMonster (8/28/2012)
You can't create a clustered index with include columns. Gives an error if you try.
I know. That's part of what "You'll see what it does for yourself" was...
August 28, 2012 at 11:00 am
I get a floating point error instead of a domain error, but I'm using SQL 2008 R2, so maybe they just changed the error message for this type of thing.
By...
August 28, 2012 at 10:59 am
Viewing 15 posts - 886 through 900 (of 14,953 total)