Viewing 15 posts - 20,221 through 20,235 (of 22,202 total)
If you used a trigger wouldn't it have to be an "instead of" trigger?
June 4, 2008 at 10:46 am
You don't want my help. Here's a short[/url] account of all the problems we ran into attempting to virtualize some of our servers.
June 4, 2008 at 9:21 am
BTW, running the functions against the columns means you're only going to get table scans. The indexes will not be used.
June 4, 2008 at 8:21 am
Get an estimated execution plan for the query. It won't be terribly accurate, but it should give you some information as to why you're seeing things run so incredibly slow.
June 4, 2008 at 8:20 am
Seems like overkill.
Generally we approach it this way:
"Here are the top 10 poor performing procedures for database x"
"We have evaluated these procedures and identified possible fixes"
"Performance before the fix looked...
June 4, 2008 at 8:18 am
It sounds like you're not exactly working from a good set of SOA standards. By and large, in most cases, you should have one system defined as the absolute authority...
June 4, 2008 at 7:39 am
In 2005 use ordered GUID's. They make a huge difference in performance, especially if you have clustered indexes on the GUID. In 2000, you'll have to just deal with the...
June 4, 2008 at 6:55 am
Any time you're asked to tune a performance problem but told you can't touch the code (unless it's a third party app), you need to push back. More often than...
June 4, 2008 at 6:50 am
How many rows are in the table? I ran into a similar issue and posted it on Microsoft Connect because I thought I had a bug. It has to do...
June 4, 2008 at 6:48 am
We have similar problems. We've used two steps to resolve it. First, identify absolute owners of all the data you possibly can. The primary keys generated by those owning systems...
June 4, 2008 at 6:43 am
One way that comes to mind is to have a tinyint column that you increment manually as you insert data. Put two constraints on the column, one to make it...
June 4, 2008 at 6:36 am
There's a dependency in there somewhere. Why not get a copy of Red Gate's Dependency Checker (or whatever it's called) and run it against the database. It's VERY thorough and...
June 4, 2008 at 5:51 am
Viewing 15 posts - 20,221 through 20,235 (of 22,202 total)