Viewing 15 posts - 2,371 through 2,385 (of 8,416 total)
GilaMonster (11/15/2010)
Or http://sqlinthewild.co.za/index.php/2007/11/15/execution-plan-operations-scans-and-seeks/
You can tell that's a very old entry - the description of how a heap scan works is wrong!
November 16, 2010 at 1:23 am
Jeff Moden (11/15/2010)
November 16, 2010 at 12:26 am
Scott,
The good news is that you are seeing minimal logging, but read on.
Minimal logging means that SQL Server does not log the individual row changes; it logs changes to pages...
November 15, 2010 at 11:41 pm
RichardDouglas (11/15/2010)
Paul White NZ (11/14/2010)
Saravanan_tvr (11/12/2010)
...how can we update the values in identity column?
Delete the row and then re-insert it with the correct identity value specified explicitly.
You will need SET...
November 15, 2010 at 6:42 am
GSquared (11/15/2010)
If you use OUTPUT INTO in the delete, the insert will be part of the same transaction.
How do you know the target table does not have enabled triggers, check...
November 15, 2010 at 6:25 am
GSquared (11/15/2010)
Paul: I'm not sure that a new value other than null, for "no value", would be more confusing to people than the current "null" issues.
Well I suppose there are...
November 15, 2010 at 6:20 am
shump66 (11/15/2010)
Thanks for the time I will pull the plan for you and test your script in my environment
I'll look forward to it.
November 15, 2010 at 6:16 am
Code to demonstrate the issue, and show that UDFs that access data cannot be persisted:
CREATE TABLE dbo.Data
(
...
November 15, 2010 at 6:02 am
ningaraju.n (11/10/2010)
Is there a way to reference columns of other table in computed columns except triggers?
You could use a UDF that references the other table, but please don't. Functions...
November 15, 2010 at 5:30 am
Dave Ballantyne (11/15/2010)
November 15, 2010 at 3:11 am
tommyh (11/15/2010)
November 15, 2010 at 3:07 am
November 15, 2010 at 2:46 am
There are a number of differences, but the three most important are:
1. In the Compute Scalar immediately above the Clustered Index Scan, the plan with the extra GROUP BY...
November 15, 2010 at 2:31 am
Definitely: Create the table with IDENTITY property and (only) the Clustered Index before loading. Ensure the destination database is in BULK_LOGGED or SIMPLE recovery (to enable minimally-logged bulk load).
Configure...
November 14, 2010 at 10:43 pm
upstart (10/27/2010)
November 14, 2010 at 10:28 pm
Viewing 15 posts - 2,371 through 2,385 (of 8,416 total)