Viewing 13 posts - 121 through 133 (of 133 total)
Seems like you are trying to answer the wrong question, really.
But yes, Linked Server Performance is known to be poor. Honestly I don't understand all the underlying reasons but...
September 30, 2010 at 1:05 pm
The users may be orphaned - did you recently restore the database from a backup?
Run this query -
EXEC sp_change_users_login 'Report'
If the logins show up on the list, run
EXEC...
September 30, 2010 at 12:20 pm
Craig's sql statement is cleaner - do something like what he wrote.
September 30, 2010 at 12:11 pm
That update looks very RBAR to me (google RBAR if you are not familiar with the term).
Not knowing much about the guts of what you are actually trying to...
September 30, 2010 at 12:07 pm
How big is the partition that tempdb is on? What does your sysprocesses table look like when the cpu starts spiking ( as in, do you see one spid absorbing...
September 30, 2010 at 9:03 am
Just another avenue, kinda basic but haven't seen anything to the effect that you have done this yet, you might wanna verify - are you sure you dont have a...
September 29, 2010 at 6:47 am
Yea, the drop/create table is brutal... however what about drop/creating all the indexes if they won't shrink? if the table has 0 rows that seems like a pretty safe option,...
September 27, 2010 at 1:24 pm
You could do a DBCC shrinkdb... but that would be a database-wide shrink which may not be desirable.
You could also drop/create table...
September 27, 2010 at 12:14 pm
Not a book, but an excellent resource nonetheless -
September 27, 2010 at 12:11 pm
Why not just remove all "(", ")" and "-" characters, similar to
REPLACE(REPLACE(REPLACE(phone_number, '(', ''), ')', ''), '-', '')
And then maybe do an additional check like ISNUMERIC(),
Then if the validation...
September 27, 2010 at 11:49 am
Where is the option for violating the rule "Don't attempt to cram 10 table's worth of entities and attributes into 1..."
September 24, 2010 at 11:39 am
Perhaps you aren't looking for someone to ask this, but why are you thinking of partitioning? Are you having performance problems? Do you have slow running queries?
My thoughts on...
September 22, 2010 at 1:41 pm
Ah, tricky question. The gotcha is the "User-defined function" element. If I had read it twice over, I may have gotten it right 😀
July 6, 2010 at 6:11 am
Viewing 13 posts - 121 through 133 (of 133 total)