Viewing 15 posts - 3,181 through 3,195 (of 3,957 total)
DavidP-340734 (7/17/2012)
July 17, 2012 at 6:39 pm
nem.schlecht (7/17/2012)
I noticed a little mistake, though. The 2nd example under "Geometric and Arithmetic Sequences and Progressions", you have:
"Another example: 1^1 + 1/2^2 + 1/3^3 + 1/4^4:"
But the...
July 17, 2012 at 6:33 pm
Wow! So many interesting responses, so little time.
First of all, thanks to Basit, David, rodjkidb, Alex and r.mitchell for your interest and feedback. I hope that something in...
July 17, 2012 at 6:30 pm
L' Eomot Inversรฉ (7/16/2012)
For most practical cases, there's a reasonable way of getting a Poisson distributed random variable; not...
July 16, 2012 at 6:21 pm
Well Les, I have good news. Apparently my latest ideas panned out and I've gotten the overall solution run time down to 1.5 minutes.
Looking forward to how this stacks...
July 13, 2012 at 8:21 am
I believe you're looking for something that handles as many levels as necessary, like this:
Create Table #UserMast
(
UserID uniqueidentifier default newid(),
EmailID varchar(100),
ParentID uniqueidentifier,
)
Create Table #ProfileMast
(
ProfileID uniqueidentifier default...
July 13, 2012 at 3:11 am
I agree with Chris - a very straightforward solution can be made available if:
1. You convert your table definitions to actual, runnable DDL.
2. Give us some sample inserts for both...
July 12, 2012 at 10:52 pm
Jeff Moden (7/12/2012)
dwain.c (7/12/2012)
Sean Lange (7/12/2012)
SGT_squeequal (7/12/2012)
I used the while loop within while loop worked a treat for what i need ๐
So with 5 other methods that are faster you...
July 12, 2012 at 10:48 pm
Derek - Why are you recommending to use a Windows Scheduled task?
Seems like a SQL Server Agent job running the exact same SP would work. You can then set...
July 12, 2012 at 10:41 pm
If it wasn't difficult, then we wouldn't get paid the big bucks! ๐
July 12, 2012 at 8:10 pm
This script should create the NewDistricts TABLE in under 5 seconds on a machine with the same spec as the one I ran my prior timing tests on (bringing the...
July 12, 2012 at 7:56 pm
There is always a test system available:
- Separate schema on the same database server.
- Separate deployed front end accessible by a different URL, also on the same server.
My take is...
July 12, 2012 at 6:42 pm
First check: No duplicated tuples in any solutions:
;WITH BaseDistricts AS (
-- Stuff the Tuple for the Special Districts into a single string and calculate
...
July 12, 2012 at 6:33 pm
Jack Corbett (7/12/2012)
Essentially your query does a self-join just using a different syntax, so I'm not sure why you don't like Self-Join's. In a case like this...
July 12, 2012 at 6:27 pm
Sean Lange (7/12/2012)
SGT_squeequal (7/12/2012)
I used the while loop within while loop worked a treat for what i need ๐
So with 5 other methods that are faster you still choose to...
July 12, 2012 at 6:21 pm
Viewing 15 posts - 3,181 through 3,195 (of 3,957 total)