Viewing 15 posts - 19,696 through 19,710 (of 22,202 total)
How many rows are in the table and how wide are they? If the data can fit on only a few pages, you're probably looking at maximum defrag now.
August 18, 2008 at 9:17 am
I'd have to see an execution plan for the good execution and one from the bad execution to even make a guess as to what's going on.
As to the locking,...
August 18, 2008 at 9:14 am
You'll get the joins between tables because of the referential integrity checks that are a necessary part of any delete. However, putting an index on a column like DeleteId will...
August 18, 2008 at 6:33 am
The principal difference between the two is that the inline table valued function can be built with a parameter where a view cannot. Most of the time, but not all...
August 18, 2008 at 6:30 am
It sounds like you're debating normalized vs. denormalized data.
For very simple select statements that don't involve much in the way of filtering, but simply pull data based on a key...
August 18, 2008 at 6:26 am
No kidding, drop the grenade & run...
They could be doing something silly with reseed?
August 18, 2008 at 5:43 am
I'm running it side-by-side with 2005. One of my co-workers has 2000, 2005, and 2008 all running on his personal machine with no issues from any of them. The same...
August 18, 2008 at 5:13 am
Maybe something like this (untested since you don't have structures posted):
SELECT T_OrderHeader.OrderID,T_OrderHeader.CustomerID,T_OrderHeader.ShipTitle, T_OrderHeader.ShipForename,T_OrderHeader.ShipSurname,
CONVERT(NVARCHAR(20), T_OrderHeader.OrderDate,...
August 15, 2008 at 10:50 am
It's hard to tell you explicitly what happened without the data and structures, but you seem to have a data issue: "Error converting data type varchar to numeric". That means...
August 15, 2008 at 7:15 am
The secret to dancing is to not giving a flying rat's patootie what you look like while dancing. No, it won't make you dance better, but you'll have more fun....
August 15, 2008 at 6:17 am
I work for a larger company. We don't spend a lot per person and nothing like 5%, that would be great. However, they do have tuition reimbursement and the boss...
August 15, 2008 at 5:39 am
That's where I was trying to get with the do vs. juisu. Look at an Iaido practioner and then an Iaijuitsu practictioner. The difference is huge, although, to a degree,...
August 14, 2008 at 12:20 pm
Personally, I'd use BIDS, but that has a bit of a learning curve to it. You might want to start with the wizard to see if it will do what...
August 14, 2008 at 10:33 am
abatej (8/14/2008)
August 14, 2008 at 9:28 am
So change the JOIN on that table to a LEFT JOIN. That means all the data will return from the main table and only those rows that match from the...
August 14, 2008 at 8:15 am
Viewing 15 posts - 19,696 through 19,710 (of 22,202 total)