Viewing 15 posts - 136 through 150 (of 7,428 total)
Antares686 (4/1/2008)
April 1, 2008 at 12:46 pm
The only way I found was to setup replication and replicate the DB then use the sp_repldone. Then I removed replication and all was well. Probably could look at sp_repldone...
April 1, 2008 at 12:45 pm
Right, using GROUP BY ... WITH ROLLUP you can sort with the GROUPING function like so
ORDER BY
(CASE WHEN GROUPING(Byteid) = 1 AND GROUPING(Variance) = 1 AND GROUPING(Distribution) = 1 THEN...
April 1, 2008 at 12:40 pm
I currently am in a conference call but I almost bet you could accomplish your goal with GORUP BY WITH ROLLUP like this
SELECT
Byteid,
Variance,
Distribution,
SUM(Total) Sum_Total,
SUM(Tor) Sum_Tor
FROM
dbo.TTor...
April 1, 2008 at 12:06 pm
Just thought about it, if I am going to play some game for SQL DBA's maybe I want a little more Eye-Candy. Maybe something like Dead-Or-Alive SQL.:P
April 1, 2008 at 11:14 am
Hmmmm, maybe I need to pull out my copy of Doom source and write SQL Wars myself. Like the UNIX thing, never heard about that.
April 1, 2008 at 10:22 am
Tom the last Florida native (4/1/2008)
The follow-on to this: Next round of M$ certification tests are to be multi-player role playing games.
I want the half-geek/half-nerd with the C#/SQL class.
April 1, 2008 at 6:59 am
And I was looking to frag the Oracle DBA's. 😀
April 1, 2008 at 6:57 am
Above all else, if you are going to go back to school, do it because you want to and not because you feel like you have to. I stopped 20...
March 31, 2008 at 10:54 am
Aurelio Alvarez (3/28/2008)
March 31, 2008 at 8:29 am
How about this, then consider it when combined with biometrics
March 28, 2008 at 12:11 pm
What exactly do you mean? What is your setup and what is the total RAM?
March 28, 2008 at 11:14 am
rbarryyoung (3/28/2008)
Matt Miller (3/28/2008)
March 28, 2008 at 8:42 am
Did you set you batch size, when you call call like this
EXEC spUpdatepare 25000
this will affect 25000 records in the batch.
March 28, 2008 at 8:41 am
Was curious about that, didn't think top was correct in the syntax. Try this
CREATE Procedure spHugeTable_IncrementalUpdate( @RowsPerBatch int )
AS
SET ROWCOUNT @RowsPerBatch
UPDATE
GHOSTDATA
SET
...
March 28, 2008 at 8:15 am
Viewing 15 posts - 136 through 150 (of 7,428 total)