Viewing 15 posts - 10,261 through 10,275 (of 18,923 total)
I wouldn't expect it to be anything else. You can't be that blind can ya
.
January 18, 2007 at 3:46 pm
Is there a trigger on that table?
Or a DDL trigger?
January 18, 2007 at 2:45 pm
Someone must frame this one and keep it posted on a board somewhere... That's just too good ![]()
.
Here...
January 18, 2007 at 2:19 pm
Got anything more usefull to offer Collin?
January 18, 2007 at 5:33 am
This should get you started
'ALTER DATABASE [' + @Dbname+ '] MODIFY FILE (NAME = [' + @LogLogicalName + '], SIZE = ' + CONVERT(VARCHAR(20), @NewLOGSize) + 'MB)'
You get the Logical...
January 17, 2007 at 11:23 am
And for the final blow : Which one executes the fastest??
January 17, 2007 at 9:40 am
Simple. No end user is using this so performance is not absolutely required in this case.
Here 10 seconds and I'm done.
I might also remind you that almost no DBA will try...
January 17, 2007 at 7:19 am
I really like the second idea, but then again you still could have more tables than the number you taught you'd need... so you'd really be screwed on that one.
Ex...
January 16, 2007 at 2:39 pm
I can already answer this one for you. I had been using that method for a while untill I saw the exponential part in the execution plan. So that's when...
January 16, 2007 at 8:31 am
Good points. As for seeing it in other posts you might from now on. As you said I'm very aware of the numbers table but it had never occured to...
January 15, 2007 at 9:06 pm
As I already said, even with only 1000 rows in the base table, the server will have to process up to 1 000 000 rows. That's why I'll often preffer...
January 15, 2007 at 9:04 pm
What are the columns that uniquelly identify the row (need some sort of tie breaker for this code)?
Can you add an identity column (teporary measure) to that table?
January 15, 2007 at 2:41 pm
Viewing 15 posts - 10,261 through 10,275 (of 18,923 total)