Viewing 15 posts - 271 through 285 (of 609 total)
yes Adm_History2 has 50k records
so what would be the best way to update millions of records in batches if my query will loop for ever, can you pelase point me...
August 6, 2010 at 9:25 am
I still doubt if my query is correct for the logic i have given because i tried this query on a table of 50k records keeping them in transaction but...
August 6, 2010 at 8:24 am
from the above query, does the update perform better if I create non CI indexes on revno and fixpaid.
August 5, 2010 at 7:43 am
How about creating this set of transaction for each table and adding all these sets into one job step by that way i can do this for multiple databases in...
August 4, 2010 at 9:34 am
thanks for the info.
I have update a table (50 million) witout using batch and it ran for 17hrs and i killed so its rolling back. how do i knoe how...
August 4, 2010 at 8:08 am
can i do all my updates given above in the same transaction ? I was doubting as it invovles multiple tables.
August 4, 2010 at 7:44 am
is this update statement correct?
WHILE (1 = 1)
BEGIN
BEGIN TRANSACTION
update TOP (10000) dbo.Adm_History2
set fixpaid = case when...
August 4, 2010 at 6:47 am
how about doing this in batches as it involves 50 millions of records and i dont have that much log space.
how can i optimize this query, it taking very long...
August 4, 2010 at 5:00 am
I have something weired, i am kind of testing RAID 10 and RAID 5 by some insert queries, I am doing an insert into a permanent table on both RAID...
July 29, 2010 at 7:05 am
is there a way i can give ddl_admin but would like to restrict them from dropping any tables?
July 21, 2010 at 8:52 am
Viewing 15 posts - 271 through 285 (of 609 total)