Viewing 15 posts - 18,856 through 18,870 (of 26,490 total)
And for the reason one should test, test, and test again in your specific environment. What works best in one environment may not work in another.
September 15, 2009 at 11:35 am
timothyawiseman (9/15/2009)
One area that you mentioned, but that I think can be elaborated on, is the number of log backups this can generate. If the space is...
September 15, 2009 at 11:09 am
Jonathan (9/15/2009)
Bob Hovious (9/15/2009)
And I'll take a helicopter over your hunter.Next you get a sparrow missile to shoot down my helicopter....
Does this mean you've found a method that's faster than...
September 15, 2009 at 10:25 am
Matt Whitfield (9/15/2009)
Lynn Pettis (9/15/2009)
That was not obvious based on your original post. There was nothing there to indicate how many rows were to be deleted.
He did say there...
September 15, 2009 at 10:19 am
robblackin (9/15/2009)
I...
September 15, 2009 at 10:17 am
How about something like this?
create function dbo.IntToBinary (
@IntVal int
)
returns table
return(
SELECT
cast((select '' + cast(case when @IntVal & POWER(2,v.number) = 0 then '0' else...
September 15, 2009 at 9:46 am
Ric Sierra (9/15/2009)
Lynn Pettis (9/15/2009)
Ric Sierra (9/15/2009)
If you need to delete a large number of rows and the scenario don't need to keep the database log.
In this case...
September 15, 2009 at 9:26 am
Ric Sierra (9/15/2009)
If you need to delete a large number of rows and the scenario don't need to keep the database log.
In this case I want to delete...
September 15, 2009 at 8:27 am
SQLBOT (9/15/2009)
September 15, 2009 at 8:13 am
Tao Klerks (9/15/2009)
Good article concept, this is a problem that I've had to deal with many times, and I suspect most DBAs do at one point or another.
A couple...
September 15, 2009 at 6:02 am
Matt Whitfield (9/15/2009)
I've found that for deleting a sub-section of data from a much larger table (for example - can we delete history from transactions table that...
September 15, 2009 at 5:43 am
srathna77 (9/14/2009)
Attached sample data in given format.
I have one last question, is one row of data in each table really representative of the problem we are trying to help you...
September 14, 2009 at 3:34 pm
Then you have the OP that refuses to read the suggested article and won't post data in a readily usable format. First as a text file, then as an...
September 14, 2009 at 2:22 pm
srathna77 (9/14/2009)
Attached sample data in excel files. Please see sample.rar file for excel filesThank you.
Nope, still requires more work on our part. Have you read the article you were...
September 14, 2009 at 2:11 pm
It would help if you provided the DDL for the view (and the underlying tables), sample data for the underlying tables, and your expected results based on the sample data.
September 14, 2009 at 11:54 am
Viewing 15 posts - 18,856 through 18,870 (of 26,490 total)