Viewing 15 posts - 4,816 through 4,830 (of 10,144 total)
If the log file has insufficient free space to handle the logging data from a batch of deletes, then yes the file will grow. Are you manually changing the size...
April 15, 2013 at 4:08 am
afuchs 47083 (4/4/2013)
I tried to create a new userdefined function for calculating the average of top 10 values on different columns of my table:
Example:
SELECT AVG(a02) FROM (SELECT TOP...
April 15, 2013 at 3:53 am
Krishna1 (4/15/2013)
the script given gives me the size of the log file and used space. I would line to know why delete operation should increase the log file?
Deletes are fully...
April 15, 2013 at 3:44 am
Krishna1 (4/15/2013)
After addind checkpoint also its increading the log file size
Even with batching, simple recovery mode and checkpointing, there will be a minimum log space requirement for each batch. If...
April 15, 2013 at 3:34 am
MERGE Vacancy.TB_FTSearchData as t -- target
USING vacancy.TB_Vacancy as s -- source
ON t.FTSearchVacancyInternalID = s.VacancyInternalID
AND t.FTSearchContractID = s.VacancyContractID
WHEN not Matched by source THEN DELETE
WHEN not Matched by target...
April 15, 2013 at 2:15 am
28.kanikasoni (4/12/2013)
I want to use 2 DMLS in When not Matched by target clause ie. first insert and then update.But I am getting problem while executing this code .Please...
April 15, 2013 at 1:49 am
Pivot or crosstab. Can you provide a few more details? There's a link in my sig providing posting guidelines.
April 15, 2013 at 1:43 am
Something like this?
;WITH Resolver AS (
SELECT [Level] = 1, CompanyID, CompanyName, Heirarchy, ParentCompanyID,
Hpath = CAST(CompanyID AS VARCHAR(50)),
ParentCompanyNames = CAST(NULL AS VARCHAR(100))
FROM Company
WHERE ParentCompanyID = 0
UNION ALL
SELECT [Level] = r.[Level]+1,...
April 15, 2013 at 1:32 am
Melanie Peterson (4/12/2013)
April 12, 2013 at 8:32 am
Problem is Voice has 20 case statements,
Can you post up three or four of them please?
April 12, 2013 at 8:26 am
Rob-350472 (4/12/2013)
FYI the #test replica on my 'real'...
April 12, 2013 at 8:11 am
Lynn Pettis (4/12/2013)
April 12, 2013 at 8:02 am
DevDB (4/12/2013)
Use Batch insert/update/ delete instead of doing it in one big batch.
The OP is batching.
April 12, 2013 at 8:01 am
Shouldn't templateID be a column in LitHoldDetails? I think you've got the relationship the wrong way round.
April 12, 2013 at 7:57 am
Viewing 15 posts - 4,816 through 4,830 (of 10,144 total)