Viewing 15 posts - 7,426 through 7,440 (of 7,597 total)
Both of above tables are properly indexed.
The overall process takes around 1 hour to execute the query.
I gotta say, those two statements seem contradictory 🙂 or you're on a terribly...
May 14, 2012 at 4:43 pm
Either one.
Adding a rowversion column to every table would indeed be huge overhead for no real gain, since it likely would never be used. Eight bytes per row would...
May 14, 2012 at 3:40 pm
True. I didn't explicitly mention it, but I meant using standard/approved methods, such as generating the legit commands:
CREATE LOGIN
EXEC sp_addlinkedserver
etc..
With the old master db there, you could get (almost)...
May 14, 2012 at 1:02 pm
You should be able to restore the master db to a different db name, if you want to pull data from the old master db directly in the SQL 2008...
May 14, 2012 at 12:50 pm
I didn't object to doing it on ONE table.
I merely pointed out that for SQL to try to do that on all tables, as a default, as it were, would...
May 14, 2012 at 8:10 am
Can anyone of you think of anything else?
Yes, cluster the table by date and/or employee; choose the column(s) and the order based on your other query needs.
Typically the clustered index...
May 11, 2012 at 3:26 pm
Yes, that can be done.
It's easier with linked servers but possible even without.
Do you have a Linked Server defined between the servers? Or do you prefer not to have...
May 11, 2012 at 3:20 pm
i need to record the last successful job run date in a table.
For an actual SQL job, SQL itself records that info.
Look in msdb.dbo.sysjobhistory.
To get the job name, join...
May 11, 2012 at 3:05 pm
No. Maintaining that on all tables would be a huge sacrifice of performance for no real gain.
May 11, 2012 at 3:00 pm
You're still fine. SQL will add an integer counter itself so it can tell the rows apart. It's some slight overhead but it's not a real issue.
If you...
May 11, 2012 at 2:06 pm
primary key = id
recorddate ascending = non unique, non clustered
That's your problem.
You must *cluster* by recorddate. Add a non-clus index on id, if you need it.
Lowell's change is vital...
May 11, 2012 at 8:17 am
How is "devicehistory" clustered?
If it's not clustered, or clustered by something irrelevant like an identity column, you could cluster it by recorddate and vastly speed up your queries.
Also, you should...
May 10, 2012 at 3:41 pm
I expected that, just wanted to be fair about it 🙂 .
The optimizer still needs improvement.
April 19, 2012 at 3:56 pm
Did you adjust the original query so you're doing an apples-to-apples comparison?
SELECT *
FROM #myData md
CROSS JOIN #patterns p
WHERE
md.descr LIKE p.pat
April 19, 2012 at 1:22 pm
Storing this will allow to keep our query sargable for best index usage.
Is that really necessary?
Won't SQL treat computations on a declared variable as a constant, so they are still...
April 17, 2012 at 3:26 pm
Viewing 15 posts - 7,426 through 7,440 (of 7,597 total)