Viewing 15 posts - 271 through 285 (of 544 total)
GilaMonster (5/29/2012)
May 29, 2012 at 5:29 am
Hi Dwain,
I tried with while loop...but it is taking thrice the time of cursor....
so what i think is, cursor is good at least for this process...
May 29, 2012 at 4:48 am
dwain.c (5/28/2012)
Charmer (5/28/2012)
anthony.green (5/28/2012)
While I am loathe to admit it, I have a couple of cases where processing a large number of...
May 29, 2012 at 2:27 am
anthony.green (5/28/2012)
now depending on what your cursor is doing will depend on...
May 28, 2012 at 8:45 am
anthony.green (5/28/2012)
May 28, 2012 at 8:25 am
Andy Hyslop (5/28/2012)
You could add ROW_NUMBER() in your query and process WHERE ROW_NUMBER() < 10000 , WHERE ROW_NUMBER() BETWEEN 10001 AND 20000 ectAndy
Andy, I use cursors...so is it possible to...
May 28, 2012 at 8:09 am
If i need to process all the records in batches , what i have to do?
i mean if i have 50000 rows, i need to process first 10000 and then...
May 28, 2012 at 8:06 am
anthony.green (5/28/2012)
declare a variable and set it to the variable + @@rowcount on each itterationdeclare @rc bigint = 0
It really did worked...Thank you anthony...
May 28, 2012 at 7:33 am
michael vessey (5/18/2012)
GilaMonster (5/17/2012)
michael vessey (5/17/2012)
you should be able to free up the space in the tempdb after the operation has completed usinguse tempdb
go
dbcc shrinkfile(2,1)
dbcc shrinkfile(1,1)
Please do not suggest...
May 18, 2012 at 2:42 am
Lynn Pettis (5/17/2012)
Do you really need to do all those LTRIM(RTRIM()) function calls in your join criteria? That is one thing that is potentially killing your query.
yes Lynn, i...
May 17, 2012 at 10:07 am
ChrisM@Work (5/17/2012)
Charmer (5/17/2012)
ChrisM@Work (5/17/2012)
If not, and if the source of the insert...
May 17, 2012 at 9:50 am
ChrisM@Work (5/17/2012)
If not, and if the source of the insert was a...
May 17, 2012 at 9:15 am
ChrisM@Work (5/11/2012)
Charmer (5/11/2012)
Thank you Guys...i am clear now..You will be if you can find the time to read this excellent article by David Durant[/url].
Thanks Chris..Definitely i would read it...
May 11, 2012 at 7:20 am
ChrisM@Work (5/11/2012)
Charmer (5/11/2012)
I am here to discuss the general topics of index....
One of my colleague says if we add filtering(where statement) , it will affect index. Is that true.?...
May 11, 2012 at 6:58 am
Viewing 15 posts - 271 through 285 (of 544 total)