Viewing 15 posts - 1,096 through 1,110 (of 6,486 total)
andre-394971 (1/29/2012)
The number of rows I need to process is less than 1000 in the worst case...
Yes it would be possible to do on the front end but...
January 29, 2012 at 10:34 pm
We've been taking on a somewhat similiar task (trying to standardize an integration layer), and it's been a LONG road for us.
From what I've seen:
- your first step...
January 28, 2012 at 11:28 am
In terms of validation: you can run aggregate functions in both the excel file and against the table to make suer you end up with consistent results. This...
January 27, 2012 at 3:27 pm
When you're in a MDB file, the label attached to the names (e.g. dbo_table1) are just that - arbitrary labels. Once you've attached the tables the name itself doesn't...
January 24, 2012 at 12:14 pm
patrickmcginnis59 (1/24/2012)
Yeah no kidding. The original kernel thread had the BOSS complaining about people jiggling code. That makes a pretty big difference right there.
True - but I doubt that Linus...
January 24, 2012 at 9:29 am
Jeff Moden (1/23/2012)
January 24, 2012 at 8:23 am
It's not a WHILE loop, but you can accomplish the same effect using the FOREACH control container. Just point it at the table, and start building.
Here's a good place...
January 23, 2012 at 6:21 pm
sturner (1/23/2012)
Matt Miller (#4) (1/23/2012)
January 23, 2012 at 1:04 pm
Steve Jones - SSC Editor (1/23/2012)
I wouldn't call experimenting "jiggling". Now if you try things and then slip that code into a deployment without understanding it, which implies incomplete testing...
January 23, 2012 at 11:31 am
Here's a CTE version that should do what you need to see:
;with OrderingCTE as (
SELECT ROW_NUMBER() over (PARTITION by [job] order by oper_num) RN,
* from #JobSample)
select
...
January 17, 2012 at 9:53 am
I would be throwing this back at the developer of your sealed application (using unsupported and deprecated procedures with no documentation whatsoever sounds like a winning combination by the way)....
January 6, 2012 at 10:44 am
You can always use NTILE() to come up with the records making up the 3rd quartile (and then compile them to whatever values you might need).
; with DosageCTE as (
SELECT...
January 5, 2012 at 6:57 pm
I am not sure if it works or not, but one of the big reasons to use service broker is in fact to get away from linked server hell. ...
January 5, 2012 at 2:43 pm
DeanORenO (1/5/2012)
January 5, 2012 at 8:45 am
Stefan Krzywicki (12/29/2011)
GilaMonster (12/29/2011)
Stefan Krzywicki (12/29/2011)
I don't have room on my machine either.Two words: External harddrive.
Seriously, I've had to do that once or twice.
I can't even get them to buy...
January 3, 2012 at 11:28 am
Viewing 15 posts - 1,096 through 1,110 (of 6,486 total)