Viewing 15 posts - 2,971 through 2,985 (of 6,486 total)
Jeff Moden (6/11/2008)
Matt Miller (6/11/2008)
Jeff Moden (6/11/2008)
rbarryyoung (6/11/2008)
Well, if we're looking for examples, a Fourier Transform would proabably be a good candidate for CLR.
Heh... ok, I gotta ask... has anyone...
June 11, 2008 at 11:46 am
Also - since you're trying to put a single quote within the SQL statement, you need to double up on the single quotes, as in:
exec sp_MSforeachtable
@command1 = 'DELETE FROM ?...
June 11, 2008 at 11:43 am
There are a lot of very good comments already, so I'm not going to delve very deeply into custom partitioning. Instead of that - I'd offer you another thought,...
June 11, 2008 at 11:14 am
Jeff Moden (6/11/2008)
rbarryyoung (6/11/2008)
Well, if we're looking for examples, a Fourier Transform would proabably be a good candidate for CLR.
Heh... ok, I gotta ask... has anyone actually ever done a...
June 11, 2008 at 10:23 am
Dave (6/11/2008)
GilaMonster (6/11/2008)
It's still a stupid standard though.
Is it just me, or is there really a requirement that all corporate standards have to have at least one stupid element? ...
June 11, 2008 at 10:12 am
I'm not sure why you'd need to try to thread this. Assuming you're doing this with a Bulk Insert process, BCP or a CLR SQLBulkCopy object, 100K rows should...
June 11, 2008 at 10:05 am
considering you're in SQL 2005 - you could look into ROW_NUMBER() to do that for you. That being said - it generates things based on a specific order, so...
June 11, 2008 at 9:42 am
Mike Sigsworth (6/11/2008)
I do however...
June 11, 2008 at 9:37 am
Glad it helped!
And I've been bitten many times by the XML thing (the site trying to protect itself from injection/little nasties, etc...), so I thought I'd pass that...
June 11, 2008 at 9:29 am
Well - if direction is what you're looking for - break the problem into two. First - determine the last day of the month. Once you have the...
June 11, 2008 at 9:20 am
Mike - you XML got "whacked" - you may need to replace the brackets with their HTML encoding < and > for it to show.
that being said - I don't...
June 11, 2008 at 8:59 am
Jeff Moden (6/11/2008)
June 11, 2008 at 8:34 am
nenad.prekupec (6/11/2008)
You ridicule the performance tests that people do that show CLR performance is slow and you offer up that very poorly written performance test that uses a While loop...
June 11, 2008 at 8:28 am
It's apparently smart enough to handle manipulations of elements already in the group by. I can't say I have a formal explanation, but if it detects the two datepart...
June 10, 2008 at 1:56 pm
Without a clustered index - you can't directly defragment that table (which by not having a clustered index is called a heap). Your only option would be to do...
June 10, 2008 at 1:32 pm
Viewing 15 posts - 2,971 through 2,985 (of 6,486 total)