Viewing 15 posts - 46 through 60 (of 242 total)
Grant Fritchey (9/27/2011)
Tim Walker. (9/27/2011)
We're now about to kick off another round of...
September 28, 2011 at 1:30 am
I started this thread more than a year ago now. Thanks very much for the replies to date.
We're now about to kick off another round of evaluation (partly using Redgate...
September 27, 2011 at 6:37 am
Thanks for the feedback Grant, it's appeciated. Also good to know that RedGate are bought into SQL Azure (I suppose you should be given how Microsoft are positioning it!)
Grant Fritchey...
June 15, 2011 at 2:52 am
Steve and Ray,
Sorry for the delayed response (I've been on holiday).
Thanks for the feedback. I was hoping there might be an easy way to check, but I guess I can...
June 13, 2011 at 6:46 am
Michael that's a very fair point.
Don't get me wrong. For some things I can see it would be great. Ticketing applications are the obvious example where the latest hot thing...
May 26, 2011 at 2:20 pm
Thanks for the link Steve.
I agree that cost is a barrier, but I don't think it was the main barrier for me.
What I didn't like was that it's not...
May 26, 2011 at 1:23 am
Janie.Carlisle (5/19/2011)
May 23, 2011 at 2:17 am
Thanks Carl!
I have reviewed the article, and this appears to be exactly what has happened. I can track through the messages in the log as described over a nine minute...
March 21, 2011 at 10:28 am
Thanks for the feedback GSquared. One thing I should have added was that the performance issues reported to me are on the same server but different databases. So I'm wondering...
March 21, 2011 at 7:00 am
The same principle 'probably' applies
i.e. Create table and clustered index, populate IN CLUSTERED INDEX ORDER, create additional indexes
But...
(1) With this much data you may well be sorting it first...
September 14, 2010 at 8:10 am
Which is why I said 'BE CAREFUL'.
Clearly using the script in the wrong circumstances could get you fired!
September 13, 2010 at 9:08 am
In the general options, click 'Script Drop' which is false by default.
I think this will do what you want.
September 13, 2010 at 9:04 am
My preference, if this is possible to do in your scenario, is:
1. Create table and unique clustered index
2. Insert data IN ORDER OF CLUSTERED INDEX
3. Create non clustered indexes
This way,...
September 13, 2010 at 9:01 am
Sorry, previous post lost the last bit.
-- Tables with foreign key constraints acting on them must be deleted
SELECT
'DELETE FROM ['+name+']'
FROM
sysobjects
WHERE
xtype = 'U'
AND name NOT...
September 13, 2010 at 8:54 am
Running this will create a script to do it.
It works in 2008 but yes, I know it is deprecated code - I presume the OP just wants something to use...
September 13, 2010 at 8:52 am
Viewing 15 posts - 46 through 60 (of 242 total)