Viewing 15 posts - 12,181 through 12,195 (of 14,953 total)
Thanks for the data. Not sure if I'll need it, but I'm sure someone will.
August 27, 2008 at 3:13 pm
I had a problem similar to this once when I forgot to tell the agent to use the DB Mail profile to send alerts. Is it possible you haven't...
August 27, 2008 at 2:42 pm
I'm not sure what you mean by an online notification. Do you mean having data on a web page, or do you mean an e-mail, or something else?
August 27, 2008 at 2:40 pm
The transaction log can't be eliminated. The transaction is (essentially) processed in there, then in the actual tables.
If that transaction expands the file, then there's no real way around...
August 27, 2008 at 2:39 pm
The problem is probably the common misuse of "ie", with "eg" being what was intended. After all, "FROM" is a predicate, just like "WHERE", which would make the statement...
August 27, 2008 at 2:17 pm
GilaMonster (8/27/2008)
Marios Philippopoulos (8/27/2008)
August 27, 2008 at 2:14 pm
I missed the TN column in the Where clause. That would be needed too.
Because of the B-tree nature of indexes, a non-clustered index should do just fine for this.
Here's...
August 27, 2008 at 11:03 am
Rather than relying on a shotgun approach like the missing index DMV, I tend to hit the low performance queries and tune them one at a time. That can...
August 27, 2008 at 10:44 am
Are you in Management Studio or Business Intelligence Development Studio?
August 27, 2008 at 10:37 am
If that query is the only thing being considered, how about both?
create clustered index CIX_Table on dbo.Table (CID, IDt)
But, as always, things like inserts, updates, deletes, and other...
August 27, 2008 at 10:36 am
You could build your own test system for that kind of thing, and it certainly could use AdventureWorks, but you're almost certainly better off getting something rather than building it.
August 27, 2008 at 10:32 am
I guess it depends on the tests you're trying to do. What performance testing are you looking at doing?
August 27, 2008 at 7:57 am
Why build a function for it? That's row-by-row processing. The join I gave you should do what you need. I've used that type of construct many times...
August 27, 2008 at 7:54 am
Viewing 15 posts - 12,181 through 12,195 (of 14,953 total)