Viewing 15 posts - 136 through 150 (of 283 total)
Grant Fritchey (3/28/2014)
Not sure what you mean by batch delete. SET ROWCOUNT just limits the rows returned, but the query plan and the access of...
March 28, 2014 at 6:22 am
i am using sql server 2000.
but why there is time difference?
why peoples are suggestung to use batch delete?
March 28, 2014 at 4:38 am
andrew gothard (3/27/2014)
Oh - and if you've made the mistake of update / delete cascade being set to on, do not delete from the parent table. Use an approach...
March 27, 2014 at 11:02 pm
Sean Lange (3/27/2014)
March 27, 2014 at 8:16 am
Delete operation takes more or less same time i dont see any improvement in the query when i have batch delete. To delete some 1 million records.
atually the approach...
March 27, 2014 at 7:55 am
Sean Lange (3/27/2014)
I would recommend though that you have some other column as your clustered index.
Coludn't get you.
You mean to say primary key clusterindex on the child tables??
March 27, 2014 at 7:47 am
Koen Verbeeck (3/21/2014)
You don't need to know how SQL Server works internally just to create a table.
If...
March 21, 2014 at 2:33 am
Table max size will be of around 30-50 million records.
data type will be wil be storing some max size of 1829683708 (+/-5million) less than INT(2147483648).
how internally the records are readed...
March 21, 2014 at 2:17 am
You should see at least a 10x performance improvement versus single record delete. It will vary depending on how big you make the batch size for the delete. We have...
March 20, 2014 at 7:24 am
GilaMonster (3/19/2014)
Yes, there will be impact. Shrink is an IO-intensive operation (does a huge amount of IO operations)
Actually DBCC Shrinkdatabase is back ground operation , it should not affect usual...
March 20, 2014 at 3:08 am
GilaMonster (3/19/2014)
Sure. Shrink's an IO intensive operation.
You are saying that there will be impact or how?
Sorry unable to get you.
March 19, 2014 at 8:33 am
Will there be any impact in insert or select or delete or update statement like slowness
March 19, 2014 at 7:46 am
Is there a better way to do so to delete the records checking with another table.
March 17, 2014 at 7:37 am
Table A is having 100k records
Table B is having 8000k records
When i delete the TableB with TableA record exists the query is taking long time thats why i...
March 17, 2014 at 7:12 am
declare @pdate datetime
set @pdate = getdate()-7
--Start by getting the records to delete
SELECT ID
INTO #DeleteKeys
FROM TESTDATA WITH (NOLOCK)
WHERE RUN_START_TIME <=@pdate
If i have refer another table for delete then will this...
March 17, 2014 at 6:29 am
Viewing 15 posts - 136 through 150 (of 283 total)