Viewing 15 posts - 61 through 75 (of 98 total)
If you don't have much data,
first go to the options and restrict the log size for the db to a small value.
and then try doing delete operation within a transaction,...
October 8, 2014 at 4:01 am
Sorry for the confusion . My question was why the previous statement should be terminated before starting cte . my bad , I wrote it wrong .
Well I got the...
October 7, 2014 at 11:34 am
Yes, exactly these are restricted operators within function.
But what actually are they and how can we say an Insert/Update/TryCatch as Side effecting when used within function
September 12, 2014 at 3:19 am
GilaMonster (9/24/2011)
September 11, 2014 at 7:19 am
To get last updated date you can also use dbcc show statistics
September 10, 2014 at 11:40 am
Hey dinsab ,
May I know the reason of rebuilding indexes.
Due you see a lot of fragmentation on your indexes.
September 10, 2014 at 10:27 am
Yes, rebuilding won't count towards data modification. But if he is planning for indexes rebuilt, I guess some heavy updates might be the reason for that. So in case we...
September 10, 2014 at 10:15 am
I don't think u need to update column stats as well. If your rebuilds and updates have affected enough rows in table I.e. the threshold value for triggering auto update...
September 10, 2014 at 9:13 am
Well this is bug in BIDS2008
I have tested the same in DataTools2010 and it works fine.
I am using 2008R2, I think I am missing some Patch for this
September 5, 2014 at 8:26 am
Buffer Size is Default i.e. 10485760
And BatchSize, I guess is MaxInsertCommitSize viz. 100
September 5, 2014 at 5:11 am
How can I see / prove programmatically that index X is too wide
You can use this query to see the index size:
SELECT index_depth AS D
, index_level AS L
, record_count...
September 3, 2014 at 7:09 am
My Bad.
Drop_Existing will not cause Non clustered indexes to rebuilt , no matter we have unique or nonunique clustered indexes
August 28, 2014 at 11:48 pm
Guess, this will be an unresolved mystery for me:(
August 28, 2014 at 11:16 pm
Viewing 15 posts - 61 through 75 (of 98 total)