Viewing 15 posts - 18,856 through 18,870 (of 26,484 total)
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
Well, you did provide us with data, but unfortunately it isn't in a readily consummable format and I really don't have time to put it into a usable format at...
September 14, 2009 at 11:37 am
Not asking for actual data. You should be able to create a data set that is representative of your actual data that also reflects the problem you are trying...
September 14, 2009 at 11:12 am
This part is confusing:
The problem I have which I may need help with is that, the system I have is based on the year ending on the first Saturday of...
September 14, 2009 at 11:01 am
Now all that is missing is the sample data and expected results.
September 14, 2009 at 10:41 am
Paul White (9/13/2009)
Many of you might recognise Matt's name from...
September 13, 2009 at 9:55 pm
Viewing 15 posts - 18,856 through 18,870 (of 26,484 total)